.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.exit-popup-container {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-popup-header {
    background-color: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.exit-popup-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #444;
}

.exit-popup-close {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

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

.exit-popup-content {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.exit-popup-footer {
    padding: 15px 20px;
    text-align: right;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.exit-popup-close-btn {
    padding: 8px 15px;
    background-color: #444;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.exit-popup-close-btn:hover {
    background-color: #333;
}