*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #0d9488;
    --color-primary-dark: #0b7f74;
    --color-green: #16a34a;
    --color-blue: #2563eb;
    --color-bg: #f5f5f5;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;
    --radius-card: 12px;
    --radius-btn: 10px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --bottom-nav-height: 56px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html, body {
    height: 100%;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
}

#app {
    min-height: 100%;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.app-main {
    flex: 1;
    padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 16px);
}

/* ── Page header ─────────────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.hamburger-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn svg {
    width: 24px;
    height: 24px;
}

.page-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

/* ── Container ───────────────────────────────────── */
.container {
    padding: 16px;
}

/* ── Cards ───────────────────────────────────────── */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 16px;
    margin-bottom: 12px;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: var(--radius-btn);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-green {
    background: var(--color-green);
    color: #fff;
}

.btn-blue {
    background: var(--color-blue);
    color: #fff;
}

.btn-teal {
    background: var(--color-primary);
    color: #fff;
}

/* ── Inputs ──────────────────────────────────────── */
.field-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    margin-top: 12px;
}

.field-input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    color: var(--color-text);
    outline: none;
    transition: border-color 0.15s;
}

.field-input:focus {
    border-color: var(--color-primary);
}

/* ── Status pill ─────────────────────────────────── */
.status-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.status-pill.offline {
    background: #fffbeb;
    color: #d97706;
}

.status-pill.online {
    background: #f0fdf4;
    color: #16a34a;
}

/* ── Bottom navigation ───────────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-nav-height) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    display: flex;
    z-index: 50;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item.active {
    color: var(--color-primary);
}

.bottom-nav-icon {
    width: 22px;
    height: 22px;
}

/* ── Version bar ─────────────────────────────────── */
.version-bar {
    text-align: right;
    padding: 4px 16px;
    font-size: 11px;
    color: var(--color-text-muted);
}

/* ── Login ───────────────────────────────────────── */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;
}

.login-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 32px 24px;
    width: 100%;
    max-width: 360px;
}

.login-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.login-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.login-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    margin-bottom: 16px;
}

.login-btn {
    margin-top: 20px;
}

/* ── Placeholder cards (Task 6-8 replace) ────────── */
.placeholder-card {
    text-align: center;
    padding: 32px 16px;
}

.placeholder-greeting {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.placeholder-hint {
    color: var(--color-text-muted);
    font-size: 14px;
}

.warehouse-info {
    margin: 8px 0;
    font-size: 14px;
}

.warehouse-label {
    color: var(--color-text-muted);
}

.warehouse-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.last-pull {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.warehouse-card {
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 16px;
    box-shadow: var(--shadow-card);
    min-height: 44px;
}

.warehouse-card:active {
    background: var(--color-bg);
}

.warehouse-name {
    font-weight: 600;
    font-size: 16px;
}

.warehouse-code {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ── Barcode input card ──────────────────────────── */
.barcode-card {
    display: flex;
    gap: 8px;
    align-items: center;
}

.barcode-card .field-input {
    flex: 1;
}

.barcode-card .btn {
    width: auto;
    white-space: nowrap;
}

/* ── Article card ────────────────────────────────── */
.article-card {
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--color-border);
    object-fit: cover;
    flex-shrink: 0;
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-name {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-barcode {
    font-size: 13px;
    color: var(--color-text-muted);
    font-family: monospace;
}

.article-stock {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-green);
    margin-top: 2px;
}

/* ── Qty stepper ─────────────────────────────────── */
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-stepper button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

.qty-stepper .qty-value {
    font-size: 20px;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

/* ── CTA group (defined below in scan flow section) ─ */

/* ── Utilities ───────────────────────────────────── */
/* ── CTA buttons (horizontal) ────────────────────── */
.cta-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 12px;
}

.cta-btn {
    flex: 1;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    padding: 12px 8px;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ── Toast ───────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: toast-in 0.2s ease;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Article card extended ───────────────────────── */
.article-thumb-wrapper {
    flex-shrink: 0;
}

.article-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-thumb-placeholder svg {
    width: 28px;
    height: 28px;
    color: var(--color-text-muted);
}

.article-barcode-value {
    font-size: 13px;
    color: var(--color-text-muted);
    font-family: monospace;
    margin-bottom: 4px;
}

.article-stock-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.article-qty-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ── Pending header row ──────────────────────────── */
.pending-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pending-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.pending-type-icon {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

.pending-details {
    flex: 1;
    min-width: 0;
}

.pending-article-name {
    font-weight: 600;
    font-size: 14px;
}

.pending-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

.pending-cloud {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 11px;
    white-space: nowrap;
}

/* ── Filter tabs ─────────────────────────────────── */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.filter-tab {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    color: var(--color-text-muted);
}

.filter-tab.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ── Movement status ─────────────────────────────── */
.movement-status {
    padding-top: 6px;
}

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.pending {
    background: #fffbeb;
    color: #d97706;
}

.status-badge.synced {
    background: #f0fdf4;
    color: #16a34a;
}

.status-badge.error {
    background: #fef2f2;
    color: #dc2626;
}

/* ── Sync page ───────────────────────────────────── */
.sync-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.sync-info-row:last-child {
    border-bottom: none;
}

.sync-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.sync-value {
    font-size: 14px;
    font-weight: 600;
}

.sync-value.online { color: var(--color-green); }
.sync-value.offline { color: #d97706; }

.sync-hint {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 12px 0 16px;
}

.sync-error-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.sync-error-item:last-child {
    border-bottom: none;
}

.sync-error-info {
    flex: 1;
    min-width: 0;
}

.sync-error-type {
    font-weight: 600;
    font-size: 14px;
}

.sync-error-msg {
    font-size: 12px;
    color: #dc2626;
    margin-top: 2px;
}

.sync-error-retry {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.btn-small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    width: auto;
}

/* ── Station ─────────────────────────────────────── */
.station-card {
    text-align: center;
    padding: 24px 16px;
}

.station-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.station-id {
    font-family: monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.station-qr {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

.station-qr img {
    width: 280px;
    height: 280px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    image-rendering: pixelated;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.filter-field .field-input {
    width: 100%;
}

.register-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--color-border);
}

.register-row:last-child {
    border-bottom: none;
}

.register-details {
    flex: 1 1 auto;
    min-width: 0;
}

.register-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.register-actor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.actor-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 2px 6px;
    border-radius: 4px;
}

.actor-badge.station {
    background: #e0f2fe;
    color: #0369a1;
}

.actor-badge.person {
    background: #f3e8ff;
    color: #7e22ce;
}

.actor-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.actor-id {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.stock-toolbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
}

.stock-toolbar-row {
    display: flex;
    gap: 8px;
}

.stock-toolbar-row .field-input {
    flex: 1 1 auto;
    min-width: 0;
}

.stock-toolbar-row .btn {
    flex: 0 0 auto;
}

.stock-summary {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.stock-message {
    text-align: left;
    padding: 12px 16px;
}

.stock-error {
    border-left: 4px solid #b91c1c;
}

.stock-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-left: 4px solid var(--color-primary);
}

.stock-actions-label {
    font-weight: 700;
    color: var(--color-primary);
}

.stock-list {
    padding: 0;
    overflow: hidden;
}

/* Grid keeps the header and the rows on the same columns without a <table>, which would
   not wrap sensibly on a phone-width viewport. */
.stock-row {
    display: grid;
    grid-template-columns: 28px minmax(70px, 90px) 1fr minmax(80px, 110px) 60px;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

.stock-row:last-child {
    border-bottom: none;
}

.stock-row.selected {
    background: #f0fdfa;
}

.stock-head {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    background: var(--color-bg);
    cursor: default;
}

.stock-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.stock-sku {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85rem;
}

.stock-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-wh {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-qty {
    text-align: right;
    font-weight: 700;
}

.account-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
}

.account-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 2px 6px;
    border-radius: 4px;
}

.account-badge.station {
    background: #e0f2fe;
    color: #0369a1;
}

.account-badge.person {
    background: #f3e8ff;
    color: #7e22ce;
}

.account-name {
    font-weight: 600;
}

.account-note {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.account-exit {
    margin-left: auto;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    cursor: pointer;
}

.account-exit:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.sync-error-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    flex: 0 0 auto;
}

.sync-error-actions .btn-small {
    width: auto;
}

.stock-qty-input {
    width: 100%;
    min-height: 34px;
    padding: 0 6px;
    text-align: right;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-surface);
    color: var(--color-text);
    outline: none;
}

.stock-qty-input:focus {
    border-color: var(--color-primary);
}

.stock-qty-input.zero {
    color: var(--color-text-muted);
    font-weight: 400;
}

.stock-qty-input.edited {
    border-color: #d97706;
    background: #fffbeb;
    color: #b45309;
}

.stock-row.edited {
    background: #fffbeb;
}

.edit-hint {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b45309;
}

.stock-actions-edit {
    border-left-color: #d97706;
}

.stock-actions-edit .stock-actions-label {
    color: #b45309;
}

.stock-qty.zero {
    color: var(--color-text-muted);
    font-weight: 400;
}

.synced-at {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-left: 8px;
}

.btn-camera {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
}

.camera-error {
    text-align: left;
    padding: 12px 16px;
}

.camera-error code {
    font-size: 0.8rem;
    word-break: break-all;
    background: var(--color-bg);
    padding: 1px 4px;
    border-radius: 4px;
}

.scanner-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sight line: the detector reads the whole frame, this only tells the operator where to aim. */
.scanner-frame {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 320px);
    height: 160px;
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.scanner-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(24px + var(--safe-bottom));
    min-width: 160px;
}

.station-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0 4px;
}

.station-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 10px;
    border-radius: 999px;
}

.badge-ok {
    background: #dcfce7;
    color: #15803d;
}

.badge-off {
    background: #fee2e2;
    color: #b91c1c;
}

.station-wh {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.station-warning {
    font-size: 0.85rem;
    color: #b91c1c;
    margin: 8px 0;
}

.station-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.station-actions .btn {
    flex: 1 1 auto;
}

.wh-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

.wh-check:last-child {
    border-bottom: none;
}

.wh-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    flex: none;
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.station-hint {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 12px 0;
    line-height: 1.4;
}

.station-url {
    font-family: monospace;
    font-size: 11px;
    color: var(--color-text-muted);
    word-break: break-all;
    margin-bottom: 16px;
}

.station-name-field {
    margin: 16px 0;
    text-align: left;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    width: 100%;
}

/* ── Utilities ───────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
