/* ============================================================
   MODAL NOTIFICATIONS
============================================================ */
/* ✅ MODIFIÉ : bloque le scroll de la page derrière quand le modal est ouvert */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    position: relative;
    top: 0;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 90% !important;
    }
}

/* ✅ MODIFIÉ : croix positionnée en haut à droite du modal */
.close-button,
.close-button-mobile {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus,
.close-button-mobile:hover,
.close-button-mobile:focus {
    color: black;
    text-decoration: none;
}


/* ============================================================
   BADGE COMPTEUR NOTIFICATIONS
============================================================ */
#liCandidatureTab,
#liCandidatureTabMobile {
    position: relative;
}

#spanNotif,
#spanNotifMobile {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 1.6em;
    height: 1.6em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6em;
    font-weight: 600;
    border-radius: 50%;
    color: #fff;
}



/* ============================================================
   BADGE COMPTEUR MESSAGES
============================================================ */
.chat {
    position: relative;
}

.messages-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 1.6em;
    height: 1.6em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6em;
    font-weight: 600;
    border-radius: 50%;
    color: #fff;
}