/* Display Modes CSS for Newsletter Suite Popups */

/* Modal (default) - Centered popup */
.nls-display-mode-modal .nls-minimal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

/* Teaser Pill - Bottom right corner */
.nls-display-mode-teaser .nls-teaser-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99990;
    display: flex !important;
}

/* Bottom Bar - Full width at bottom */
.nls-display-mode-bottom-bar .nls-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99980;
    display: flex !important;
}

/* Top Bar - Full width at top */
.nls-display-mode-top-bar .nls-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99980;
}

/* Side Panel - Slide in from right */
.nls-display-mode-side-panel .nls-minimal-popup {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nls-display-mode-side-panel.nls-active .nls-minimal-popup {
    transform: translateX(0);
}

/* Corner Popup - Bottom right */
.nls-display-mode-corner .nls-minimal-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99990;
    max-width: 400px;
}

/* Fullscreen */
.nls-display-mode-fullscreen .nls-minimal-popup {
    position: fixed;
    inset: 0;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0;
}
