/* Smart Stay FOMO Notifications CSS */
#smart-stay-fomo-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

.fomo-bottom_right {
    bottom: 20px;
    right: 20px;
}

.fomo-bottom_left {
    bottom: 20px;
    left: 20px;
}

.fomo-top_right {
    top: 20px;
    right: 20px;
}

.fomo-top_left {
    top: 20px;
    left: 20px;
}

.smart-stay-fomo-notification {
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e5e9;
    margin-bottom: 10px;
    max-width: 320px;
    font-family: inherit, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fomo-bottom_left .smart-stay-fomo-notification,
.fomo-top_left .smart-stay-fomo-notification {
    transform: translateX(-100%);
}

.smart-stay-fomo-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.smart-stay-fomo-notification:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2196F3, #1976D2);
}

.smart-stay-fomo-notification .fomo-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
}

.smart-stay-fomo-notification:hover {
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border-color: #2196F3;
}

@media (max-width: 480px) {
    .fomo-bottom_right,
    .fomo-top_right {
        right: 10px;
    }
    
    .fomo-bottom_left,
    .fomo-top_left {
        left: 10px;
    }
    
    .fomo-bottom_right,
    .fomo-bottom_left {
        bottom: 10px;
    }
    
    .fomo-top_right,
    .fomo-top_left {
        top: 10px;
    }
    
    .smart-stay-fomo-notification {
        max-width: calc(100vw - 20px);
        font-size: 13px;
        padding: 12px 16px;
    }
}