/* MXBackupTool — minimal dark theme companion styles */
/* Primary styling is inline in templates via CSS variables */

:root {
    --bg-primary: #0d1117;
    --bg-card: #161b22;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent-blue: #58a6ff;
    --border-color: rgba(255,255,255,0.1);
}

/* Scrollbars */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }

/* Selection */
::selection { background: rgba(88,166,255,0.3); }

/* Focus */
:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 2px; }

/* Links */
a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav-link { transition: color 0.15s, border-color 0.15s; }

/* Utility */
.text-muted { color: var(--text-secondary) !important; }
