.session-modal
{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.session-card
{
    width:380px;

    background:white;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.session-title
{
    font-size:26px;

    font-weight:bold;

    margin-bottom:20px;
}

.session-message
{
    font-size:18px;
}

.session-counter
{
    margin-top:20px;
    margin-bottom:20px;

    font-size:50px;

    color:#d32f2f;

    font-weight:bold;
}

.session-buttons
{
    display:flex;

    justify-content:space-between;

    margin-top:30px;
}

.session-info
{
    background:#eef7ff;
    color:#2563eb;
    border-radius:999px;
    padding:8px 14px;
    font-weight:600;
}