.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 100px;
    max-height: 100px;
    background-color: #1b7a7b;
    color: #ffffff;

    &:hover {
        background-color: #db3f52;
    }
}

.default-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
    background-color: #1b7a7b;
    &:hover {
        background-color: #db3f52
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


/* Styles pour la bannière */
.banner {
    background-color: #283a68;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #ffff;
}

.hr{
    background-color: #283a68;  
}

.border{
    border-color: #283a68;  
}

/* Styles pour le logo */
.logo  {
    max-height: 100px; 
    max-width: 250px; 
}

/* Styles pour les boutons de droite */
.right-buttons {
    display: flex;
    gap: 10px;
}

/* Styles pour les boutons */
.btn {
    background-color: #1b7a7b;
    color: #ffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    &:hover {
        background-color: #db3f52;
        color: #ffff;
    }
}

/* Style pour le texte "Besoin d'aide" */
.help-text {
    font-size: 18px;
    color: red;
}

.custom-toast- {
    background-color: #ff0000; /* Fond rouge */
    color: #ffffff; /* Texte blanc */
    border: 2px solid #ffffff; /* Bordure blanche */
    border-radius: 10px; /* Coins arrondis */
    max-width: 400px; /* Largeur maximale du toast */
    text-align: center; /* Centrer le texte */
    font-size: 16px; /* Taille de la police */
    padding: 20px; /* Espace intérieur du toast */
    position: fixed; /* Position fixe */
    top: 50%; /* 50% du haut de la fenêtre */
    left: 50%; /* 50% de la gauche de la fenêtre */
    transform: translate(-50%, -50%); /* Centrer le toast */
}
