:root {
  color-scheme: light;
  --ink: #17232d;
  --muted: #63717d;
  --line: #d8dee3;
  --surface: #ffffff;
  --canvas: #f3f5f6;
  --sidebar: #202a31;
  --blue: #1268a5;
  --blue-hover: #0b568b;
  --teal: #147c70;
  --teal-soft: #e6f3f0;
  --red: #b53b38;
  --red-soft: #faeceb;
  --amber: #9a6817;
  --amber-soft: #fbf2dc;
  font-family: "Microsoft YaHei UI", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; margin: 0; }
body { color: var(--ink); background: var(--canvas); font-size: 13px; letter-spacing: 0; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #f0a72e; outline-offset: 2px; }
svg { width: 17px; height: 17px; stroke-width: 1.8; }
::selection { color: #fff; background: var(--blue); }
* { scrollbar-color: #9baab3 #edf1f3; scrollbar-width: thin; }
[hidden] { display: none !important; }

.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #e9edef; }
.login-panel { width: min(400px, 100%); border: 1px solid #cdd5da; border-top: 4px solid var(--teal); border-radius: 6px; background: var(--surface); box-shadow: 0 14px 36px rgba(31, 45, 54, .12); }
.product-mark { display: flex; align-items: center; gap: 11px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.product-mark > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 5px; color: #fff; background: var(--teal); font-size: 19px; font-weight: 700; }
.product-mark strong, .product-mark small { display: block; }
.product-mark strong { font-size: 15px; }
.product-mark small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.login-panel form { display: grid; gap: 15px; padding: 24px 26px; }
.login-panel h1 { margin: 0; font-size: 21px; }
.login-panel p { margin: -8px 0 3px; color: var(--muted); line-height: 1.65; }
.login-panel label, dialog form > label, .form-grid label { display: grid; gap: 7px; color: #465663; font-size: 12px; }
input, select, textarea { width: 100%; border: 1px solid #bdc8d0; border-radius: 4px; padding: 9px 10px; color: var(--ink); background: #fff; }
textarea { resize: vertical; line-height: 1.65; }
.login-panel footer { padding: 13px 26px; border-top: 1px solid var(--line); color: var(--muted); background: #fafbfb; font-size: 11px; }
.form-error { min-height: 17px; color: var(--red); font-size: 11px; }

.primary, .secondary, .text-button, .icon-button { min-height: 34px; border-radius: 4px; }
.primary { border: 1px solid var(--blue); color: #fff; background: var(--blue); }
.primary:hover { background: var(--blue-hover); }
.secondary { border: 1px solid #b9c5cc; color: #314551; background: #fff; }
.secondary:hover { background: #f1f4f5; }
.text-button { border: 0; color: var(--blue); background: transparent; }
.command { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; }
.icon-button { width: 34px; display: grid; place-items: center; border: 0; color: #53646f; background: transparent; }
.icon-button:hover { background: rgba(92, 112, 124, .1); }

.app-shell { min-height: 100vh; }
.sidebar { position: fixed; inset: 0 auto 0 0; z-index: 20; width: 230px; display: grid; grid-template-rows: auto 1fr auto; color: #dfe7eb; background: var(--sidebar); }
.sidebar .product-mark { padding: 18px; border-color: rgba(255,255,255,.1); }
.sidebar .product-mark > span { width: 34px; height: 34px; }
.sidebar .product-mark strong { color: #fff; }
.sidebar .product-mark small { max-width: 140px; overflow: hidden; color: #9fb0ba; text-overflow: ellipsis; white-space: nowrap; }
.sidebar nav { display: grid; align-content: start; gap: 4px; padding: 14px 10px; }
.nav-button { min-height: 42px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border: 0; border-radius: 4px; color: #c6d1d7; background: transparent; text-align: left; }
.nav-button > span:nth-child(2) { flex: 1; }
.notification-badge { min-width: 20px; height: 20px; display: inline-grid; place-items: center; padding: 0 5px; border-radius: 10px; color: #fff; background: #c44742; font-size: 10px; font-weight: 700; }
.nav-button:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-button.active { color: #fff; background: #126294; box-shadow: inset 3px 0 #5bc0b2; }
.account-block { min-height: 66px; display: grid; grid-template-columns: 34px minmax(0,1fr) 34px; align-items: center; gap: 9px; padding: 10px 12px; border-top: 1px solid rgba(255,255,255,.1); }
.account-block .avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #14343b; background: #8bd3c7; font-weight: 700; }
.account-block strong, .account-block small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-block strong { color: #fff; font-size: 12px; }
.account-block small { margin-top: 3px; color: #9fb0ba; font-size: 10px; }
.account-block .icon-button { color: #c6d1d7; }
.workspace { min-height: 100vh; margin-left: 230px; }
.topbar { height: 60px; display: flex; align-items: center; gap: 11px; padding: 0 24px; border-bottom: 1px solid var(--line); background: #fff; }
.topbar > div { min-width: 0; flex: 1; }
.topbar strong, .topbar small { display: block; }
.topbar strong { font-size: 14px; }
.topbar small { margin-top: 2px; color: var(--teal); font-size: 10px; }
.menu-button { display: none; }
.return-button { flex: 0 0 auto; }
#content { padding: 24px; }

.page-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.page-heading small { display: block; color: var(--blue); font-size: 10px; font-weight: 700; }
.page-heading h1 { margin: 4px 0; font-size: 22px; }
.page-heading p { margin: 0; color: var(--muted); line-height: 1.6; }
.heading-actions { display: flex; gap: 8px; }
.toolbar { min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid var(--line); border-bottom: 0; background: #fff; }
.toolbar select { width: 145px; }
.toolbar label { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.toolbar input[type="checkbox"] { width: 16px; height: 16px; }
.toolbar .spacer { flex: 1; }

.data-table { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.table-head, .table-row { min-width: 740px; display: grid; grid-template-columns: minmax(250px,1.6fr) 90px 110px 150px 90px; align-items: center; gap: 12px; padding: 0 14px; }
.table-head { min-height: 38px; color: #61717c; background: #edf1f3; font-size: 10px; font-weight: 700; }
.table-row { min-height: 64px; border-top: 1px solid #e8ecee; }
.table-row:hover { background: #f7fafb; }
.table-row button { justify-self: start; }
.row-title { min-width: 0; }
.row-title strong, .row-title small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-title strong { font-size: 12px; }
.row-title small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.status { display: inline-flex; width: fit-content; padding: 3px 7px; border-radius: 3px; font-size: 10px; }
.status.pending { color: var(--blue); background: #e9f2f8; }
.status.planned { color: #526572; background: #edf1f3; }
.status.in_progress { color: var(--amber); background: var(--amber-soft); }
.status.blocked, .status.cancelled { color: var(--red); background: var(--red-soft); }
.status.completed { color: var(--teal); background: var(--teal-soft); }
.status.draft { color:#526572;background:#edf1f3; }.status.pending_review { color:var(--blue);background:#e9f2f8; }.status.returned { color:var(--red);background:var(--red-soft); }.status.approved { color:var(--teal);background:var(--teal-soft); }
.priority { font-size: 11px; }
.priority.urgent, .priority.high { color: var(--red); font-weight: 700; }
.overdue { color: var(--red); font-weight: 700; }
.empty-state { min-height: 260px; display: grid; place-items: center; align-content: center; gap: 8px; color: var(--muted); }
.empty-state svg { width: 32px; height: 32px; color: #8ba0ad; }
.empty-state strong { color: #41525d; }

.stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-bottom: 16px; }
.stat { min-height: 100px; display: grid; grid-template-columns: 1fr 36px; align-items: center; padding: 17px; border: 1px solid var(--line); border-top: 3px solid #8499a5; background: #fff; }
.stat.teal { border-top-color: var(--teal); }.stat.red { border-top-color: var(--red); }.stat.amber { border-top-color: #c68b27; }.stat.blue { border-top-color: var(--blue); }
.stat span, .stat strong { display: block; }
.stat span { color: var(--muted); font-size: 11px; }
.stat strong { margin-top: 8px; font-size: 25px; }
.stat svg { width: 28px; height: 28px; color: #81939e; }
.dashboard-note { padding: 14px; border-left: 4px solid var(--teal); color: #42545f; background: #edf6f4; line-height: 1.7; }

.user-table .table-head, .user-table .table-row { grid-template-columns: minmax(170px,1fr) minmax(150px,1fr) minmax(160px,1fr) 100px; }
.document-table .table-head, .document-table .table-row { grid-template-columns:minmax(250px,1.7fr) minmax(100px,.65fr) minmax(100px,.65fr) 90px 70px; }
.ledger-table .table-head, .ledger-table .table-row { min-width:920px;grid-template-columns:minmax(260px,1.6fr) 100px minmax(140px,.8fr) 80px 100px 60px; }
.ledger-table .row-title:first-child small { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.notification-table .table-head, .notification-table .table-row { grid-template-columns:minmax(260px,1.8fr) 90px 70px 145px 60px 55px; }
.notification-row.unread { box-shadow: inset 3px 0 var(--blue); background: #f5f9fc; }
.attachment-table .table-head, .attachment-table .table-row { grid-template-columns:minmax(230px,1.35fr) minmax(180px,1fr) 90px 140px 176px; }
.table-actions { display:flex;align-items:center;gap:2px; }
.section-heading { min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:9px; }.section-heading h3 { margin:0; }.section-heading h3 small { color:var(--muted);font-size:10px;font-weight:400; }
.attachment-list { display:grid;gap:7px; }.attachment-item { min-height:54px;display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:9px;padding:8px 10px;border:1px solid var(--line);background:#f8fafb; }.attachment-icon { width:32px;height:32px;display:grid;place-items:center;color:var(--blue);background:#e9f2f8; }.attachment-item strong,.attachment-item small { display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }.attachment-item strong { font-size:11px; }.attachment-item small { margin-top:4px;color:var(--muted);font-size:9px; }.attachment-actions { display:flex;align-items:center; }.attachment-title { min-width:0;display:flex;align-items:center;gap:6px; }.attachment-title strong { min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }.file-badge { flex:0 0 auto;display:inline-flex;align-items:center;gap:3px;padding:2px 5px;border-radius:3px;color:#3f5968;background:#e8eef1;font-size:9px;font-weight:700;line-height:1.3; }.file-badge svg { width:10px;height:10px; }.file-badge.restricted { color:#7e5715;background:var(--amber-soft); }.file-badge.current { color:var(--teal);background:var(--teal-soft); }.visually-hidden { position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important; }
.role-list { display: flex; flex-wrap: wrap; gap: 5px; }
.role-list span { padding: 3px 6px; border-radius: 3px; color: #495d69; background: #e9eef1; font-size: 9px; }

.admin-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); background: #fff; }
.admin-tab { min-width: 112px; min-height: 48px; display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; border: 0; border-bottom: 3px solid transparent; color: #53646f; background: transparent; }
.admin-tab:hover { color: var(--blue); background: #f5f8fa; }
.admin-tab.active { border-bottom-color: var(--blue); color: var(--blue); font-weight: 700; }
.admin-panel { min-height: 320px; padding-top: 18px; }
.admin-summary { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line); background: #fff; }
.admin-summary-item { min-height: 104px; display: grid; align-content: center; padding: 16px 18px; border-right: 1px solid var(--line); }
.admin-summary-item:last-child { border-right: 0; }
.admin-summary-item span, .admin-summary-item small { color: var(--muted); }
.admin-summary-item strong { margin: 6px 0 4px; font-size: 24px; font-variant-numeric: tabular-nums; }
.admin-summary-item small { font-size: 10px; }
.admin-overview-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 24px; margin-top: 24px; }
.admin-overview-grid section { border-top: 2px solid #8297a3; padding-top: 12px; }
.admin-overview-grid h3, .admin-section-heading h3 { margin: 0; font-size: 14px; }
.admin-details { margin: 10px 0 0; border-top: 1px solid var(--line); }
.admin-details > div { min-height: 44px; display: grid; grid-template-columns: 110px minmax(0,1fr); align-items: center; border-bottom: 1px solid var(--line); }
.admin-details dt { color: var(--muted); }
.admin-details dd { margin: 0; font-weight: 600; }
.admin-quick-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.admin-quick-actions button { justify-content: flex-start; }
.admin-section-heading { min-height: 58px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 12px; }
.admin-section-heading.divided { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.admin-section-heading p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.admin-department-table .table-head, .admin-department-table .table-row { grid-template-columns:minmax(180px,1.2fr) minmax(120px,.8fr) minmax(150px,1fr) 80px 60px; }
.admin-user-table .table-head, .admin-user-table .table-row { min-width:900px; grid-template-columns:minmax(170px,1fr) minmax(130px,.8fr) minmax(180px,1.1fr) 150px 70px 55px; }
.admin-role-table .table-head, .admin-role-table .table-row { grid-template-columns:minmax(170px,1fr) 90px 80px minmax(180px,1.2fr) 60px; }
.admin-audit-table .table-head, .admin-audit-table .table-row { min-width:880px; grid-template-columns:155px minmax(140px,.8fr) minmax(150px,.9fr) 70px minmax(220px,1.4fr); }
.admin-audit-table .table-row > span:last-child, .admin-role-table .table-row > span:nth-child(4) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-filter label { width: min(340px,100%); display: flex; flex-direction: row; }
.admin-filter input { width: 220px; }
.system-status-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; border-top: 1px solid var(--line); background: #fff; }
.system-status-list > div { min-height: 84px; display: grid; grid-template-columns: minmax(100px,.8fr) minmax(140px,1.2fr); align-content: center; gap: 6px 16px; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.system-status-list > div:nth-child(even) { border-right: 0; }
.system-status-list dt { color: var(--muted); }
.system-status-list dd { margin: 0; font-weight: 700; }
.system-status-list small { grid-column: 2; color: var(--muted); font-size: 10px; }

dialog { width: min(650px, calc(100vw - 28px)); max-height: calc(100vh - 30px); padding: 0; border: 1px solid #bac5cc; border-radius: 6px; color: var(--ink); background: #fff; box-shadow: 0 18px 55px rgba(22, 34, 42, .25); }
dialog::backdrop { background: rgba(24, 34, 40, .46); }
dialog form { display: grid; gap: 14px; }
dialog header { min-height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid var(--line); }
dialog header small { color: var(--blue); font-size: 10px; }
dialog header h2 { margin: 3px 0 0; font-size: 17px; }
dialog form > label, dialog .form-grid, dialog .form-error { margin-inline: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
fieldset { margin: 0 18px; padding: 11px 12px; border: 1px solid var(--line); }
fieldset legend { padding: 0 5px; color: #465663; font-size: 11px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.choice-grid label { display: flex; align-items: center; gap: 7px; color: #465663; font-size: 11px; }
.choice-grid input { width: 16px; height: 16px; }
dialog footer { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 18px; border-top: 1px solid var(--line); }
dialog footer button { padding-inline: 14px; }
.detail-dialog { width: min(820px, calc(100vw - 28px)); }
.attachment-dialog { width:min(720px,calc(100vw - 28px)); }
.admin-dialog { width:min(760px,calc(100vw - 28px)); }
.admin-dialog-body { display:grid;gap:14px;padding:16px 18px 2px; }
.admin-dialog-body fieldset { margin:0; }
.form-note { margin:0;padding:10px 12px;color:#52636e;background:#f1f4f6;font-size:11px;line-height:1.6; }
.permission-grid { max-height:310px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;overflow:auto;padding:2px; }
.permission-grid label { min-height:46px;display:grid;grid-template-columns:16px minmax(0,1fr);align-items:start;gap:8px;padding:8px;border:1px solid var(--line);background:#fff; }
.permission-grid input { width:16px;height:16px;margin-top:2px; }
.permission-grid strong,.permission-grid small { display:block; }
.permission-grid strong { font-size:11px; }.permission-grid small { margin-top:3px;color:var(--muted);font-size:9px; }
.version-list { max-height:300px;display:grid;overflow:auto;padding:14px 18px; }
.version-row { min-height:64px;display:grid;grid-template-columns:minmax(0,1fr) 34px;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid #e8ecee; }
.version-row:first-child { padding-top:0; }.version-row:last-child { padding-bottom:0;border-bottom:0; }
.version-row small { display:block;margin-top:4px;color:var(--muted);font-size:10px; }.version-row p { margin:6px 0 0;color:#465663;font-size:11px;line-height:1.55; }
.dialog-section { display:grid;gap:12px;padding:14px 18px;border-top:1px solid var(--line);background:#f8fafb; }.dialog-section h3 { margin:0;font-size:13px; }.dialog-section label { display:grid;gap:6px;color:#465663;font-size:11px; }
.scope-options .choice-grid label { align-items:flex-start; }.scope-options label > span { display:grid;gap:3px; }.scope-options label strong,.scope-options label small { display:block; }.scope-options label small { color:var(--muted);font-size:9px;line-height:1.45; }
.access-choice-groups { display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 18px; }.access-choice-groups fieldset { margin:0;min-width:0; }.scroll-choices { max-height:180px;overflow:auto;align-content:start;padding:2px; }.choice-empty { color:var(--muted);font-size:10px; }
.assignment-selectors { display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 18px; }.assignment-selectors fieldset { min-width:0;margin:0; }.option-line { display:flex!important;align-items:center;gap:8px; }.option-line input { width:16px;height:16px;flex:0 0 auto; }
.detail-body { max-height: calc(100vh - 150px); overflow: auto; padding: 18px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 8px 0 18px; color: var(--muted); font-size: 11px; }
.detail-description { padding: 14px; border: 1px solid var(--line); background: #f8fafb; line-height: 1.8; white-space: pre-wrap; }
.document-content { min-height:180px;padding:22px;border:1px solid var(--line);background:#fff;line-height:1.9;white-space:pre-wrap;word-break:break-word; }
.detail-section { margin-top: 20px; }
.detail-section h3 { margin: 0 0 9px; font-size: 13px; }
.assignment-list, .timeline { display: grid; gap: 7px; }
.assignment-item, .timeline-item { padding: 10px 12px; border-left: 3px solid #7896a8; background: #f1f4f6; }
.timeline-item strong, .timeline-item span { display: block; }
.timeline-item span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.inline-form { display: grid; grid-template-columns: 120px minmax(160px,1fr) auto; gap: 8px; margin-top: 9px; }
.inline-form button { padding-inline: 12px; }
.document-action-form { display:grid;grid-template-columns:minmax(150px,.7fr) minmax(180px,1fr) auto;align-items:end;gap:9px;margin-top:12px;padding:12px;border:1px solid var(--line);background:#f8fafb; }.document-action-form label,#reviewDocumentForm label { display:grid;gap:6px;color:#465663;font-size:11px; }.document-action-form button { padding-inline:14px; }
.danger { color: var(--red); }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 100; max-width: 360px; padding: 11px 15px; border-radius: 4px; color: #fff; background: #26343d; box-shadow: 0 8px 24px rgba(0,0,0,.2); opacity: 0; transform: translateY(10px); transition: .2s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .sidebar { transform: translateX(-100%); transition: transform .2s; }
  .sidebar.open { transform: translateX(0); box-shadow: 12px 0 36px rgba(0,0,0,.24); }
  .workspace { margin-left: 0; }
  .menu-button { display: grid; }
  #content { padding: 18px 14px; }
  .admin-summary { grid-template-columns: repeat(2,1fr); }
  .admin-summary-item:nth-child(2) { border-right:0; }
  .admin-summary-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .admin-overview-grid { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
  .page-heading { flex-direction: column; }
  .heading-actions { width: 100%; }.heading-actions button { flex: 1; }
  .toolbar { align-items: stretch; flex-direction: column; }.toolbar select { width: 100%; }.toolbar .spacer { display: none; }
  .data-table { overflow-x: auto; }
  .stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { min-height: 82px; padding: 12px; }.stat svg { display: none; }
  .form-grid, .inline-form, .document-action-form { grid-template-columns: 1fr; }
  .attachment-item { grid-template-columns:32px minmax(0,1fr); }.attachment-actions { grid-column:2;flex-wrap:wrap; }
  .access-choice-groups, .assignment-selectors { grid-template-columns:1fr; }.scope-options .choice-grid { grid-template-columns:1fr; }
  .topbar { padding-inline:12px; }.return-button { width:34px;padding:0; }.return-button span { display:none; }
  .admin-section-heading { align-items:stretch;flex-direction:column; }.admin-section-heading button { width:100%; }
  .admin-summary-item { min-height:88px;padding:12px; }.admin-summary-item strong { font-size:21px; }
  .admin-quick-actions, .system-status-list, .permission-grid { grid-template-columns:1fr; }
  .system-status-list > div { border-right:0; }
  .admin-filter label { width:100%;align-items:stretch;flex-direction:column; }.admin-filter input { width:100%; }
}
