/* FOMO Mute Notification Styling */
        .mute-fomo-notification {
            position: fixed !important;
            bottom: 30px !important;
            left: 30px !important;
            z-index: 9999 !important;
            width: auto !important;
            max-width: 350px !important;
            animation: slideIn 0.5s ease-out;
            display: none; /* Initially hidden */
        }
        
        @keyframes slideIn {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Rect-6 styling */
        .rect-6 {
            width: auto !important;
            height: auto !important;
            padding: 8px 15px !important;
            background: #FFFFFF !important;
            border: 1px solid rgba(0, 0, 0, 0.1) !important;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1) !important;
            border-radius: 4px !important;
            cursor: pointer !important;
            transition: transform 0.3s ease !important;
        }
        
        .rect-6:hover {
            transform: translateX(4px);
        }
        
        /* Blue dot and content styling */
        .blue-dot-indicator, .green-dot-indicator {
            width: 10px !important;
            height: 10px !important;
            background: #3678f0 !important;
            border-radius: 50% !important;
            animation: blink 1.5s infinite !important;
        }
        
        @keyframes blink {
            0% { opacity: 0.4; }
            50% { opacity: 1; }
            100% { opacity: 0.4; }
        }
        
        /* Ensure other FOMO elements are properly styled */
        #fomoPopup {
            z-index: 9999 !important;
            position: fixed !important;
            bottom: 30px !important;
            right: 30px !important;
            display: none !important; /* Initially hidden */
        }
        
        #fomoPopup.show {
            display: block !important;
        }