.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 1000;
}

#header-left {
    display: flex;
    align-items: center;
}

#step-navigation {
    margin-left: 2px;
}

#burger-btn:hover {
    background-color: blue !important;
}

#burger-btn:hover span {
    background-color: white !important;
}

/* ... (styles existants) ... */

/* Ajustement du padding pour le bouton "Faire un don" dans l'en-tête */
#don-btn {
    padding-left: 10px;
    padding-right: 10px;
}

/*
 * Forcer la couleur de fond rouge pour le bouton "Faire un don".
 * On utilise !important pour surcharger les styles de Tailwind ou d'autres règles.
 */
#don-btn {
    background-color: #dc2626 !important; /* Rouge (red-600) */
    color: white !important;
}

#don-btn:hover {
    background-color: #b91c1c !important; /* Rouge plus foncé (red-700) */
}

