html {
  height: 100%;
  width: 100%;
}

.notification.slide-in {
            transform: translateX(0);
            opacity: 1;
        }

        /* API Management Styles */
        .api-status-card {
            transition: all 0.3s ease;
            border: 1px solid #374151;
        }

        .api-status-card:hover {
            border-color: var(--binance-yellow);
            background: rgba(240, 185, 11, 0.05);
        }

        .api-status-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            position: relative;
        }

        .api-status-indicator.connected {
            background: #10b981;
            animation: pulse 2s infinite;
        }

        .api-status-indicator.connecting {
            background: #f59e0b;
            animation: blink 1s infinite;
        }

        .api-status-indicator.disconnected {
            background: #ef4444;
        }

        @keyframes pulse {
            0%, 100% { 
                opacity: 1; 
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            50% { 
                opacity: 0.8; 
                box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
            }
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }
.back-to-top-visible {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
        }

        /* API Status Indicators */
        .api-status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
        }

        .api-status-indicator.connected {
            background-color: #10B981;
            animation: pulse 2s infinite;
        }

        .api-status-indicator.disconnected {
            background-color: #EF4444;
        }

        .api-status-indicator.pending {
            background-color: #F59E0B;
            animation: pulse 1s infinite;
        }