/* Navy Mess ERP PoC design system. Indian Navy palette: navy blue, white, gold. */
:root {
  --navy-950: #061224;
  --navy-900: #0A1F3D;
  --navy-800: #0F2A52;
  --navy-700: #163A6B;
  --navy-600: #1F4A85;
  --navy-100: #E4EBF5;
  --navy-50:  #F1F5FA;
  --gold:     #C9A44A;
  --gold-600: #A9862F;
  --gold-100: #F7EFD9;
  --bg:       #F3F5F9;
  --surface:  #FFFFFF;
  --surface-2:#F7F9FC;
  --ink:      #18222F;
  --muted:    #61708A;
  --rule:     #DCE3EC;
  --rule-2:   #EDF1F6;
  --ok:       #1E7A4A; --ok-bg: #E3F3EA;
  --warn:     #B05B0D; --warn-bg: #FBEDDD;
  --crit:     #B02A2A; --crit-bg: #FBE5E5;
  --info:     #1F5FA8; --info-bg: #E3EDF9;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(10, 31, 61, .06), 0 4px 14px rgba(10, 31, 61, .05);
  --sidebar: 248px;
  --topbar: 58px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 14.5px/1.55 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; color: var(--navy-900); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: 22px; } h2 { font-size: 17px; } h3 { font-size: 15px; } h4 { font-size: 13.5px; }
p { margin: 0 0 10px; }
.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.mono { font-family: var(--mono); font-size: .93em; }
.num { font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.nowrap { white-space: nowrap; }
.right { text-align: right; }
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mb-16 { margin-bottom: 16px; }
.flex { display: flex; gap: 10px; align-items: center; } .flex.wrap { flex-wrap: wrap; } .grow { flex: 1; } .between { justify-content: space-between; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1100px) { .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

/* ---------- App shell ---------- */
.shell { display: grid; grid-template-columns: var(--sidebar) 1fr; min-height: 100vh; }
.sidebar { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); color: #DCE6F5; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
.brand { display: flex; align-items: center; gap: 12px; padding: 18px 18px 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand .mark { width: 38px; height: 38px; border-radius: 10px; background: var(--gold); display: grid; place-items: center; color: var(--navy-950); flex: none; }
.brand .mark svg { width: 22px; height: 22px; }
.brand .t1 { font-weight: 700; font-size: 14px; letter-spacing: .02em; color: #fff; line-height: 1.2; }
.brand .t2 { font-size: 11px; color: rgba(220,230,245,.7); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.nav { padding: 10px 10px 16px; flex: 1; }
.nav .group { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(220,230,245,.5); padding: 14px 10px 6px; }
.nav a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; color: #C9D6EA; font-size: 13.5px; }
.nav a:hover { background: rgba(255,255,255,.06); text-decoration: none; color: #fff; }
.nav a.active { background: rgba(201,164,74,.16); color: #fff; box-shadow: inset 3px 0 0 var(--gold); }
.nav a svg { width: 17px; height: 17px; opacity: .85; flex: none; }
.nav .badge { margin-left: auto; background: var(--gold); color: var(--navy-950); font-size: 11px; font-weight: 700; border-radius: 999px; padding: 0 7px; line-height: 18px; }
.sidebar .foot { padding: 12px 18px 16px; font-size: 11.5px; color: rgba(220,230,245,.55); border-top: 1px solid rgba(255,255,255,.08); }
.main { min-width: 0; display: flex; flex-direction: column; }
.topbar { height: var(--topbar); background: var(--surface); border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 16px; padding: 0 24px; position: sticky; top: 0; z-index: 5; }
.topbar .crumb { color: var(--muted); font-size: 13px; }
.topbar .crumb b { color: var(--navy-900); font-weight: 600; }
.topbar .spacer { flex: 1; }
.userchip { display: flex; align-items: center; gap: 10px; padding: 4px 6px 4px 4px; border-radius: 999px; border: 1px solid var(--rule); background: var(--surface-2); }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.userchip .n { font-size: 13px; font-weight: 600; line-height: 1.1; }
.userchip .r { font-size: 11.5px; color: var(--muted); }
.iconbtn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--rule); background: var(--surface); display: grid; place-items: center; color: var(--navy-800); position: relative; cursor: pointer; }
.iconbtn svg { width: 18px; height: 18px; }
.iconbtn .dot { position: absolute; top: -4px; right: -4px; background: var(--crit); color: #fff; font-size: 10px; font-weight: 700; border-radius: 999px; min-width: 16px; height: 16px; line-height: 16px; text-align: center; padding: 0 4px; }
.content { padding: 22px 24px 40px; max-width: 1480px; width: 100%; }
.pagehead { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.pagehead .sub { color: var(--muted); margin-top: 3px; font-size: 13.5px; }
.pagehead .actions { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Cards, tiles ---------- */
.card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow); }
.card .hd { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--rule-2); }
.card .hd h2, .card .hd h3 { flex: 1; }
.card .bd { padding: 16px; }
.card .bd.tight { padding: 0; }
.card .ft { padding: 10px 16px; border-top: 1px solid var(--rule-2); color: var(--muted); font-size: 12.5px; }
.tile { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); }
.tile .k { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tile .v { font-size: 26px; font-weight: 700; color: var(--navy-900); margin-top: 4px; font-variant-numeric: tabular-nums; line-height: 1.1; }
.tile .v small { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.tile .d { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.tile.accent { border-top: 3px solid var(--gold); }
.tile.navy { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.tile.navy .k, .tile.navy .d { color: rgba(255,255,255,.7); } .tile.navy .v { color: #fff; }

/* ---------- Tables ---------- */
.tablewrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.data th { text-align: left; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding: 10px 14px; background: var(--surface-2); border-bottom: 1px solid var(--rule); white-space: nowrap; }
table.data td { padding: 10px 14px; border-bottom: 1px solid var(--rule-2); vertical-align: top; }
table.data tbody tr:hover { background: var(--navy-50); }
table.data tr:last-child td { border-bottom: none; }
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.data tfoot td { font-weight: 600; background: var(--surface-2); border-top: 1px solid var(--rule); }
table.data .sub { color: var(--muted); font-size: 12.5px; display: block; }
table.data.compact th, table.data.compact td { padding: 7px 10px; }

/* ---------- Pills, status ---------- */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; border: 1px solid transparent; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .85; }
.pill.plain::before { display: none; }
.pill.ok, .pill.available, .pill.paid, .pill.closed, .pill.approved, .pill.issued { background: var(--ok-bg); color: var(--ok); }
.pill.warn, .pill.reserved, .pill.pending_approval, .pill.awaiting_allotment, .pill.part_paid, .pill.assigned, .pill.pending, .pill.verified { background: var(--warn-bg); color: var(--warn); }
.pill.crit, .pill.under_repair, .pill.open, .pill.overdue, .pill.returned, .pill.nac { background: var(--crit-bg); color: var(--crit); }
.pill.info, .pill.occupied, .pill.active, .pill.allotted, .pill.draft, .pill.checkout_requested, .pill.interim { background: var(--info-bg); color: var(--info); }
.pill.neutral, .pill.blocked { background: var(--rule-2); color: var(--muted); }
.pill.gold { background: var(--gold-100); color: var(--gold-600); }
.pill.navy { background: var(--navy-100); color: var(--navy-800); }
.tag { display: inline-block; padding: 1px 8px; border-radius: 4px; font-size: 11.5px; background: var(--navy-100); color: var(--navy-800); font-weight: 600; font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 7px; border: 1px solid var(--rule); background: var(--surface); color: var(--navy-900); font: inherit; font-weight: 600; font-size: 13.5px; cursor: pointer; text-decoration: none; line-height: 1.2; }
.btn:hover { background: var(--navy-50); text-decoration: none; }
.btn.primary { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.btn.primary:hover { background: var(--navy-700); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--navy-950); }
.btn.gold:hover { background: #d7b35c; }
.btn.danger { color: var(--crit); border-color: #EBC4C4; } .btn.danger:hover { background: var(--crit-bg); }
.btn.sm { padding: 5px 10px; font-size: 12.5px; }
.btn.block { width: 100%; justify-content: center; }
.btn svg { width: 15px; height: 15px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
label.f { display: block; }
label.f > span, .f > .lbl { display: block; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .03em; margin-bottom: 5px; }
input[type=text], input[type=date], input[type=number], input[type=email], input[type=search], input[type=datetime-local], select, textarea {
  width: 100%; padding: 8px 10px; border: 1px solid var(--rule); border-radius: 7px; font: inherit; background: var(--surface); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(31, 95, 168, .35); border-color: var(--navy-600); }
textarea { min-height: 72px; resize: vertical; }
.check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; padding: 8px 0; }
.check input { width: 16px; height: 16px; }
.help { font-size: 12px; color: var(--muted); margin-top: 4px; }
.formbar { display: flex; gap: 8px; justify-content: flex-end; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--rule-2); }
.readonly { background: var(--surface-2) !important; color: var(--muted); }

/* ---------- Alerts ---------- */
.alert { padding: 10px 14px; border-radius: 7px; border: 1px solid; font-size: 13.5px; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.alert.ok { background: var(--ok-bg); border-color: #BFE3CD; color: var(--ok); }
.alert.warn { background: var(--warn-bg); border-color: #F1D3B5; color: var(--warn); }
.alert.crit { background: var(--crit-bg); border-color: #EFC2C2; color: var(--crit); }
.alert.info { background: var(--info-bg); border-color: #C3D6EE; color: var(--info); }

/* ---------- Definition lists ---------- */
.dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; font-size: 13.5px; }
.dl dt { color: var(--muted); } .dl dd { margin: 0; font-weight: 500; }
.kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px 20px; }
.kv .k { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.kv .v { font-weight: 600; margin-top: 2px; }

/* ---------- Availability board ---------- */
.board { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.cab { border: 1px solid var(--rule); border-radius: 7px; padding: 8px 9px; background: var(--surface); position: relative; min-height: 64px; display: flex; flex-direction: column; justify-content: space-between; }
.cab .no { font-weight: 700; font-family: var(--mono); font-size: 13px; }
.cab .ty { font-size: 11px; color: var(--muted); }
.cab .who { font-size: 11px; color: var(--navy-800); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cab.available { border-color: #B7DEC6; background: #F2FAF5; }
.cab.occupied { border-color: #C3D6EE; background: #EEF4FB; }
.cab.reserved { border-color: #F1D3B5; background: #FDF4EA; }
.cab.under_repair { border-color: #EFC2C2; background: #FDEFEF; }
.cab.blocked { background: var(--rule-2); color: var(--muted); }
.cab.ineligible { opacity: .45; }
.cab.selectable { cursor: pointer; } .cab.selectable:hover { outline: 2px solid var(--navy-600); }
.cab input[type=radio] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.cab.selected { outline: 2px solid var(--gold); }
.legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); }
.legend i { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; border: 1px solid var(--rule); }

/* ---------- Timeline / steps ---------- */
.steps { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.steps .st { padding: 6px 11px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--rule); font-size: 12.5px; font-weight: 600; color: var(--muted); }
.steps .st.done { background: var(--ok-bg); border-color: #BFE3CD; color: var(--ok); }
.steps .st.now { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.steps .arr { color: var(--muted); }
.timeline { list-style: none; margin: 0; padding: 0 0 0 18px; border-left: 2px solid var(--rule); }
.timeline li { position: relative; padding: 0 0 14px 14px; font-size: 13.5px; }
.timeline li::before { content: ""; position: absolute; left: -24px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--navy-600); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--rule); }
.timeline li .when { color: var(--muted); font-size: 12px; }

/* ---------- Login ---------- */
.login { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.login .left { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.login .left::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(201,164,74,.12); }
.login .left h1 { color: #fff; font-size: 30px; line-height: 1.2; margin: 18px 0 10px; }
.login .left p { color: rgba(255,255,255,.75); max-width: 46ch; font-size: 15px; }
.login .left .kicker { color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: 11.5px; font-weight: 700; }
.login .right { padding: 48px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); }
.login .right h2 { font-size: 20px; margin-bottom: 4px; }
.users { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
@media (max-width: 980px) { .login { grid-template-columns: 1fr; } .login .left { padding: 32px; } .login .right { padding: 28px; } }
@media (max-width: 640px) { .users { grid-template-columns: 1fr; } }
.userbtn { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--rule); border-radius: 9px; background: var(--surface); text-align: left; cursor: pointer; font: inherit; color: var(--ink); width: 100%; box-shadow: var(--shadow); }
.userbtn:hover { border-color: var(--navy-600); background: var(--navy-50); }
.userbtn .n { font-weight: 600; font-size: 13.5px; }
.userbtn .r { font-size: 12px; color: var(--muted); }
.userbtn .go { margin-left: auto; color: var(--muted); }
.ad-note { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); border: 1px dashed var(--rule); border-radius: 8px; padding: 10px 12px; margin-top: 18px; }

/* ---------- Documents (print) ---------- */
.doc { background: #fff; max-width: 820px; margin: 0 auto; padding: 36px 44px; border: 1px solid var(--rule); box-shadow: var(--shadow); color: #111; font-size: 13.5px; }
.doc .dochead { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid var(--navy-900); padding-bottom: 12px; margin-bottom: 18px; }
.doc .dochead .org { font-weight: 700; font-size: 16px; color: var(--navy-900); }
.doc .dochead .org small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.doc h2.title { text-align: center; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; margin: 6px 0 18px; color: var(--navy-900); }
.doc table.data th { background: #F3F5F9; }
.doc .sig { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.doc .sig div { border-top: 1px solid #333; padding-top: 6px; font-size: 12.5px; }
.doc .stamp { font-size: 11px; color: var(--muted); margin-top: 20px; }
.printbar { max-width: 820px; margin: 0 auto 12px; display: flex; justify-content: flex-end; gap: 8px; }
@media print {
  .sidebar, .topbar, .printbar, .noprint { display: none !important; }
  .shell { grid-template-columns: 1fr; } .content { padding: 0; max-width: none; }
  .doc { border: none; box-shadow: none; padding: 0; max-width: none; }
  body { background: #fff; }
}

/* ---------- Misc ---------- */
.searchbar { display: flex; gap: 8px; align-items: center; }
.searchbar input { max-width: 340px; }
.empty { padding: 28px; text-align: center; color: var(--muted); }
.progress { height: 8px; background: var(--rule-2); border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--navy-600); }
.progress i.gold { background: var(--gold); }
.chart { position: relative; height: 240px; }
.toast { position: fixed; right: 20px; bottom: 20px; background: var(--navy-900); color: #fff; padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); font-size: 13.5px; z-index: 50; }
.stackcard { border: 1px solid var(--rule); border-radius: var(--radius); padding: 14px 16px; background: var(--surface); }
.stackcard .layer { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.stackcard .choice { font-size: 16px; font-weight: 700; color: var(--navy-900); margin: 4px 0 2px; }
.stackcard .lic { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.stackcard .why { font-size: 13px; margin-top: 8px; }
.stackcard .alt { margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--rule); font-size: 12.5px; color: var(--muted); }
.stackcard .alt b { color: var(--ink); }
.flowband { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.flowband .s { background: var(--navy-100); border: 1px solid #C3D6EE; color: var(--navy-800); border-radius: 6px; padding: 6px 10px; font-size: 13px; font-weight: 600; }
.flowband .s.b { background: var(--gold-100); border-color: #E8D6A6; color: var(--gold-600); }
.flowband .a { color: var(--muted); }
pre.mermaid { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); padding: 12px; overflow-x: auto; }
kbd { font-family: var(--mono); font-size: 11.5px; background: var(--surface-2); border: 1px solid var(--rule); border-radius: 4px; padding: 0 5px; }
.denied { max-width: 560px; margin: 60px auto; text-align: center; }
.denied .code { font-size: 64px; font-weight: 800; color: var(--crit); letter-spacing: -.03em; }

/* adjustment rows inside a fund group */
table.data tr.adj-row td { background: var(--gold-100); border-left: 3px solid var(--gold); }
table.data tbody tr.adj-row:hover td { background: #F1E5C4; }
@media print { table.data tr.adj-row td { background: #F7EFD9 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; } }

/* print: reports and lists */
.printonly { display: none; }
@media print {
  .printonly { display: block !important; }
  .pagehead .actions, .noprint, .card .hd input, .card .hd form, .card .hd .btn, .btn, .alert:not(.info), nav, .ft a { display: none !important; }
  .content { padding: 0 !important; }
  .card { box-shadow: none !important; border: 1px solid #bbb !important; break-inside: auto; }
  table.data { font-size: 11.5px; }
  table.data th, table.data td { padding: 5px 8px !important; }
  table.data tbody tr:hover { background: transparent; }
  .chart { height: 180px !important; }
  a { color: inherit !important; text-decoration: none !important; }
  .pill { border: 1px solid #999 !important; background: transparent !important; color: #000 !important; }
  .pill::before { display: none; }
  h1 { font-size: 18px; }
  @page { margin: 12mm; }
}

/* action bar consistency */
.pagehead .actions { align-items: center; }
.pagehead .actions .btn, .pagehead .actions input, .pagehead .actions select { height: 38px; }
.pagehead .actions form.flex { gap: 8px; }
.pagehead .actions form .f > span { display: none; }
.btn .ic { width: 15px; height: 15px; flex: none; }
.backlink { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.backlink .ic { width: 14px; height: 14px; }
.backlink:hover { color: var(--navy-800); text-decoration: none; }
