.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999999;
}

body.admin-bar .exit-popup-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .exit-popup-overlay {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.exit-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-container {
    background: #ffffff;
    border-radius: 8px;
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #333333;
    z-index: 10;
}

.exit-popup-close:hover {
    color: #ff0000;
}

.exit-popup-content {
    max-height: 85vh;
    overflow-y: auto;
}
