﻿
/* Modal centrado */
/* Modal centrado */
.hidden {
    display: none;
    max-width: 500px;
}
.sess-modal .hidden {
    display: none;
    max-width: 500px;
}

.sess-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.sess-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.sess-modal__panel {
    position: relative;
    max-width: 520px;
    width: calc(100% - 32px);
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    padding: 14px;
}

.sess-modal__title {
    margin: 6px 14px 0 14px;
    color: var(--blue-700);
    font-weight: 800;
}

.sess-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 14px 14px 14px;
}
