/* Simple Popup Styles */
#simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#simple-popup-overlay.active {
    display: flex;
}

.simple-popup-modal {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

.simple-popup-icon {
    margin-bottom: 15px;
}

.simple-popup-icon-text {
    font-size: 48px;
    display: block;
}

.simple-popup-title {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.simple-popup-message {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.simple-popup-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.simple-popup-button:hover {
    background: #0056b3;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .simple-popup-modal {
        padding: 24px;
        margin: 20px;
    }
    
    .simple-popup-title {
        font-size: 20px;
    }
    
    .simple-popup-message {
        font-size: 14px;
    }
}
