/* Popup Csta Styles */

#popup-csta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#popup-csta-overlay.show {
    opacity: 1;
    visibility: visible;
}

#popup-csta-container {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#popup-csta-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

#popup-csta-close:hover {
    color: #000;
}

#popup-csta-content img {
    max-width: 100%;
    height: auto;
}

/* Responsive improvements can go here if needed */
@media (max-width: 600px) {
    #popup-csta-container {
        width: 95%;
        padding: 15px;
    }
}
