        #y-announce-full-bar {
            border-style: solid !important;
            border-width: 0 0px 0 0px !important;
            border-color: var(--border-color) !important;
        }

        body #y-announce-full-bar {
            border-style: solid !important;
            border-width: 0 0px 0 0px !important;
            border-color: var(--border-color) !important;
        }
        
        #autoRefreshIndicator {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            font-size: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            z-index: 9997;
            transition: all 0.3s ease;
            display: <?php echo $settings['auto_refresh'] ? 'flex' : 'none'; ?> !important;
            border: 2px solid rgba(255,255,255,0.3);
        }

        #autoRefreshIndicator:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        #autoRefreshIndicator.refreshing {
            background: linear-gradient(135deg, #f1c40f, #e67e22);
        }

        #autoRefreshIndicator.refreshing i {
            animation: spin 1s linear infinite;
        }
        
        .update-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: none;
            align-items: center;
            gap: 10px;
            z-index: 9999;
            animation: slideInRight 0.3s ease;
            max-width: 300px;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        body[data-page-type="weather"] #autoRefreshIndicator {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }
        
        body[data-page-type="news"] #autoRefreshIndicator {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }
        
        body[data-page-type="chat"] #autoRefreshIndicator {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }
        
        body[data-page-type="live"] #autoRefreshIndicator {
            background: linear-gradient(135deg, #e67e22, #d35400);
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .main-navigation {
            background: #616161 !important;
            padding: 0;
            box-shadow: 0 32px 32px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1000;
            width: 100%;
            border-top: 1px solid #fb6c00;
            margin-top: 0px;
        }
        
        .main-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            background: transparent;
            justify-content: center;
        }
        
        .main-menu > li {
            position: relative;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        
        .main-menu > li:last-child {
            border-right: none;
        }
        
        .main-menu > li > a {
            color: white;
            text-decoration: none;
            padding: 0px 21px;
            display: flex;
            align-items: center;
            gap: 10px;
            height: 36px;
        }
        
        .main-menu > li > a:hover {
            background: #fe980a;
            color: white !important;
        }
        
        .main-menu > li > a .menu-icon {
            width: 20px;
            text-align: center;
        }
        
        .sub-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 264px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            list-style: none;
            padding: 5px 0;
            margin: 0;
            display: none;
            z-index: 1001;
            border-top: 3px solid #272727;
            border-radius: 0 0 8px 8px !important;
            overflow: hidden;
            animation: fadeIn 0.3s ease;
        }
        
        .main-menu > li:hover .sub-menu {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .sub-menu li {
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }
        
        .sub-menu li:last-child {
            border-bottom: none;
        }
        
        .sub-menu li:hover {
            background: #f8f9fa;
        }
        
        .sub-menu li a {
            color: #333;
            text-decoration: none;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .sub-menu li a:hover {
            color: #272727 !important;
            padding-right: 25px;
            background: #f8f9fa;
        }
        
        .sub-menu li a .sub-icon {
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        .mobile-nav-toggle {
            display: none;
            background: #272727;
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            text-align: right;
            justify-content: space-between;
            align-items: center;
            margin: 0;
            border-radius: 0;
            font-weight: bold;
        }
        
        .mobile-nav-toggle i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-toggle.active i {
            transform: rotate(180deg);
        }
        
        @media (max-width: 1200px) {
            .main-menu > li > a {
                padding: 12px 15px;
            }
        }
        
        @media (max-width: 992px) {
            .mobile-nav-toggle {
                display: flex;
            }
            
            .main-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: #4d4d4d;
                z-index: 1002;
                max-height: 80vh;
                overflow-y: auto;
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            }
            
            .main-menu.active {
                display: flex;
            }
            
            .main-menu > li {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .main-menu > li > a {
                padding: 15px 20px;
                height: auto;
            }
            
            .sub-menu {
                position: static;
                box-shadow: none;
                border-top: none;
                background: #333;
                display: none;
                width: 100%;
                min-width: auto;
                border-radius: 0 !important;
                animation: none;
            }
            
            .sub-menu.active {
                display: block;
            }
            
            .sub-menu li a {
                padding: 12px 30px;
                color: #ddd;
            }
            
            .sub-menu li a:hover {
                color: #272727 !important;
                background: #222;
            }
            
            .sub-menu li {
                border-bottom: 1px solid #444;
            }
        }
        
        @media (max-width: 768px) {
            .main-menu > li > a {
                padding: 12px 15px;
            }
            
            .mobile-nav-toggle {
                padding: 12px 15px;
                font-size: 15px;
            }
            
            #autoRefreshIndicator {
                bottom: 10px;
                right: 10px;
                font-size: 11px;
                padding: 8px 12px;
            }
        }
		.flag {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
}
h4, span {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
}
