/* Pop-up Session Styles */
.session-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.session-popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.session-popup-container {
    position: relative;
    background: #fff;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.session-popup-overlay.active .session-popup-container {
    transform: scale(1);
}

.session-popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 30px;
    background-color: #42711a;
    color: #333;
    z-index: 1000000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    pointer-events: auto;
}

.session-popup-content {
    width: 100%;
}

.session-popup-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.session-popup-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.session-popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .session-popup-container {
        width: 95%;
        max-width: 95%;
    }

    .session-popup-title {
        font-size: 20px;
    }

    .session-popup-message {
        font-size: 14px;
    }
}
