.sessions-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sessions-modal-content {
    background-color: white;
    padding: 1rem;
    border-radius: 0.2rem;
    width: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sessions-modal-content h2 {
    font-family: MusticaPro-SemiBold;
    font-size: large;
    text-align: center;
}

.sessions-modal-content p,
#sessionModalError {
    font-family: MusticaPro-SemiBold;
    color: crimson;
    text-align: center;
    font-size: medium;
}

#sessionModalList {
    margin-top: 0.5rem;
    list-style-type: none;
    padding: 0;
}

.session-ele {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.session-ele label {
    background-color: var(--color-azul);
    padding: 0.5rem;
    color: white;
    font-family: MusticaPro-SemiBold;
    font-size: small;
}

#closeBtn {
    border: none;
    background-color: var(--color-naranja);
    padding: 1rem 3rem;
    font-family: MusticaPro-SemiBold;
    color: white;
}

#closeBtn:hover {
    background-color: var(--color-naranja-oscuro);
}