/* Styles pour toutes les modales */
.modal-content {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    border: none;
}

/* En-tête colorée personnalisable */
.modal-header {
    background-color: #E53935;
    color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Pied de page aligné et espacé */
.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f1f1;
}

/* Champs de formulaire stylés */
.modal-body .form-control,
.modal-body .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #E53935;
    box-shadow: none;
}

/* Boutons principaux */
.btn-red {
    background-color: #E53935;
    color: white;
    border-radius: 6px;
    font-weight: 600;
}

.btn-red:hover {
    background-color: #c62828;
    color: white;
}

/* Boutons secondaires */
.btn-outline-red {
    background-color: white;
    color: #E53935;
    border: 2px solid #E53935;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-red:hover {
    background-color: #E53935;
    color: white;
}

/* Labels de formulaire */
.modal-body .form-label {
    font-weight: bold;
    color: #444;
}
