/**
 * Sunny Modal Styles
 * Clean, lightweight, and professional.
 */

#sws-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light, semi-transparent background */
    background: rgba(255, 255, 255, 0.4); 
    /* High-end glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
}

#sws-modal-overlay.is-active {
    display: flex;
    opacity: 1;
}

/* Minimalist container - style is dictated by the content inside */
.sws-modal-box {
    max-width: 900px;
    width: 100%;
    position: relative;
    margin: auto;
    /* Soft shadow for the content depth */
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Hidden close button - relying on background click */
.sws-modal-close {
    display: none;
}