/* Custom Scrollbar for technical feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}

:root {
    --brand-primary: #2563eb; /* Network Blue */
    --brand-bg: #020617;      /* Deep Slate */
    --brand-surface: #0f172a; /* Panel BG */
}

body {
    background-color: var(--brand-bg);
    color: #e2e8f0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: #475569;
}

.table-row-hover:hover {
    background-color: #1e293b;
}