/* ===== Gmail Hover START ===== */


        .gmail-icon { background: linear-gradient(135deg, #ea4335 0%, #fbbc04 50%, #34a853 100%); }
        .gmail-bar { 
            background: linear-gradient(135deg, #ea4335 0%, #fbbc04 50%, #34a853 100%); 
            left: var(--gmail-position); 
            width: var(--gmail-duration); 
        }

        
        .gmail-animation-popup {
            width: 500px;
            height: 350px;
            background: #FFFFFF;
            border-radius: 15px;
            padding: 0;
            overflow: hidden;
            font-family: Arial, sans-serif;
            font-size: 13px;
            display: block;
        }
        .gmail-animation-popup .header {
            background: linear-gradient(to bottom, #FFFFFF 0%, #F1F1F1 100%);
            border-bottom: 1px solid #C5C5C5;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .gmail-animation-popup .gmail-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gmail-animation-popup .logo-text {
            font-size: 18px;
            font-weight: normal;
            color: #DD4B39;
            animation: gm-logoGlow 3s ease-in-out infinite;
            text-shadow: 0 1px 2px rgba(221, 75, 57, 0.3);
        }
        @keyframes gm-logoGlow {
            0%, 100% { color: #DD4B39; text-shadow: 0 1px 2px rgba(221, 75, 57, 0.3); }
            50% { color: #EA4335; text-shadow: 0 1px 4px rgba(234, 67, 53, 0.5); }
        }
        .gmail-animation-popup .beta-label {
            background: #DD4B39;
            color: white;
            font-size: 9px;
            padding: 1px 3px;
            border-radius: 2px;
            animation: gm-betaBlink 2s ease-in-out infinite;
        }
        @keyframes gm-betaBlink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        .gmail-animation-popup .search-section {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gmail-animation-popup .search-box {
            width: 200px;
            height: 20px;
            border: 1px solid #D9D9D9;
            padding: 3px 6px;
            font-size: 11px;
            animation: gm-searchFocus 4s ease-in-out infinite;
        }
        @keyframes gm-searchFocus {
            0%, 90%, 100% { border-color: #D9D9D9; box-shadow: none; }
            5%, 85% { border-color: #4285F4; box-shadow: 0 0 5px rgba(66, 133, 244, 0.3); }
        }
        .gmail-animation-popup .main-content {
            display: flex;
            height: 250px;
        }
        .gmail-animation-popup .sidebar {
            width: 140px;
            background: #F7F7F7;
            border-right: 1px solid #C5C5C5;
            padding: 8px 0;
        }
        .gmail-animation-popup .compose-button {
            background: linear-gradient(to bottom, #DD4B39, #C23321);
            color: white;
            border: none;
            padding: 6px 12px;
            margin: 0 10px 10px 10px;
            border-radius: 2px;
            font-weight: bold;
            font-size: 11px;
            animation: gm-composeGlow 4s ease-in-out infinite;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        @keyframes gm-composeGlow {
            0%, 100% { background: linear-gradient(to bottom, #DD4B39, #C23321); transform: scale(1); }
            50% { background: linear-gradient(to bottom, #EA4335, #D33B2C); transform: scale(1.02); }
        }
        .gmail-animation-popup .sidebar-item {
            padding: 4px 10px;
            color: #333;
            font-size: 11px;
            animation: gm-sidebarHover 6s ease-in-out infinite;
        }
        @keyframes gm-sidebarHover {
            0%, 90%, 100% { background: transparent; color: #333; }
            5%, 85% { background: #E5E5E5; color: #000; }
        }
        .gmail-animation-popup .email-list {
            flex: 1;
            background: white;
            padding: 8px;
        }
        .gmail-animation-popup .email-item {
            padding: 6px 8px;
            border-bottom: 1px solid #E5E5E5;
            display: flex;
            gap: 8px;
            animation: gm-emailSlideIn 0.8s ease-out;
            animation-fill-mode: both;
        }
        .gmail-animation-popup .email-item:nth-child(1) { animation-delay: 0.2s; }
        .gmail-animation-popup .email-item:nth-child(2) { animation-delay: 0.4s; }
        .gmail-animation-popup .email-item:nth-child(3) { animation-delay: 0.6s; }
        @keyframes gm-emailSlideIn {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        .gmail-animation-popup .email-subject { font-weight: bold; font-size: 11px; }
        .gmail-animation-popup .email-snippet { color: #666; font-size: 10px; }
       

        .gemini-icon { background: linear-gradient(135deg, #4285f4 0%, #9aa0a6 50%, #ea4335 100%); }
        .gemini-bar { 
            background: linear-gradient(135deg, #4285f4 0%, #9aa0a6 50%, #ea4335 100%); 
            left: var(--gemini-position); 
            width: var(--gemini-duration); 
        }


 /* ===== Gmail Hover END ===== */