/* BooksAuto — application styles */
:root {
    --navy: #0f2742;
    --navy-2: #16355a;
    --navy-3: #22497a;
    --teal: #0f766e;
    --teal-2: #0d9488;
    --teal-soft: #e6f4f2;
    --bg: #f3f5f8;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --line-2: #d1d5db;
    --danger: #b91c1c;
    --danger-soft: #fdecec;
    --warning: #92400e;
    --warning-soft: #fff6e0;
    --success: #166534;
    --success-soft: #e8f6ec;
    --info: #1e4e8c;
    --info-soft: #e8f0fb;
    --radius: 10px;
    --shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
    --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "Cascadia Mono", Consolas, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.5; color: var(--text); background: var(--bg); }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: 1.6rem; margin: 0 0 .25rem; line-height: 1.25; }
h2 { font-size: 1.05rem; margin: 0; }
h3 { font-size: .95rem; margin: 1rem 0 .5rem; }
p { margin: 0 0 .75rem; }
code { font-family: var(--mono); font-size: .9em; background: rgba(15, 39, 66, .07); padding: 1px 5px; border-radius: 4px; }
[hidden] { display: none !important; }

.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }
.mono { font-family: var(--mono); }
.nowrap { white-space: nowrap; }
.prewrap { white-space: pre-wrap; }
.mt { margin-top: 1rem; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.danger { color: var(--danger) !important; }

/* ---------- App shell ---------- */
body.app { display: flex; min-height: 100vh; }
.sidebar {
    width: 250px; flex: 0 0 250px; background: var(--navy); color: #cbd5e1;
    display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.brand { display: flex; align-items: center; gap: 10px; padding: 18px 18px 10px; color: #fff; font-weight: 700; font-size: 1.1rem; }
.brand:hover { text-decoration: none; }
.brand img { border-radius: 7px; }
.firm-name { margin: 0 18px 8px; padding: 6px 10px; background: var(--navy-2); border-radius: 6px; color: #e2e8f0; font-size: .85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav { padding: 6px 10px 16px; display: flex; flex-direction: column; gap: 2px; }
.nav-label { text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; color: #7c93b3; margin: 14px 10px 4px; }
.nav-link { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; color: #cbd5e1; font-size: .93rem; }
.nav-link .ico { width: 18px; text-align: center; opacity: .8; }
.nav-link:hover { background: var(--navy-2); color: #fff; text-decoration: none; }
.nav-link.active { background: var(--teal); color: #fff; }
.nav-link.disabled { color: #64748b; cursor: default; }
.nav-link.disabled:hover { background: none; color: #64748b; }
.nav-link em { white-space: nowrap; margin-left: auto; font-style: normal; font-size: .68rem; background: var(--navy-2); color: #94a3b8; padding: 1px 6px; border-radius: 99px; }
.sidebar-foot { margin-top: auto; padding: 12px 18px; font-size: .72rem; color: #64748b; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 12px; height: 58px; padding: 0 24px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.topbar-title { font-weight: 600; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }
.content { padding: 24px; max-width: 1280px; width: 100%; }
.banner { margin: 0; border-radius: 0; }

.usermenu { position: relative; }
.usermenu summary { list-style: none; display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 8px; border-radius: 8px; }
.usermenu summary::-webkit-details-marker { display: none; }
.usermenu summary:hover { background: var(--bg); }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }
.usermenu-panel { position: absolute; right: 0; top: calc(100% + 6px); width: 250px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0, 0, 0, .12); overflow: hidden; }
.usermenu-head { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.usermenu-head small { color: var(--muted); }
.usermenu-panel a, .usermenu-panel button { display: block; width: 100%; text-align: left; padding: 10px 14px; background: none; border: 0; font: inherit; color: var(--text); cursor: pointer; }
.usermenu-panel a:hover, .usermenu-panel button:hover { background: var(--bg); text-decoration: none; }

/* ---------- Page structure ---------- */
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-head h1 .badge { vertical-align: middle; font-size: .75rem; }
.crumbs { margin: 0 0 4px; font-size: .85rem; color: var(--muted); }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 20px; }
.card.flush { padding: 0; overflow: hidden; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.card-head a { font-size: .85rem; }
.narrow-card { max-width: 720px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-2 > .card { margin-bottom: 0; }
.grid-2 + .card, .grid-2 + .grid-2 { margin-top: 20px; }
.grid-main { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 20px; align-items: start; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.stat-label { color: var(--muted); font-size: .85rem; }
.stat-value { font-size: 1.8rem; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }

.empty { text-align: center; padding: 28px 16px; color: var(--muted); }
.empty p { margin-bottom: 12px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th { text-align: left; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); background: #f9fafb; padding: 10px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: #fafbfc; }
.card:not(.flush) .table th:first-child, .card:not(.flush) .table td:first-child { padding-left: 0; }
.card:not(.flush) .table th { background: none; }
.table .actions { text-align: right; white-space: nowrap; }
.table .actions form { display: inline-block; margin-left: 4px; }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: -8px 0 20px; }
.pagination span { display: flex; gap: 6px; }

/* ---------- Badges & alerts ---------- */
.badge { display: inline-block; padding: 2px 9px; border-radius: 99px; font-size: .75rem; font-weight: 600; line-height: 1.6; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-muted, .badge-neutral { background: #eef0f3; color: #4b5563; }

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; border: 1px solid transparent; }
.alert-success { background: var(--success-soft); color: var(--success); border-color: #c7e8d1; }
.alert-danger { background: var(--danger-soft); color: var(--danger); border-color: #f5c9c9; }
.alert-warning { background: var(--warning-soft); color: var(--warning); border-color: #f5e0ac; }
.alert-info { background: var(--info-soft); color: var(--info); border-color: #c9d9f2; }
.alert a { color: inherit; font-weight: 600; text-decoration: underline; }
.copy-row { display: flex; gap: 8px; margin-top: 8px; }
.copy-row input { flex: 1; font-family: var(--mono); font-size: .8rem; background: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 16px; border-radius: 8px; border: 1px solid transparent; font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; line-height: 1.2; white-space: nowrap; transition: background .15s, border-color .15s; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #0b5f59; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--line-2); }
.btn-secondary:hover { background: #f9fafb; border-color: #9ca3af; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: rgba(0, 0, 0, .05); }
.btn-danger-outline { background: #fff; color: var(--danger); border-color: #f0b4b4; }
.btn-danger-outline:hover { background: var(--danger-soft); }
.btn-sm { padding: 6px 11px; font-size: .82rem; }
.btn-block { width: 100%; }
.icon-btn { background: none; border: 0; font-size: 1.3rem; cursor: pointer; padding: 4px 8px; color: var(--text); }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--teal); cursor: pointer; }
.linklike:hover { text-decoration: underline; }

/* ---------- Forms ---------- */
.form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.form legend { font-weight: 700; font-size: 1rem; margin-bottom: 12px; padding: 0; color: var(--navy); }
.form.narrow { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 2px; }
.field-wide { grid-column: 1 / -1; }
.card > .field, .form > .field { margin-bottom: 14px; }
label { font-weight: 600; font-size: .88rem; }
.req { color: var(--danger); }
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=date], input[type=number], input:not([type]), select, textarea {
    width: 100%; padding: 9px 11px; border: 1px solid var(--line-2); border-radius: 8px; font: inherit; color: var(--text); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal-2); box-shadow: 0 0 0 3px rgba(13, 148, 136, .18); }
input:disabled { background: #f3f4f6; color: var(--muted); }
textarea { resize: vertical; min-height: 90px; }
.help { color: var(--muted); font-size: .8rem; }
.error { color: var(--danger); font-size: .82rem; font-weight: 600; }
.has-error input, .has-error select, .has-error textarea { border-color: #e39a9a; background: #fffafa; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.stack { display: flex; flex-direction: column; gap: 14px; }
.check { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; cursor: pointer; }
.check input { margin-top: 4px; }
.check-list { display: flex; flex-direction: column; gap: 6px; max-height: 320px; overflow-y: auto; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; }
.list-filter { margin-bottom: 8px; }
.radio-card { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 8px; margin-bottom: 8px; font-weight: 400; cursor: pointer; }
.radio-card:has(input:checked) { border-color: var(--teal); background: var(--teal-soft); }
.radio-card input { margin-top: 4px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.filters input[type=search] { max-width: 320px; }
.filters select, .filters input[type=date] { width: auto; }
.inline { display: inline-flex; align-items: center; gap: 6px; font-weight: 400; color: var(--muted); }

/* ---------- Lists, tabs, misc ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 20px; overflow-x: auto; }
.tabs a, .tabs span { padding: 10px 14px; border-bottom: 2px solid transparent; color: var(--muted); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.tabs a:hover { color: var(--text); text-decoration: none; }
.tabs a.active { color: var(--teal); border-bottom-color: var(--teal); }
.tabs .disabled { color: #b0b7c3; cursor: default; }
.tabs em { font-style: normal; font-size: .68rem; background: #eef0f3; padding: 1px 6px; border-radius: 99px; margin-left: 4px; }

.dl { margin: 0; }
.dl-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.dl-row:last-child { border-bottom: 0; }
.dl dt { color: var(--muted); font-size: .88rem; }
.dl dd { margin: 0; overflow-wrap: anywhere; }

.feed { list-style: none; padding: 0; margin: 0; }
.feed li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.feed li:last-child { border-bottom: 0; }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-2); margin-top: 7px; flex: 0 0 8px; }
.people { list-style: none; padding: 0; margin: 0; }
.people li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.people li:last-child { border-bottom: 0; }
.plain { padding-left: 18px; margin: 0; }
.changes { list-style: none; padding: 0; margin: 0; font-size: .82rem; }
.changes s { color: var(--muted); }
details summary { cursor: pointer; color: var(--teal); font-size: .85rem; }

.progress { height: 8px; background: #eef0f3; border-radius: 99px; overflow: hidden; margin-bottom: 12px; }
.progress span { display: block; height: 100%; background: var(--teal-2); border-radius: 99px; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.checklist .tick { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; color: #fff; flex: 0 0 22px; }
.checklist li.done { color: var(--muted); text-decoration: line-through; }
.checklist li.done .tick { background: var(--teal-2); border-color: var(--teal-2); }

.health { list-style: none; padding: 0; margin: 0 0 16px; }
.health li { padding: 6px 0; border-bottom: 1px solid var(--line); }
.health li span { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; margin-right: 6px; }
.health li.ok span { background: var(--success-soft); color: var(--success); }
.health li.bad span { background: var(--danger-soft); color: var(--danger); }
.health li.warn span { background: var(--warning-soft); color: var(--warning); }
.health em { display: block; margin-left: 30px; font-style: normal; color: var(--muted); }

.logo-box { display: flex; align-items: center; justify-content: center; min-height: 120px; border: 1px dashed var(--line-2); border-radius: 8px; margin-bottom: 14px; padding: 12px; background: #fafbfc; }
.logo-box img { max-width: 100%; max-height: 110px; }
.log { background: #0b1220; color: #cbd5e1; padding: 14px; border-radius: 8px; font-family: var(--mono); font-size: .75rem; max-height: 360px; overflow: auto; white-space: pre-wrap; }

.error-page { text-align: center; padding: 30px 10px; }
.error-code { font-size: 3.2rem; font-weight: 800; color: var(--line-2); line-height: 1; margin-bottom: 8px; }

/* ---------- Sign-in pages ---------- */
body.auth { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px 16px; background: linear-gradient(160deg, #0f2742 0%, #16355a 45%, #0f766e 140%); }
.auth-wrap { width: 100%; max-width: 440px; }
.auth-wrap.wide { max-width: 780px; }
.auth-brand { display: flex; align-items: center; gap: 14px; color: #fff; margin-bottom: 18px; }
.auth-brand img { border-radius: 12px; box-shadow: 0 6px 18px rgba(0, 0, 0, .25); }
.auth-name { font-size: 1.5rem; font-weight: 800; }
.auth-tag { color: #b6c6dc; font-size: .9rem; }
.auth-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 20px 50px rgba(0, 0, 0, .25); }
.auth-card h1 { font-size: 1.45rem; }
.auth-foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; color: #b6c6dc; font-size: .82rem; }
.auth-foot .linklike { color: #e2e8f0; }
.code-input { font-size: 1.6rem !important; letter-spacing: .35em; text-align: center; font-family: var(--mono) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-main { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .sidebar { position: fixed; left: 0; top: 0; z-index: 50; transform: translateX(-100%); transition: transform .2s; }
    body.nav-open .sidebar { transform: none; box-shadow: 0 0 40px rgba(0, 0, 0, .35); }
    body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, .35); z-index: 40; }
    .menu-toggle { display: inline-block; }
    .topbar { padding: 0 12px; }
    .content { padding: 16px; }
    .grid-2, .form-grid { grid-template-columns: 1fr; }
    .uname { display: none; }
    .dl-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 520px) {
    .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-value { font-size: 1.4rem; }
    .auth-card { padding: 20px; }
    .page-head .btn { width: 100%; }
}

/* ---------- Payroll ---------- */
.stat-value.small-value { font-size: 1.25rem; }
.card-head.pad { padding: 16px 20px 0; }
.card-foot { padding: 14px 20px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; }
.run-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.run-bar .badge { margin-right: 6px; }
.steps { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; flex-wrap: wrap; }
.steps li { padding: 5px 12px; border-radius: 99px; background: #eef0f3; color: var(--muted); font-size: .8rem; font-weight: 600; }
.steps li.done { background: var(--teal-soft); color: var(--teal); }
.run-table input.hrs { width: 68px; text-align: right; padding: 6px 7px; }
.run-table select.compact { width: auto; padding: 5px 6px; font-size: .85rem; }
.run-table tr.excluded td { opacity: .45; }
.run-table tr.voided td { text-decoration: line-through; opacity: .6; }
.run-table tr.voided td.actions { text-decoration: none; opacity: 1; }
.table tfoot td { border-top: 2px solid var(--line-2); background: #f9fafb; }
.warn-icon { color: #b45309; font-weight: 700; margin-left: 4px; cursor: help; }
.warn-list { font-size: .78rem; color: #92400e; margin-top: 3px; }
.void-box { display: inline-block; position: relative; }
.void-box summary { list-style: none; }
.void-box summary::-webkit-details-marker { display: none; }
.void-box form { position: absolute; right: 0; top: 110%; z-index: 5; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12); display: flex; gap: 6px; width: 320px; }
.doc-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.doc-buttons form { display: inline; }
.inline-grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.inline-grid select, .inline-grid input { width: auto; flex: 1 1 120px; min-width: 110px; }
.inline-grid button { flex: 0 0 auto; }
.inline-form { display: inline; margin-left: 8px; }
.deadlines { list-style: none; margin: 0; padding: 0; }
.deadlines li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .9rem; flex-wrap: wrap; }
.deadlines li:last-child { border-bottom: 0; }
.dl-when { font-weight: 700; color: var(--navy); min-width: 96px; font-size: .85rem; }
.group-row td { background: #f3f5f8; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; margin: 6px 0 14px; }
.form-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trace td { font-size: .82rem; padding: 6px 0; }
@media (max-width: 860px) { .form-grid.four { grid-template-columns: 1fr 1fr; } .check-grid { grid-template-columns: 1fr; } }
.run-table .emp-col { min-width: 210px; }

/* ---------- Desktop edition ---------- */
.open-path { padding: 12px 16px; }
.open-path input { flex: 1 1 420px; }
.path { word-break: break-all; color: var(--muted); }
.current-file { border-left: 4px solid var(--teal-2); }
.recovery-code { font-size: 1.6rem; font-weight: 700; letter-spacing: .12em; text-align: center; padding: 18px; border: 2px dashed var(--line-2); border-radius: 10px; margin-bottom: 14px; background: #fafbfc; }
body.desktop .install-btn { display: none !important; }

/* ---------- Licensing ---------- */
.page-head .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.copy-row textarea { flex: 1; font-family: var(--mono); font-size: .85rem; }
.copy-row input.serial, input.serial { font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; font-family: var(--mono); }
.license-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 0; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.license-banner > span { flex: 1 1 420px; }
.alert .license-banner .btn, .license-banner .btn { white-space: nowrap; text-decoration: none; }
.license-banner .btn-primary { color: #fff; }
.license-state { display: flex; gap: 14px; align-items: center; }
.license-state .big { font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.readonly-note { background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; border-radius: 8px; padding: 10px 12px; }
