@font-face { font-family: 'Manrope Variable'; font-style: normal; font-display: swap; font-weight: 200 800; src: url('/portal-static/fonts/manrope-latin-wght-normal.woff2') format('woff2-variations'); }
@font-face { font-family: 'Inter Variable'; font-style: normal; font-display: swap; font-weight: 100 900; src: url('/portal-static/fonts/inter-latin-wght-normal.woff2') format('woff2-variations'); }
/* Workflows Australia client portal. Colours and type follow the brand kit; dark mode follows the device setting. */

:root {
  --navy: #00194d;
  --navy-2: #0a2a66;
  --blue: #056dfe;
  --blue-deep: #004fd4;
  --ice: #eaf4ff;
  --orange: #ff6b00;

  --ground: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #f0f5fb;
  --text: #00194d;
  --text-2: #475569;
  --text-3: #64748b;
  --line: #dbe4f0;
  --line-strong: #c3d1e4;
  --action: #056dfe;
  --action-hover: #004fd4;
  --action-text: #ffffff;
  --link: #004fd4;
  --tint: #eaf4ff;
  --tint-text: #004fd4;

  --wait-bg: #fff4e5;
  --wait-text: #9a4a05;
  --wait-line: #f7d3a6;
  --ok-bg: #e8f6ee;
  --ok-text: #11663a;
  --muted-bg: #eef2f7;
  --muted-text: #475569;

  --side: #00194d;
  --side-text: #c9d7ee;
  --side-active: #0f3274;

  --paper: #ffffff;
  --paper-text: #00194d;
  --paper-line: #dbe4f0;

  --shadow: 0 1px 2px rgb(0 25 77 / 0.06), 0 8px 24px rgb(0 25 77 / 0.06);
  --display: 'Manrope Variable', 'Inter Variable', ui-sans-serif, system-ui, sans-serif;
  --body: 'Inter Variable', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #07102a;
    --surface: #0d1936;
    --surface-2: #12203f;
    --text: #e8eefa;
    --text-2: #b2c0d8;
    --text-3: #8d9dba;
    --line: #1f3059;
    --line-strong: #2c4273;
    --action: #3d8bff;
    --action-hover: #66a3ff;
    --action-text: #03102e;
    --link: #8fbcff;
    --tint: #132b5a;
    --tint-text: #b8d4ff;
    --wait-bg: #3a2408;
    --wait-text: #ffc98a;
    --wait-line: #6b4515;
    --ok-bg: #0e3322;
    --ok-text: #8fe0b4;
    --muted-bg: #17264a;
    --muted-text: #b2c0d8;
    --side: #041033;
    --side-text: #b8c8e4;
    --side-active: #12306b;
    --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 8px 24px rgb(0 0 0 / 0.25);
  }
}
:root[data-theme="dark"] {
  --ground: #07102a;
  --surface: #0d1936;
  --surface-2: #12203f;
  --text: #e8eefa;
  --text-2: #b2c0d8;
  --text-3: #8d9dba;
  --line: #1f3059;
  --line-strong: #2c4273;
  --action: #3d8bff;
  --action-hover: #66a3ff;
  --action-text: #03102e;
  --link: #8fbcff;
  --tint: #132b5a;
  --tint-text: #b8d4ff;
  --wait-bg: #3a2408;
  --wait-text: #ffc98a;
  --wait-line: #6b4515;
  --ok-bg: #0e3322;
  --ok-text: #8fe0b4;
  --muted-bg: #17264a;
  --muted-text: #b2c0d8;
  --side: #041033;
  --side-text: #b8c8e4;
  --side-active: #12306b;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 8px 24px rgb(0 0 0 / 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--ground);
  color: var(--text);
  font: 15px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--link); }
:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; }
.num { font-variant-numeric: tabular-nums; }

/* Shell */
.app { display: grid; grid-template-columns: 248px minmax(0, 1fr); min-height: 100vh; }
.side {
  background: var(--side); color: var(--side-text);
  padding: 22px 14px; display: flex; flex-direction: column; gap: 22px;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.side .logo { display: block; padding: 4px 10px 0; }
.side .logo img { width: 176px; height: auto; display: block; }
.side-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #8ea6cc; padding: 0 12px; margin-bottom: 6px; }
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav a {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 9px 12px; border: 0; border-radius: 8px; background: transparent; cursor: pointer;
  color: var(--side-text); font-size: 14px; font-weight: 500; text-align: left;
}
.nav a:hover { background: rgb(255 255 255 / 0.06); color: #fff; }
.nav a[aria-current="page"] { background: var(--side-active); color: #fff; }
.nav svg { width: 18px; height: 18px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav .count { margin-left: auto; min-width: 20px; padding: 0 6px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; text-align: center; line-height: 18px; }
.side-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 12px; border-top: 1px solid rgb(255 255 255 / 0.1); }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #1d4ea8; color: #fff; font-size: 13px; font-weight: 700; flex: none; }
.side-foot .who { font-size: 13px; line-height: 1.3; min-width: 0; flex: 1; }
.side-foot .who strong, .side-foot .who span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-foot .who strong { color: #fff; display: block; font-weight: 600; }
.side-foot .who span { color: #8ea6cc; }
.side-foot button { white-space: nowrap; flex: none; margin-left: auto; border: 0; background: transparent; color: #8ea6cc; cursor: pointer; font-size: 12px; padding: 4px; }
.side-foot button:hover { color: #fff; }

main { padding: 32px clamp(16px, 4vw, 48px) 64px; min-width: 0; }
.page { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.crumb { font-size: 13px; color: var(--text-3); margin-bottom: 6px; }
.crumb a { color: var(--link); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.page-head h1 { font-size: clamp(26px, 3vw, 32px); font-weight: 700; line-height: 1.15; }
.page-head h1 .stop { color: var(--orange); }
.page-head p { color: var(--text-2); margin-top: 6px; max-width: 62ch; }

/* Building blocks */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.panel-head h2 { font-size: 16px; font-weight: 700; }
.panel-body { padding: 20px; }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.stack { display: flex; flex-direction: column; gap: 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 9px; border: 1px solid transparent; cursor: pointer;
  font-size: 14px; font-weight: 600; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--action); color: var(--action-text); }
.btn-primary:hover { background: var(--action-hover); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--action); color: var(--link); }
.btn-quiet { background: transparent; color: var(--link); padding-inline: 8px; }
.btn-sm { padding: 6px 11px; font-size: 13px; border-radius: 8px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-wait { background: var(--wait-bg); color: var(--wait-text); }
.pill-ok { background: var(--ok-bg); color: var(--ok-text); }
.pill-info { background: var(--tint); color: var(--tint-text); }
.pill-muted { background: var(--muted-bg); color: var(--muted-text); }

/* Project cards */
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.project-card { text-decoration: none; color: var(--text); padding: 20px; display: flex; flex-direction: column; gap: 16px; cursor: pointer; text-align: left; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.project-card:hover { border-color: var(--action); box-shadow: var(--shadow); }
.project-card .top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.project-card h3 { font-size: 18px; font-weight: 700; }
.project-card .ref { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.project-card .next { font-size: 14px; color: var(--text-2); border-top: 1px solid var(--line); padding-top: 14px; display: flex; justify-content: space-between; gap: 12px; }
.project-card .next strong { color: var(--text); font-weight: 600; }

/* Stage tracker */
.stages { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 4px; }
.stage { display: flex; flex-direction: column; gap: 7px; }
.stage .bar { height: 6px; border-radius: 999px; background: var(--line); }
.stage.done .bar { background: var(--blue-deep); }
.stage.current .bar { background: linear-gradient(90deg, var(--blue-deep), var(--action)); }
.stage span { font-size: 12px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stage.current span { color: var(--text); font-weight: 600; }
.stages.large .bar { height: 8px; }
.stages.large span { font-size: 13px; }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.timeline li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 14px; padding-bottom: 22px; position: relative; }
.timeline li:not(:last-child)::before { content: ''; position: absolute; left: 8px; top: 20px; bottom: 0; width: 2px; background: var(--line); }
.timeline .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line-strong); background: var(--surface); margin-top: 2px; }
.timeline .dot.key { border-color: var(--action); background: var(--tint); }
.timeline .meta { font-size: 12px; color: var(--text-3); }
.timeline h4 { font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: 0; margin: 1px 0 4px; }
.timeline p { color: var(--text-2); font-size: 14px; max-width: 64ch; }
.timeline .attach { display: inline-flex; margin-top: 8px; font-size: 13px; gap: 6px; align-items: center; color: var(--link); background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; }

/* Milestones */
.milestones { list-style: none; margin: 0; padding: 0; }
.milestones li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.milestones li:last-child { border-bottom: 0; }
.check { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; border: 2px solid var(--line-strong); }
.done .check { background: var(--blue-deep); border-color: var(--blue-deep); }
.done .check::after { content: ''; width: 8px; height: 4px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg) translate(1px, -1px); }
.current .check { border-color: var(--action); box-shadow: inset 0 0 0 4px var(--surface), inset 0 0 0 10px var(--action); }
.milestones .name { flex: 1; }
.done .name { color: var(--text-2); }
.current .name { font-weight: 600; }
.milestones .date { color: var(--text-3); font-size: 13px; }

/* Document rows */
.doc-list { list-style: none; margin: 0; padding: 0; }
.doc-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 14px 20px; border-top: 1px solid var(--line); }
.doc-row:first-child { border-top: 0; }
.doc-badge { width: 40px; height: 48px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--text-3); }
.doc-row h4 { font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 0; }
.doc-row .sub { font-size: 13px; color: var(--text-3); }
.doc-row .right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.doc-row .title { text-decoration: none; color: var(--text); min-width: 0; }
.doc-row .title h4 { overflow-wrap: anywhere; }
.doc-row .title:hover h4 { color: var(--link); }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .label { font-size: 13px; font-weight: 600; }
.field .hint { font-size: 12px; color: var(--text-3); }
.input, .select, .textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--surface); color: var(--text);
}
.textarea { min-height: 96px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: 2px solid var(--action); outline-offset: 0; border-color: transparent; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-2); }
.checkline input { margin-top: 3px; accent-color: var(--action); width: 16px; height: 16px; flex: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.dropzone { border: 1.5px dashed var(--line-strong); border-radius: 12px; padding: 22px; text-align: center; background: var(--surface-2); color: var(--text-2); font-size: 14px; }
.dropzone strong { color: var(--text); }
.dropzone.has-file { border-style: solid; border-color: var(--action); background: var(--tint); color: var(--tint-text); }

/* Tables */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th { text-align: left; font-size: 12px; font-weight: 600; color: var(--text-3); padding: 12px 20px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.data td { padding: 14px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
table.data .strong { font-weight: 600; }
table.data .sub { font-size: 13px; color: var(--text-3); }

/* Document details + filters */
.details { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: 14px; margin: 0; }
.details dt { color: var(--text-3); }
.details dd { margin: 0; text-align: right; font-weight: 500; overflow-wrap: anywhere; }
.side-panel .panel-body { display: flex; flex-direction: column; gap: 18px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { text-decoration: none; border: 1px solid var(--line-strong); background: var(--surface); color: var(--text-2); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; cursor: pointer; }
.chip[aria-current="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.group-label { padding: 12px 20px 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.group-label:first-child { border-top: 0; border-radius: 14px 14px 0 0; }
.no-preview { padding: 60px 24px; text-align: center; color: var(--text-2); }
.no-preview .doc-badge { margin: 0 auto 14px; width: 56px; height: 68px; font-size: 12px; }
.milestones .ms-action { border: 0; background: none; color: var(--link); font-size: 13px; font-weight: 600; cursor: pointer; padding: 2px 4px; }
.inline-form { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 14px; }
.inline-form .input { flex: 1 1 160px; }

/* Stats row (studio) */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat { padding: 16px 18px; }
.stat .k { font-size: 13px; color: var(--text-3); }
.stat .v { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat .v small { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--text-3); letter-spacing: 0; }

/* Sign in */
.signin { min-height: 100vh; display: grid; place-items: center; padding: 32px 16px; background: var(--ground); }
.signin-card { width: 100%; max-width: 420px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.signin-card img { width: 200px; height: auto; }
.signin-card h1 { font-size: 26px; }
.signin-card h1 .stop { color: var(--orange); }
.signin-card p { color: var(--text-2); }
.logo-dark { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo-light { display: none; } :root:not([data-theme="light"]) .logo-dark { display: block; } }
:root[data-theme="dark"] .logo-light { display: none; }
:root[data-theme="dark"] .logo-dark { display: block; }
.sent { border-radius: 10px; padding: 14px; background: var(--tint); color: var(--tint-text); font-size: 14px; }

/* Modal + toast */
.scrim { position: fixed; inset: 0; background: rgb(0 12 38 / 0.55); display: grid; place-items: center; padding: 16px; z-index: 50; }
.modal { width: 100%; max-width: 500px; max-height: calc(100vh - 32px); overflow-y: auto; background: var(--surface); border-radius: 16px; box-shadow: 0 24px 60px rgb(0 0 0 / 0.3); }
.modal .panel-head { border-bottom: 1px solid var(--line); }
.modal .panel-head button { border: 0; background: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--text-3); padding: 2px 6px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px; font-size: 14px; box-shadow: 0 12px 30px rgb(0 0 0 / 0.25); z-index: 60; max-width: calc(100vw - 32px); }
@media (prefers-reduced-motion: no-preference) {
  .toast { animation: rise 0.2s ease-out; }
  @keyframes rise { from { transform: translate(-50%, 8px); opacity: 0; } }
}

.empty { padding: 28px 20px; text-align: center; color: var(--text-3); font-size: 14px; }
.muted { color: var(--text-3); }

@media (max-width: 1100px) {
  .viewer { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; }
  .side { flex-direction: row; align-items: center; gap: 12px; padding: 10px 16px; overflow-x: auto; height: auto; position: static; }
  .side .logo { padding: 0; flex: none; }
  .side .logo img { width: 130px; }
  .side-label, .side-foot { display: none; }
  .nav { flex-direction: row; }
  .nav a { white-space: nowrap; padding: 8px 10px; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav a span.txt { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stages span { font-size: 10px; }
  .doc-row { grid-template-columns: 40px minmax(0, 1fr); }
  .doc-row .right { grid-column: 1 / -1; justify-content: flex-start; }
  .pdf-scroll { padding: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
}

.viewer { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; align-items: start; }
.pdf { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pdf-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; background: var(--surface); border-bottom: 1px solid var(--line); font-size: 13px; color: var(--text-2); flex-wrap: wrap; }
.pdf-bar .file { font-weight: 600; color: var(--text); overflow-wrap: anywhere; }
@media (max-width: 1100px) { .viewer { grid-template-columns: 1fr; } }

/* ---------- Live portal additions ---------- */
.nav a { text-decoration: none; }
.side-foot .who span { display: block; }
.side-foot form { flex: none; }
.side-foot form { margin-left: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.small { font-size: 13px; }
.section-title { font-size: 18px; }
.panel-body.tight { padding-block: 6px 18px; }
.btn.wide { width: 100%; }
.btn-quiet.danger { color: #b42318; }
.error { border-radius: 10px; padding: 12px 14px; background: #fdecea; color: #8a1c12; font-size: 14px; }
@media (prefers-reduced-motion: no-preference) {
  .toast { animation: rise 0.2s ease-out, fade 0.4s ease-in 4s forwards; }
  @keyframes fade { to { opacity: 0; visibility: hidden; } }
}
.update-body p + p { margin-top: 8px; }
.timeline .attach { text-decoration: none; }
.timeline form { margin-top: 6px; }
.doc-row .right form { display: inline; }
.doc-row.simple { grid-template-columns: minmax(0, 1fr) auto; }
.milestones li form { display: inline; }
.milestones .ms-delete { color: var(--text-3); font-weight: 500; }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field.narrow { max-width: 320px; }
.textarea.short { min-height: 70px; }
.form.bordered { border-top: 1px solid var(--line); }
.form-title { font-size: 15px; font-weight: 700; }
a.plain { color: var(--text); text-decoration: none; }
a.plain:hover { color: var(--link); text-decoration: underline; }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pdf-frame { display: block; width: 100%; height: min(80vh, 1000px); border: 0; background: var(--surface-2); }
.image-preview { padding: 20px; text-align: center; }
.image-preview img { max-width: 100%; height: auto; border-radius: 6px; }
.dropzone { display: block; cursor: pointer; }
.dropzone input[type="file"] { display: block; margin: 12px auto 0; max-width: 100%; font-size: 13px; }
.dropzone.dragging { border-color: var(--action); background: var(--tint); }
.upload-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.upload-list:empty { display: none; }
.upload-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.upload-list li span:first-child { overflow-wrap: anywhere; }
.upload-list .state { color: var(--text-3); white-space: nowrap; font-variant-numeric: tabular-nums; }
.upload-list .state.ok { color: var(--ok-text); }
.upload-list .state.bad { color: #b42318; }
.inline-form .date-input { flex: 0 1 120px; }
.signin-card h1 { font-size: 26px; }
.group-label { margin: 0; font-family: var(--body); }
@media (max-width: 900px) {
  .form-row.three { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .side-foot { display: flex; padding: 0; border: 0; margin-left: auto; }
  .side-foot .avatar, .side-foot .who { display: none; }
  .side-foot form button { color: var(--side-text); }
}
[hidden] { display: none !important; }
