/* Remote Manager - Styles */

/* Base */
body { 
    font-family: 'Fira Sans', system-ui, sans-serif; 
}

/* Status indicators */
.status-online { color: #22c55e; }
.status-offline { color: #ef4444; }

/* Tabs */
.tab-active { 
    border-bottom: 2px solid #3b82f6; 
    color: #3b82f6; 
}

/* Terminal */
.terminal { 
    font-family: 'Fira Code', 'Consolas', monospace; 
}

/* Animations */
.fade-in { 
    animation: fadeIn 0.3s ease-out; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(-4px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Effects */
.glow-text { 
    text-shadow: 0 0 10px currentColor; 
}

.stat-value { 
    font-variant-numeric: tabular-nums; 
}

/* Copy button */
.copy-btn {
    opacity: 0;
    transition: opacity 0.15s ease;
}

tr:hover .copy-btn,
.copy-btn:focus {
    opacity: 1;
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 1.7s forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
