/* Style de l'alerte */
.alert-danger {
    background-color: #000000; /* Rose moderne clair */
    color: #ffffff; /* Texte blanc */
    border: 1px solid #790404; /* Bordure rose plus foncé */
    border-radius: 10px; /* Coins arrondis pour un look plus doux */
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.alert-heading {
    color: #f7a400; /* Jaune doré pour le titre */
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Effet au survol pour les alertes */
.alert-danger:hover {
    background-color: #000000; /* Rose un peu plus foncé au survol */
    border-color: #f7a400;
}

/* Style des boutons */
.btn-primary {
    background-color: #790404; /* Nouveau rouge moderne */
    border: 1px solid #f7a400 !important;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Effet au survol du bouton */
.btn-primary:hover {
    background-color: #a90804; /* Rouge foncé au survol */
    border: 1px solid #f7a400 !important;
    transform: translateY(-2px); /* Légère élévation au survol */
}

.btn-primary:active {
    background-color: #a90804 !important;
    border: 1px solid #f7a400 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .alert-heading {
        font-size: 1.3rem; /* Taille réduite sur mobile */
    }

    .btn-primary {
        width: 100%; /* Le bouton devient large sur mobile */
        margin-top: 10px;
    }
}
