.session-expired-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(246, 248, 255, 0.7);
    color: #212529;
    padding: 1rem 1.25rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    font-size: 0.95rem;
    line-height: 1.4;

    animation: fadeInSB 1.0s ease-out forwards;
}

.session-expired-msg-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100001;
    height: 150px;
    width: 300px;
    background-color: rgb(209, 218, 248);
    color: #212529;
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    line-height: 1.4;

    display: flex;
    flex-direction: column;     /* Подреждане на елементите вертикално */
    justify-content: center;    /* Центриране по вертикала */
    align-items: center;        /* Центриране по хоризонтала */
    text-align: center;
    gap: 0.7rem;                /* Малко разстояние между елементите */
}

.exp-msg-btn{
    width: 70px;
    height: 40px;
}

.session-expired-banner a {
    color: #f8f8ff;
    text-decoration: none;
}

.session-expired-banner a:hover {
    text-decoration: underline;
}

.session-expired-banner .btn {
    border-radius: 0.5rem;
    padding: 0.45rem 1rem;
}

@keyframes fadeInSB {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
