/* ═══════════════════════════════════════════════════════════════
   MCHS Extra Area
   Design: SimplifyTech Terminal Design System
   Fonts:  System monospace stack — zero network requests
   Use:    Internal only · simplifytech.in
═══════════════════════════════════════════════════════════════ */

:root {
    /* ─── SimplifyTech OKLCH palette ─── */
    --bg: oklch(0.09 0.005 155);
    /* near-black, green-tinted */
    --surface: oklch(0.12 0.008 155);
    /* card surface             */
    --surface2: oklch(0.15 0.01 155);
    /* raised surface           */
    --border: oklch(0.22 0.02 155);
    /* default border           */
    --text: oklch(0.88 0.05 155);
    /* primary text             */
    --text-muted: oklch(0.55 0.03 155);
    /* subdued text             */
    --green: oklch(0.75 0.2 145);
    /* terminal green — primary */
    --green-dim: oklch(0.65 0.18 145);
    --red: oklch(0.55 0.22 25);
    --amber: oklch(0.75 0.15 80);
    --blue: oklch(0.65 0.15 240);
    --radius: 0.5rem;
    --field-bg: oklch(0.11 0.007 155);
    --field-text: var(--text);
    --field-placeholder: oklch(0.42 0.02 155);

    /* ─── Opacity-tiered green fills / borders ─── */
    --g05: oklch(0.75 0.2 145 / 0.05);
    --g10: oklch(0.75 0.2 145 / 0.10);
    --g15: oklch(0.75 0.2 145 / 0.15);
    --g20: oklch(0.75 0.2 145 / 0.20);
    --g30: oklch(0.75 0.2 145 / 0.30);
    --g40: oklch(0.75 0.2 145 / 0.40);

    /* ─── System monospace stack — no external downloads ─── */
    --font: 'SF Mono', 'Cascadia Code', 'Consolas', 'Liberation Mono',
        ui-monospace, Menlo, Monaco, monospace;
    --mono: var(--font);
}

:root[data-theme="light"] {
    --bg: oklch(0.98 0.005 155);
    --surface: oklch(0.995 0.003 155);
    --surface2: oklch(0.96 0.008 155);
    --border: oklch(0.83 0.03 155);
    --text: oklch(0.22 0.03 155);
    --text-muted: oklch(0.48 0.03 155);
    --green: oklch(0.56 0.16 145);
    --green-dim: oklch(0.48 0.13 145);
    --red: oklch(0.58 0.2 25);
    --amber: oklch(0.7 0.14 80);
    --blue: oklch(0.58 0.12 240);
    --field-bg: oklch(0.985 0.004 155);
    --field-text: oklch(0.22 0.03 155);
    --field-placeholder: oklch(0.58 0.02 155);

    --g05: oklch(0.56 0.16 145 / 0.05);
    --g10: oklch(0.56 0.16 145 / 0.10);
    --g15: oklch(0.56 0.16 145 / 0.15);
    --g20: oklch(0.56 0.16 145 / 0.20);
    --g30: oklch(0.56 0.16 145 / 0.30);
    --g40: oklch(0.56 0.16 145 / 0.40);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.65;
    transition: background-color 0.2s, color 0.2s;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre {
    font-family: var(--mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
    overflow-x: auto;
}

code {
    font-family: var(--mono);
    font-size: 0.8125rem;
    background: var(--surface2);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    border: 1px solid var(--g15);
    color: var(--green-dim);
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--g20);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--mono);
}

.navbar-brand {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.3px;
}

.navbar-actions {
    display: flex;
    gap: 0.625rem;
    align-items: center;
    flex-wrap: wrap;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--surface);
    border: 1px solid var(--g20);
    border-radius: var(--radius);
    padding: 1.25rem;
    font-family: var(--mono);
}

.card-sm {
    padding: 0.875rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 0.875rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-family: var(--mono);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--green);
    color: oklch(0.09 0.005 155);
    border-color: var(--green);
    box-shadow: 0 0 20px oklch(0.75 0.2 145 / 0.2);
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 28px oklch(0.75 0.2 145 / 0.3);
}

.btn-secondary {
    background: var(--g10);
    color: var(--text);
    border-color: var(--g30);
}

.btn-secondary:hover {
    background: var(--g15);
    border-color: var(--g40);
    color: var(--green);
}

.btn-danger {
    background: oklch(0.55 0.22 25 / 0.12);
    color: oklch(0.75 0.18 25);
    border-color: oklch(0.55 0.22 25 / 0.4);
}

.btn-danger:hover {
    background: oklch(0.55 0.22 25 / 0.22);
    border-color: oklch(0.55 0.22 25 / 0.6);
}

.btn-sm {
    padding: 0.3rem 0.625rem;
    font-size: 0.8125rem;
}

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.35rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--field-bg);
    border: 1px solid var(--g20);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    color: var(--field-text);
    font-size: 0.9375rem;
    font-family: var(--mono);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px var(--g15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--field-placeholder);
}

.form-select option {
    background: var(--surface);
    color: var(--text);
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--field-text);
    -webkit-box-shadow: 0 0 0 1000px var(--field-bg) inset;
    transition: background-color 9999s ease-out 0s;
}

.password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: center;
}

.password-field .form-input {
    min-width: 0;
}

.password-toggle {
    min-width: 4.25rem;
}

.login-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.login-link-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--g20);
    border-radius: var(--radius);
    background: var(--g05);
    color: var(--text-muted);
    font-size: 0.8125rem;
    transition: all 0.15s;
}

.login-link-card:hover {
    border-color: var(--g40);
    color: var(--green);
    background: var(--g10);
    text-decoration: none;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* ─── Table ─────────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--g20);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    font-family: var(--mono);
}

thead {
    background: oklch(0.14 0.01 155);
}

th,
td {
    padding: 0.625rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--g15);
    white-space: nowrap;
}

thead th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    font-weight: 700;
    border-bottom-color: var(--g20);
}

tbody tr:hover {
    background: var(--g05);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ─── Badges ────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.175rem 0.55rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-family: var(--mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.badge-pending {
    background: oklch(0.22 0.02 155 / 0.4);
    color: var(--text-muted);
    border-color: var(--g20);
}

.badge-approved {
    background: var(--g10);
    color: var(--green);
    border-color: var(--g30);
}

.badge-change {
    background: oklch(0.75 0.15 80 / 0.1);
    color: oklch(0.82 0.13 80);
    border-color: oklch(0.75 0.15 80 / 0.35);
}

/* ─── Alerts ────────────────────────────────────────────────── */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: var(--mono);
    margin-bottom: 1rem;
    border: 1px solid;
}

.alert-error {
    background: oklch(0.55 0.22 25 / 0.08);
    border-color: oklch(0.55 0.22 25 / 0.4);
    color: oklch(0.78 0.14 25);
}

.alert-success {
    background: var(--g05);
    border-color: var(--g30);
    color: var(--green);
}

/* ─── Stats grid ────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--g20);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.stat-card:hover {
    border-color: var(--g30);
    box-shadow: 0 0 20px var(--g05);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--mono);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
}

.stat-green .stat-value {
    color: var(--green);
}

.stat-amber .stat-value {
    color: var(--amber);
}

.stat-red .stat-value {
    color: var(--red);
}

.stat-blue .stat-value {
    color: var(--blue);
}

/* ─── Login page ────────────────────────────────────────────── */
.login-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

/* Subtle CRT scanline on login/public pages */
.login-wrap::before {
    content: '';
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    opacity: 0.025;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            oklch(0.75 0.2 145 / 0.08) 2px,
            oklch(0.75 0.2 145 / 0.08) 4px);
}

.login-logo {
    font-family: var(--mono);
    font-size: 1.25rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.375rem;
    text-shadow: 0 0 18px oklch(0.75 0.2 145 / 0.35);
}

.login-subtitle {
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

/* ─── Tabs ──────────────────────────────────────────────────── */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--g20);
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.55rem 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-family: var(--mono);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ─── File upload zone ──────────────────────────────────────── */
.upload-zone {
    border: 1px dashed var(--g30);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    color: var(--text-muted);
    font-size: 0.875rem;
    display: block;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--green);
    color: var(--text);
    background: var(--g05);
}

.upload-zone.drag-over {
    border-style: solid;
    background: var(--g10);
}

.upload-file-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.upload-file-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.425rem 0.75rem;
    background: var(--surface2);
    border: 1px solid var(--g20);
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.8125rem;
}

.upload-file-item .file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--mono);
}

.upload-file-item .file-size {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

/* ─── Doc list ──────────────────────────────────────────────── */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.875rem;
    background: var(--surface2);
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid var(--g15);
    font-size: 0.875rem;
    transition: border-color 0.15s;
    cursor: default;
}

.doc-item:hover {
    border-color: var(--g30);
}

.doc-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.doc-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc-meta {
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

/* ─── Search bar ────────────────────────────────────────────── */
.search-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.search-bar .form-input {
    max-width: 280px;
}

/* ─── Page header ───────────────────────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: var(--mono);
}

/* ─── Section title ─────────────────────────────────────────── */
.section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* ─── Data grid (flat detail) ───────────────────────────────── */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.625rem;
}

.data-cell {
    background: var(--surface2);
    border: 1px solid var(--g15);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.75rem;
}

.data-cell-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.data-cell-value {
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 600;
    word-break: break-all;
}

/* ─── Approve / change section ──────────────────────────────── */
.action-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--g20);
    border-radius: var(--radius);
}

.approve-btn {
    background: var(--green);
    color: oklch(0.09 0.005 155);
    border: 1px solid var(--green);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 0 20px oklch(0.75 0.2 145 / 0.2);
}

.approve-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 28px oklch(0.75 0.2 145 / 0.3);
}

/* ─── SimplifyTech footer ───────────────────────────────────── */
.st-footer {
    text-align: center;
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--g15);
    font-family: var(--mono);
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2.5rem;
    letter-spacing: 0.3px;
}

.st-footer a {
    color: var(--green);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.15s;
}

.st-footer a:hover {
    opacity: 1;
    text-decoration: none;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--g30);
    background: var(--g10);
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.15s;
}

.theme-toggle:hover {
    background: var(--g15);
    border-color: var(--g40);
    color: var(--green);
}

/* ─── Admin dashboard ───────────────────────────────────────── */
.dashboard-shell {
    display: grid;
    gap: 1.25rem;
}

.dashboard-hero {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
    align-items: stretch;
}

.dashboard-panel {
    background: linear-gradient(180deg, var(--surface), var(--surface2));
    border: 1px solid var(--g20);
    border-radius: var(--radius);
    padding: 1.15rem;
}

.dashboard-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--green);
    margin-bottom: 0.45rem;
}

.dashboard-title {
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.dashboard-copy {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 60ch;
}

.dashboard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.dashboard-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--g20);
    border-radius: 999px;
    background: var(--g05);
    color: var(--text-muted);
    font-size: 0.75rem;
}

.toolbar-grid {
    display: grid;
    grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(160px, 1fr)) auto;
    gap: 0.75rem;
    align-items: end;
}

.toolbar-field {
    display: grid;
    gap: 0.35rem;
}

.toolbar-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dashboard-table {
    overflow: hidden;
    border: 1px solid var(--g20);
    border-radius: var(--radius);
}

.dashboard-table table {
    width: 100%;
    table-layout: fixed;
}

.dashboard-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.dashboard-table td {
    vertical-align: top;
    white-space: normal;
    overflow-wrap: anywhere;
}

.dashboard-table th:nth-child(1),
.dashboard-table td:nth-child(1) {
    width: 13%;
}

.dashboard-table th:nth-child(2),
.dashboard-table td:nth-child(2) {
    width: 18%;
}

.dashboard-table th:nth-child(3),
.dashboard-table td:nth-child(3),
.dashboard-table th:nth-child(4),
.dashboard-table td:nth-child(4),
.dashboard-table th:nth-child(5),
.dashboard-table td:nth-child(5) {
    width: 10%;
}

.dashboard-table th:nth-child(6),
.dashboard-table td:nth-child(6) {
    width: 11%;
}

.dashboard-table th:nth-child(7),
.dashboard-table td:nth-child(7) {
    width: 18%;
}

.dashboard-table th:nth-child(8),
.dashboard-table td:nth-child(8) {
    width: 10%;
}

.flat-cell {
    display: grid;
    gap: 0.3rem;
}

.flat-code {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
}

.subtle-note {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.member-cell {
    min-width: 0;
}

.mobile-stack {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.mobile-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.inline-mobile-form {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto;
    gap: 0.45rem;
    align-items: center;
}

.inline-mobile-form .form-input {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 0.875rem;
}

.row-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.results-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

@media (max-width: 1080px) {
    .dashboard-hero {
        grid-template-columns: 1fr;
    }

    .toolbar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 0.55rem 0.65rem;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 1rem;
    }

    .toolbar-grid {
        grid-template-columns: 1fr;
    }

    .results-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .inline-mobile-form {
        grid-template-columns: 1fr;
    }

    .password-field {
        grid-template-columns: 1fr;
    }

    .dashboard-table {
        border: none;
        overflow: visible;
    }

    .dashboard-table table,
    .dashboard-table tbody,
    .dashboard-table tr,
    .dashboard-table td {
        display: block;
        width: 100%;
    }

    .dashboard-table thead {
        display: none;
    }

    .dashboard-table tbody {
        display: grid;
        gap: 0.85rem;
    }

    .dashboard-table tr {
        border: 1px solid var(--g20);
        border-radius: var(--radius);
        background: var(--surface);
        padding: 0.35rem 0;
    }

    .dashboard-table td {
        border-bottom: 1px solid var(--g10);
        padding: 0.7rem 0.85rem;
    }

    .dashboard-table td:last-child {
        border-bottom: none;
    }

    .dashboard-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--text-muted);
    }
}

/* ─── Utility ───────────────────────────────────────────────── */
.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.flex {
    display: flex;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-muted {
    color: var(--text-muted);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-mono {
    font-family: var(--mono);
}

.w-full {
    width: 100%;
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-amber {
    color: var(--amber);
}