/* Styles personnalisés pour l'École Maternelle Les Mickele */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-size: 1.4rem;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.btn {
    border-radius: 6px;
}

.form-control {
    border-radius: 6px;
}

.alert {
    border-radius: 8px;
}

/* Styles pour les sections du formulaire */
.border-bottom {
    border-bottom: 2px solid #dee2e6 !important;
}

/* Animation pour les messages */
.alert {
    animation: slideInDown 0.5s ease-in-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration visuelle des champs obligatoires */
.form-label:after {
    content: " *";
    color: #dc3545;
}

.form-label[for$="_parent2"]:after,
.form-label[for$="adresse"]:after,
.form-label[for$="ville"]:after,
.form-label[for$="code_postal"]:after,
.form-label[for$="telephone_parent1"]:after,
.form-label[for$="email_parent1"]:after,
.form-label[for$="telephone_parent2"]:after,
.form-label[for$="email_parent2"]:after,
.form-label[for$="date_naissance_enfant"]:after {
    content: "";
}

/* Style pour les icônes */
.text-primary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Style pour le footer */
footer {
    margin-top: auto;
}

/* Amélioration des champs de formulaire */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Style pour les boutons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* Style pour le bouton de déconnexion dans la navbar */
.navbar .btn-link.nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
}

.navbar .btn-link.nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none;
}

.navbar .btn-link.nav-link:focus {
    box-shadow: none;
}
