
        .glow-effect {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
            animation: pulse 3s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
            50% { transform: scale(1.02); box-shadow: 0 0 35px rgba(59, 130, 246, 0.6); }
            100% { transform: scale(1); box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
        }
        /* Custom scrollbar for table if needed */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
    