:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border: rgba(255,255,255,0.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; line-height: 1.5; }

/* Header */
.header { background: linear-gradient(135deg, #f59e0b, #d97706); border-bottom: 1px solid rgba(0,0,0,0.2); padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.header-left { display: flex; align-items: center; gap: 1rem; }
.logo { width: 36px; height: 36px; background: rgba(255,255,255,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; backdrop-filter: blur(10px); }
.header h1 { font-size: 1.25rem; font-weight: 600; }
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.server-info { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.875rem; }
.header a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.header a:hover { color: var(--text-primary); }

/* Container */
.container { max-width: 1400px; margin: 0 auto; padding: 2rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 1200px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--bg-secondary); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-2px); }
.stat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.stat-title { color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; }
.stat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.stat-icon.purple { background: rgba(99, 102, 241, 0.2); }
.stat-icon.green { background: rgba(34, 197, 94, 0.2); }
.stat-icon.blue { background: rgba(59, 130, 246, 0.2); }
.stat-icon.orange { background: rgba(245, 158, 11, 0.2); }
.stat-value { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-desc { color: var(--text-muted); font-size: 0.875rem; }

/* Services */
.services-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.service-badge { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-tertiary); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem; }
.service-dot { width: 8px; height: 8px; border-radius: 50%; }
.service-dot.on { background: var(--success); box-shadow: 0 0 8px var(--success); }
.service-dot.off { background: var(--danger); box-shadow: 0 0 8px var(--danger); }

/* Disk */
.disk-info { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.875rem; }
.disk-bar { background: var(--bg-tertiary); border-radius: 6px; height: 10px; overflow: hidden; }
.disk-fill { background: linear-gradient(90deg, var(--accent), #8b5cf6); height: 100%; border-radius: 6px; }

/* Main card */
.main-card { background: var(--bg-secondary); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.main-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.main-header h2 { font-size: 1.125rem; font-weight: 600; }

/* Buttons */
.btn { padding: 0.625rem 1.25rem; border-radius: 10px; border: none; cursor: pointer; font-size: 0.875rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #8b5cf6); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px -4px rgba(99, 102, 241, 0.5); }
.btn-secondary { background: var(--bg-tertiary); color: var(--text-primary); }
.btn-secondary:hover { background: #475569; }
.btn-danger { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.btn-danger:hover { background: rgba(239, 68, 68, 0.3); }
.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }

/* Sites list */
.sites-list { padding: 0; }
.site-item { border-bottom: 1px solid var(--border); }
.site-item:last-child { border-bottom: none; }
.site-header { padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background 0.2s; }
.site-header:hover { background: rgba(255,255,255,0.02); }
.site-info { display: flex; align-items: center; gap: 1rem; flex: 1; }
.site-icon { width: 44px; height: 44px; background: var(--bg-tertiary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.site-details { flex: 1; }
.site-domain { font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.site-domain a { color: var(--text-primary); text-decoration: none; }
.site-domain a:hover { color: var(--accent-hover); }
.site-meta { display: flex; gap: 1.5rem; margin-top: 0.375rem; color: var(--text-muted); font-size: 0.8125rem; }

/* Badges */
.badge { padding: 0.25rem 0.75rem; border-radius: 6px; font-size: 0.75rem; font-weight: 500; }
.badge-ssl { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.badge-http { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.badge-php { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.badge-backup-on { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.badge-backup-off { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }

/* Expand */
.expand-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: transform 0.3s; }
.site-item.expanded .expand-icon { transform: rotate(180deg); }

/* Panel */
.site-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0,0,0,0.2); }
.site-item.expanded .site-panel { max-height: 800px; }
.panel-content { padding: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .panel-content { grid-template-columns: 1fr; } }
.panel-section h4 { color: var(--text-secondary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.panel-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.panel-row:last-child { border-bottom: none; }
.panel-row .label { color: var(--text-muted); }
.panel-row .value { color: var(--text-primary); font-family: monospace; font-size: 0.8rem; }
.snapshot-list { max-height: 150px; overflow-y: auto; }
.snapshot-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.8125rem; }
.snapshot-item:last-child { border-bottom: none; }
.panel-actions { grid-column: 1 / -1; display: flex; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* Toggle */
.toggle-wrapper { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.toggle { position: relative; width: 48px; height: 26px; background: var(--bg-tertiary); border-radius: 13px; cursor: pointer; transition: background 0.3s; }
.toggle.active { background: var(--success); }
.toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: white; border-radius: 50%; transition: transform 0.3s; }
.toggle.active::after { transform: translateX(22px); }
.toggle-label { font-size: 0.875rem; color: var(--text-secondary); }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); align-items: center; justify-content: center; z-index: 100; padding: 1rem; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-secondary); padding: 2rem; border-radius: 20px; width: 100%; max-width: 500px; border: 1px solid var(--border); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 1.25rem; font-weight: 600; }
.modal-close { width: 32px; height: 32px; background: var(--bg-tertiary); border: none; border-radius: 8px; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.875rem; }
.form-group input[type="text"] { width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--border); border-radius: 10px; background: var(--bg-primary); color: var(--text-primary); font-size: 1rem; }
.form-group input[type="text"]:focus { outline: none; border-color: var(--accent); }
.checkbox-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; color: var(--text-secondary); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
.output { background: var(--bg-primary); padding: 1rem; border-radius: 10px; font-family: monospace; font-size: 0.8125rem; white-space: pre-wrap; max-height: 250px; overflow-y: auto; margin-top: 1rem; border: 1px solid var(--border); }
.modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* Empty & Toast */
.empty-state { padding: 4rem 2rem; text-align: center; color: var(--text-muted); }
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--bg-secondary); padding: 1rem 1.5rem; border-radius: 12px; border: 1px solid var(--border); transform: translateY(100px); opacity: 0; transition: all 0.3s; z-index: 200; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

/* Login */
.login-body { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-box { background: rgba(30, 41, 59, 0.8); backdrop-filter: blur(20px); padding: 3rem; border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); width: 100%; max-width: 400px; }
.login-box h1 { color: #fff; margin-bottom: 0.5rem; font-size: 1.75rem; text-align: center; font-weight: 700; }
.login-box .subtitle { color: #94a3b8; text-align: center; margin-bottom: 2rem; }
.login-box input { width: 100%; padding: 16px 20px; margin-bottom: 1rem; border: 2px solid transparent; border-radius: 12px; background: rgba(15, 23, 42, 0.8); color: #fff; font-size: 1rem; }
.login-box input:focus { outline: none; border-color: #6366f1; }
.login-box input::placeholder { color: #64748b; }
.login-box button { width: 100%; padding: 16px; background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer; }
.login-box button:hover { transform: translateY(-2px); box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5); }
.login-box .error { background: rgba(239, 68, 68, 0.2); color: #fca5a5; padding: 12px; border-radius: 8px; margin-bottom: 1rem; text-align: center; }
.login-box .note { color: #64748b; font-size: 0.85rem; margin-top: 1.5rem; text-align: center; }

/* Clickable values */
.value.clickable { cursor: pointer; }
.value.clickable:hover { color: var(--accent-hover); text-decoration: underline; }

/* Select */
.form-select, .form-select-sm {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
}
.form-select:focus, .form-select-sm:focus {
    outline: none;
    border-color: var(--accent);
}
.form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
}

/* Modal large */
.modal-large { max-width: 600px; }

/* Progress bar */
.progress-container { margin: 1rem 0; }
.progress-bar {
    background: var(--bg-tertiary);
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
}
.progress-fill {
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}
.progress-status {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Progress bar indeterminata */
.progress-fill.indeterminate {
    width: 30% !important;
    animation: indeterminate 1.5s infinite ease-in-out;
}

@keyframes indeterminate {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Alias section */
.aliases-list { margin: 5px 0; }
.alias-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; background: var(--card-bg); border-radius: 4px; margin-bottom: 4px; }
.alias-item span { font-size: 0.85rem; }
.btn-tiny { padding: 2px 6px; font-size: 0.7rem; border: none; border-radius: 3px; cursor: pointer; }
.btn-danger { background: #ef4444; color: white; }
.btn-danger:hover { background: #dc2626; }
.form-input-sm { padding: 6px 10px; border: 1px solid var(--border-color); border-radius: 4px; background: var(--input-bg); color: var(--text-color); font-size: 0.85rem; margin-right: 8px; }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }

/* System status */
.status-box { background: var(--card-bg); padding: 12px; border-radius: 6px; border: 1px solid var(--border-color); }
.status-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.status-value { font-size: 0.9rem; font-weight: 500; }

/* Log section */
.log-output {
    background: #0d1117;
    color: #c9d1d9;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
    border: 1px solid var(--border-color);
}

/* Commands section */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.cmd-section {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
}
.cmd-section h4 {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.cmd-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}
.cmd-item code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8rem;
    color: #58a6ff;
    cursor: pointer;
    word-break: break-all;
}
.cmd-item code:hover {
    color: #79c0ff;
    text-decoration: underline;
}
.cmd-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Log coloring */
.log-error { color: #f87171; font-weight: 500; }
.log-warn { color: #fbbf24; }
.log-success { color: #4ade80; font-weight: 500; }

/* ====== MOBILE RESPONSIVE ====== */

/* Tablet */
@media (max-width: 1024px) {
    .container { padding: 1.5rem; }
    .commands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .header { padding: 0 1rem; height: auto; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 1rem; }
    .header h1 { font-size: 1.1rem; }
    .header-right { gap: 0.75rem; }
    .server-info { font-size: 0.75rem; gap: 0.25rem; }
    .server-info span:nth-child(1), .server-info span:nth-child(3) { display: none; }
    
    /* Container */
    .container { padding: 1rem; }
    
    /* Main card header */
    .main-header { padding: 1rem; flex-direction: column; gap: 1rem; align-items: stretch; }
    .main-header h2 { font-size: 1rem; }
    .main-header .btn { width: 100%; justify-content: center; }
    
    /* Log section header */
    .main-header > div[style*="display:flex"] { flex-direction: column; gap: 0.5rem; width: 100%; }
    .main-header select { width: 100%; }
    .main-header > div > .btn { width: 100%; }
    
    /* Sites list */
    .site-header { padding: 1rem; flex-wrap: wrap; gap: 0.75rem; }
    .site-info { gap: 0.75rem; }
    .site-icon { width: 38px; height: 38px; font-size: 1rem; }
    .site-domain { font-size: 0.9rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .site-meta { flex-wrap: wrap; gap: 0.75rem; font-size: 0.75rem; }
    .site-actions { width: 100%; display: flex; justify-content: flex-end; }
    
    /* Site panel */
    .site-panel { padding: 1rem; }
    .panel-section { padding: 1rem; }
    .panel-actions { flex-wrap: wrap; }
    .panel-actions .btn { flex: 1; min-width: 120px; justify-content: center; }
    
    /* Buttons */
    .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .btn-sm { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    
    /* Badges */
    .badge { padding: 0.2rem 0.5rem; font-size: 0.7rem; }
    
    /* Modal */
    .modal-content { margin: 0.5rem; max-height: calc(100vh - 1rem); border-radius: 12px; }
    .modal-content.modal-large { width: calc(100% - 1rem); }
    .modal-header { padding: 1rem; }
    .modal-header h2 { font-size: 1.1rem; }
    .modal-actions { padding: 1rem; flex-direction: column; }
    .modal-actions .btn { width: 100%; }
    
    /* Form */
    .form-group { margin-bottom: 1rem; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group select { font-size: 16px; padding: 0.75rem; }
    
    /* Stats */
    .stat-card { padding: 1rem; }
    .stat-value { font-size: 1.5rem; }
    .stat-icon { width: 32px; height: 32px; font-size: 1rem; }
    
    /* Services */
    .services-row { gap: 0.5rem; }
    .service-badge { padding: 0.375rem 0.625rem; font-size: 0.75rem; }
    
    /* Commands */
    .commands-grid { grid-template-columns: 1fr; gap: 1rem; }
    .cmd-section { padding: 1rem; }
    .cmd-section h4 { font-size: 0.85rem; }
    .cmd-item { padding: 0.5rem; }
    .cmd-item code { font-size: 0.7rem; }
    .cmd-item span { font-size: 0.7rem; }
    
    /* Log */
    .log-output { font-size: 0.65rem; padding: 10px; max-height: 300px; }
    
    /* DR section */
    .dr-info { font-size: 0.8rem; }
    
    /* Toast */
    .toast { left: 1rem; right: 1rem; bottom: 1rem; transform: none; max-width: none; }
}

/* Small mobile */
@media (max-width: 480px) {
    .header-left { gap: 0.5rem; }
    .logo { width: 32px; height: 32px; font-size: 0.9rem; }
    .header h1 { font-size: 1rem; }
    
    .site-domain a { word-break: break-all; }
    .site-meta { flex-direction: column; gap: 0.25rem; }
    
    .panel-row { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
    .panel-row .label { font-size: 0.7rem; }
    .panel-row .value { font-size: 0.85rem; }
    
    .stat-card { border-radius: 12px; }
    .main-card { border-radius: 12px; }
}

/* ====== MOBILE FIXES FINAL ====== */
@media (max-width: 768px) {
    /* Header: struttura corretta */
    .header {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .header-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    .server-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        line-height: 1.2 !important;
        font-size: 0.75rem !important;
    }
    /* Nascondi icone emoji */
    .server-info span:nth-child(1),
    .server-info span:nth-child(3) {
        display: none !important;
    }
    
    /* Siti: dominio su una riga, badge tutti insieme sotto */
    .site-domain {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    .site-domain > a {
        flex: 0 0 100% !important;
        margin-bottom: 0.25rem !important;
    }
    .site-domain > .badge {
        flex: 0 0 auto !important;
    }
}

/* Header title structure */
.header-title {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.header-title h1 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}
.header-title .server-info {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
    gap: 0;
}

/* Badges container */
.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .header-title .server-info {
        display: flex;
    }
    .site-domain {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .site-domain > a {
        margin-bottom: 0.25rem;
    }
    .badges-row {
        flex-wrap: nowrap;
    }
}

/* Mobile fixes v4 - layout siti */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .site-info {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .site-icon {
        display: none !important;
    }
    .site-details {
        width: 100% !important;
    }
    .site-domain {
        width: 100% !important;
        align-items: flex-start !important;
    }
    .site-domain > a {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    .badges-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.4rem !important;
        width: 100% !important;
    }
    .site-meta {
        width: 100% !important;
    }
    .expand-icon {
        position: absolute !important;
        right: 1rem !important;
        top: 1rem !important;
    }
    .site-header {
        position: relative !important;
    }
}

/* Server details in stat card */
.server-details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.server-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.25rem 0;
}
.server-row .label {
    color: var(--text-muted);
}
.server-row .value {
    color: var(--text-primary);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.75rem;
    text-align: right;
}

/* Fix QNAP bar color */
:root {
    --accent-secondary: #22c55e;
}
