/* ============================================= */
/* FICHIER : ./web/assets/css/domain-b.css */
/* Styles spécifiques pour viteuneteub.isuke.fr */
/* ============================================= */

/* Variables spécifiques au domaine B */
:root {
    --accent-primary: #4285F4;   /* Bleu Google */
    --accent-secondary: #34A853; /* Vert Google */
    --accent-hover: #2A56C6;     /* Bleu plus foncé */
    --bg-gradient: linear-gradient(135deg, #4285F4 0%, #1976D2 100%);
}

/* Header spécifique */
header {
    background: var(--bg-gradient);
}

/* Boutons spécifiques */
.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.4);
}

/* Cartes de profil spécifiques */
.profile-card {
    border-top: 4px solid var(--accent-primary);
}

.profile-card .profile-card-body h5 {
    color: var(--accent-primary);
}

/* Badges spécifiques */
.badge {
    background-color: var(--accent-primary);
}

/* Alertes spécifiques */
.alert-success {
    border-left: 4px solid var(--accent-secondary);
}

.alert-error {
    border-left: 4px solid #EA4335;
}
