:root {
  color-scheme: light;
  --bg: #f5f2eb;
  --surface: #ffffff;
  --surface-muted: #f0eee8;
  --ink: #131834;
  --ink-soft: #646779;
  --line: #dedbd3;
  --line-strong: #b9b7b0;
  --brand: #131834;
  --brand-hover: #1e233e;
  --brand-soft: #e9e9ee;
  --green: #26734d;
  --green-dark: #185c3a;
  --green-soft: #e4f1e8;
  --blue: #2667a8;
  --blue-soft: #e5eef8;
  --amber: #a9680c;
  --amber-soft: #fff0d6;
  --red: #ae3030;
  --red-soft: #fbe5e4;
  --shadow: 0 8px 28px rgba(19, 24, 52, .1);
  --sidebar: 238px;
  --radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { min-height: 100%; }
body { margin: 0; color: var(--ink); background: var(--bg); font-size: 14px; letter-spacing: 0; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
button:disabled, .disabled { cursor: not-allowed; opacity: .55; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 21px; line-height: 1.25; }
h2 { margin-bottom: 4px; font-size: 16px; line-height: 1.35; }
h3 { margin-bottom: 3px; font-size: 14px; }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.eyebrow { margin-bottom: 3px; color: var(--brand); font-size: 10px; font-weight: 800; letter-spacing: .12em; }

.button {
  min-height: 38px; border: 1px solid transparent; border-radius: var(--radius); padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.button:active { transform: translateY(1px); }
.button.primary { color: #fff; background: var(--brand); border-color: var(--brand); }
.button.primary:hover { background: var(--brand-hover); }
.button.secondary { color: var(--ink); background: var(--surface); border-color: var(--line-strong); }
.button.secondary:hover { background: var(--surface-muted); }
.button.danger { color: var(--red); border-color: var(--red); background: var(--surface); }
.button.ghost { border-color: transparent; }
.button.small { min-height: 32px; padding: 0 10px; font-size: 12px; }
.icon-button { width: 38px; height: 38px; padding: 0; border: 0; border-radius: var(--radius); display: inline-grid; place-items: center; color: var(--ink-soft); background: transparent; }
.icon-button:hover { color: var(--ink); background: var(--surface-muted); }
.text-button { padding: 0; border: 0; color: var(--brand); background: none; font-weight: 700; font-size: 12px; }

input, select, textarea {
  width: 100%; min-height: 38px; border: 1px solid var(--line-strong); border-radius: 4px; padding: 8px 10px;
  color: var(--ink); background: var(--surface); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19, 24, 52, .12); }
label > span:first-child, .field > span:first-child { display: block; margin-bottom: 6px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.form-error { min-height: 18px; margin: 8px 0 0; color: var(--red); font-size: 12px; }
.alert { border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 12px; margin-bottom: 15px; }
.alert.error { color: var(--red); border-color: #edc2c0; background: var(--red-soft); }
.alert.success { color: var(--green-dark); border-color: #b8d9c6; background: var(--green-soft); }
.alert small { display: block; margin-top: 5px; overflow-wrap: anywhere; }

/* Login */
.login-body { background: var(--bg); }
.login-shell { min-height: 100vh; display: grid; place-items: center; }
.login-panel { width: min(380px, calc(100% - 40px)); padding: 36px 0; }
.login-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.corporate-logo { position: relative; display: block; overflow: hidden; flex: 0 0 auto; }
.corporate-logo img { max-width: none; position: absolute; }
.corporate-logo-login { width: 250px; height: 29px; }
.corporate-logo-login img { width: 345px; height: auto; left: -36px; top: -60px; }
.product-name { color: var(--ink); font-size: 14px; font-weight: 800; }
.login-heading { margin: 44px 0 22px; }
.login-heading h1 { font-size: 24px; line-height: 1.35; }
.google-button { width: 100%; color: var(--ink); border-color: var(--line-strong); background: var(--surface); }
.google-button:hover { background: #faf9f6; }
.google-g { color: #4285f4; font: 800 18px Arial, sans-serif; }
.login-separator { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--ink-soft); font-size: 11px; }
.login-separator::before, .login-separator::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.login-form { display: grid; gap: 14px; }
.login-form .button { margin-top: 4px; }
.login-aside { display: none; }

/* Shell */
.app-shell { min-height: 100vh; }
.sidebar { width: var(--sidebar); position: fixed; inset: 0 auto 0 0; z-index: 30; display: flex; flex-direction: column; border-right: 1px solid #292e4a; color: #fff; background: #131834; }
.sidebar-brand { height: 72px; padding: 0 19px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; border-bottom: 1px solid #dedbd3; color: var(--ink); background: #f5f2eb; }
.corporate-logo-sidebar { width: 190px; height: 22px; }
.corporate-logo-sidebar img { width: 262px; height: auto; left: -27px; top: -46px; }
.sidebar-product-name { font-size: 10px; font-weight: 800; }
.main-nav { flex: 1; overflow-y: auto; padding: 14px 10px; }
.nav-item { width: 100%; height: 42px; border: 0; border-radius: 5px; padding: 0 11px; display: flex; align-items: center; gap: 11px; color: #b8bac7; background: transparent; text-align: left; }
.nav-item:hover { color: #fff; background: #1e233e; }
.nav-item.active { color: var(--ink); background: #f5f2eb; }
.nav-label { padding: 22px 11px 7px; color: #858899; font-size: 10px; font-weight: 800; }
.sidebar-user { min-height: 72px; padding: 12px 10px 12px 14px; display: grid; grid-template-columns: 34px minmax(0, 1fr) 38px; align-items: center; gap: 8px; border-top: 1px solid #2f344f; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: #f5f2eb; font-weight: 800; }
.sidebar-user strong, .sidebar-user small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-user strong { font-size: 12px; }.sidebar-user small { margin-top: 2px; color: #999cab; font-size: 9px; }
.sidebar-user .icon-button { color: #aaacb8; }
.workspace { min-height: 100vh; margin-left: var(--sidebar); padding: 0 28px 48px; }
.topbar { min-height: 72px; position: sticky; top: 0; z-index: 20; margin: 0 -28px 24px; padding: 11px 28px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); background: rgba(245, 242, 235, .96); }
.topbar-actions { margin-left: auto; display: flex; align-items: end; gap: 10px; }
.period-control { display: flex; align-items: center; gap: 8px; }
.period-control > span { margin: 0; white-space: nowrap; font-size: 11px; }.period-control select { min-width: 126px; }
.mobile-menu { display: none; }
.sidebar-backdrop { display: none; }
.view { display: none; max-width: 1500px; margin: 0 auto; }
.view.active { display: block; }
.loading-line { height: 2px; position: fixed; top: 71px; left: var(--sidebar); right: 0; z-index: 50; overflow: hidden; }
.loading-line.active::after { content: ""; width: 35%; height: 100%; position: absolute; left: -35%; background: var(--brand); animation: loading 1s infinite ease-in-out; }
@keyframes loading { to { left: 100%; } }

.section-heading { min-height: 37px; margin-bottom: 12px; display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.metric { min-height: 112px; border: 1px solid var(--line); border-top: 3px solid var(--ink-soft); border-radius: var(--radius); padding: 16px; background: var(--surface); }
.metric.accent { border-top-color: var(--brand); }.metric.warning { border-top-color: var(--amber); }.metric.neutral { border-top-color: var(--blue); }
.metric > span { display: block; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.metric strong { display: block; margin-top: 11px; font-size: 24px; line-height: 1.1; font-variant-numeric: tabular-nums; }
.metric small { display: block; margin-top: 7px; color: var(--ink-soft); }
.dashboard-band { margin-top: 24px; }
.two-column { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 26px; }
.data-section { margin-top: 26px; }
.dashboard-band > .data-section { margin-top: 0; }
.forecast-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.forecast-item { min-width: 0; padding: 14px; border-right: 1px solid var(--line); }.forecast-item:last-child { border-right: 0; }
.forecast-item span { display: block; color: var(--ink-soft); font-size: 11px; }.forecast-item strong { display: block; margin-top: 8px; font-size: 17px; }.forecast-item small { display: block; margin-top: 5px; color: var(--brand); }
.target-progress { min-height: 154px; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: var(--surface); }
.progress-scale { padding-top: 8px; }
.target-meter { width: 100%; height: 10px; overflow: hidden; display: block; appearance: none; -webkit-appearance: none; border: 1px solid var(--line-strong); border-radius: 5px; background: var(--surface); }
.target-meter::-webkit-progress-bar { border-radius: 4px; background: var(--surface); }
.target-meter::-webkit-progress-value { border-radius: 4px; background: var(--green); transition: width .3s ease; }
.target-meter::-moz-progress-bar { border-radius: 4px; background: var(--green); transition: width .3s ease; }
.progress-axis { height: 25px; position: relative; margin-top: 8px; color: var(--ink-soft); font-size: 9px; font-variant-numeric: tabular-nums; }
.progress-axis span { position: absolute; white-space: nowrap; }.progress-axis span:first-child { left: 0; }.progress-axis span:nth-child(2) { left: 50%; transform: translateX(-50%); }.progress-axis span:last-child { right: 0; }
.target-header { margin-bottom: 11px; display: flex; justify-content: space-between; align-items: baseline; }.target-header strong { font-size: 19px; }.target-header span { color: var(--ink-soft); font-size: 11px; }
.target-breakdown { margin: 2px 0 10px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); }
.target-breakdown span { min-width: 0; padding: 6px 8px; border-right: 1px solid var(--line); color: var(--ink-soft); font-size: 9px; }.target-breakdown span:last-child { border-right: 0; }.target-breakdown b { display: block; margin-top: 2px; overflow: hidden; color: var(--ink); text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.milestones { margin-top: 7px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.milestones span { min-width: 0; padding: 7px 8px; border: 1px solid var(--line-strong); border-radius: 4px; color: var(--ink-soft); background: transparent; font-size: 9px; }
.milestones b, .milestones small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.milestones small { margin-top: 3px; font-size: 9px; }
.milestones span.reached { color: var(--green-dark); border-color: var(--green); background: var(--green-soft); }
.comparison-pills { display: flex; gap: 7px; }.comparison-pill { border: 1px solid var(--line); border-radius: 4px; padding: 5px 8px; background: var(--surface); font-size: 10px; }.comparison-pill b.positive { color: var(--green); }.comparison-pill b.negative { color: var(--red); }
.monthly-chart { height: 228px; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px 12px; display: flex; align-items: stretch; gap: 14px; background: var(--surface); }
.month-column { min-width: 0; flex: 1; display: grid; grid-template-rows: 18px 1fr 18px; text-align: center; }.month-column > span { overflow: hidden; color: var(--ink-soft); font-size: 9px; white-space: nowrap; }.bar-space { display: flex; align-items: end; justify-content: center; }.bar { width: min(46px, 68%); min-height: 2px; position: relative; background: var(--brand); }.bar::after { content: ""; width: 100%; height: var(--gross-height, 0%); position: absolute; left: 0; bottom: 0; background: #c9a33c; }

.filter-bar { margin-bottom: 12px; padding: 10px; display: grid; grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(120px, .8fr)) minmax(105px, .65fr) auto; gap: 8px; border: 1px solid var(--line); background: var(--surface); }
.filter-bar.narrow { grid-template-columns: 180px 180px auto; justify-content: start; }
.search-field { position: relative; }.search-field .icon { position: absolute; left: 10px; top: 10px; color: var(--ink-soft); }.search-field input { padding-left: 36px; }
.list-toolbar { min-height: 42px; display: flex; align-items: center; justify-content: space-between; }.list-toolbar p { margin: 0; font-weight: 700; }.list-toolbar label { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 11px; }.list-toolbar select { width: 74px; }
.table-wrap { width: 100%; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; }
th, td { min-height: 42px; border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: middle; white-space: nowrap; }
th { position: sticky; top: 0; z-index: 2; color: var(--ink-soft); background: #f8f6f1; font-size: 10px; font-weight: 800; }
td { font-size: 12px; } tbody tr:last-child td { border-bottom: 0; } tbody tr.clickable:hover { background: #faf8f2; cursor: pointer; }
td.number, th.number { text-align: right; font-variant-numeric: tabular-nums; }
.compact { max-height: 320px; }.compact td, .compact th { padding: 8px 10px; }
.work-grid { max-height: calc(100vh - 255px); }.work-grid table { min-width: 1180px; }
.statistics-heading { align-items: center; }
.statistics-grid { max-height: calc(100vh - 150px); }
.statistics-grid table { min-width: 2340px; }
.statistics-grid thead tr:first-child th { height: 36px; top: 0; text-align: center; border-right: 1px solid var(--line); }
.statistics-grid thead tr:nth-child(2) th { height: 36px; top: 36px; }
.statistics-grid thead tr:first-child th[rowspan] { text-align: left; }
.statistics-grid th:first-child, .statistics-grid td:first-child { position: sticky; left: 0; }
.statistics-grid th:first-child { z-index: 4; }
.statistics-grid td:first-child { z-index: 1; background: var(--surface); }
.statistics-employee strong, .statistics-employee small { display: block; }.statistics-employee small { margin-top: 3px; color: var(--ink-soft); font-size: 9px; }
.statistics-rate { font-weight: 800; font-variant-numeric: tabular-nums; }.statistics-rate.reached, .remaining-reached { color: var(--green-dark); font-weight: 800; }
.not-configured { color: var(--ink-soft); }
.statistics-grid tfoot td { position: sticky; bottom: 0; z-index: 2; border-top: 2px solid var(--line-strong); border-bottom: 0; background: #f0eee8; font-weight: 800; }
.statistics-grid tfoot td:first-child { z-index: 3; background: #f0eee8; }
.empty-cell { height: 110px; color: var(--ink-soft); text-align: center; }
.badge { display: inline-flex; min-height: 23px; align-items: center; border-radius: 12px; padding: 2px 8px; color: var(--ink-soft); background: var(--surface-muted); font-size: 10px; font-weight: 800; }
.badge.yomi-0, .badge.active { color: var(--green-dark); background: var(--green-soft); }.badge.yomi-1 { color: var(--blue); background: var(--blue-soft); }.badge.yomi-2, .badge.yomi-3 { color: var(--amber); background: var(--amber-soft); }.badge.yomi-4, .badge.inactive { color: var(--red); background: var(--red-soft); }
.pagination { height: 52px; display: flex; justify-content: center; align-items: center; gap: 10px; }.pagination span { min-width: 70px; text-align: center; font-size: 11px; }

/* Dialogs */
dialog { border: 0; padding: 0; color: var(--ink); background: var(--surface); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(19, 24, 52, .48); }
.drawer-dialog { width: min(780px, 94vw); height: 100vh; max-height: none; margin: 0 0 0 auto; }
.drawer-shell { height: 100%; display: grid; grid-template-rows: 68px minmax(0, 1fr) 68px; }
.drawer-shell > header, .modal-dialog header { padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-content { overflow-y: auto; padding: 20px; }
.drawer-shell > footer, .modal-dialog footer { padding: 12px 20px; display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--line); }.drawer-shell > footer span { flex: 1; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }.field.full { grid-column: 1 / -1; }
.segmented { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line-strong); border-radius: 4px; overflow: hidden; }.segmented label { min-width: 0; }.segmented input { position: absolute; opacity: 0; pointer-events: none; }.segmented span { height: 38px; display: grid; place-items: center; border-right: 1px solid var(--line); background: var(--surface); font-size: 11px; font-weight: 700; }.segmented label:last-child span { border-right: 0; }.segmented input:checked + span { color: #fff; background: var(--brand); }
.toggle-field { display: flex; flex-direction: column; }.toggle { min-height: 38px; display: flex; align-items: center; gap: 8px; }.toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }.toggle i { width: 36px; height: 20px; position: relative; border-radius: 10px; background: #b9b7b0; }.toggle i::after { content: ""; width: 16px; height: 16px; position: absolute; left: 2px; top: 2px; border-radius: 50%; background: #fff; transition: left .15s ease; }.toggle input:checked + i { background: var(--brand); }.toggle input:checked + i::after { left: 18px; }.toggle b { font-size: 11px; }
.cost-section { margin-top: 26px; padding-top: 19px; border-top: 1px solid var(--line); }.cost-list { display: grid; gap: 8px; }
.cost-row { padding: 10px; display: grid; grid-template-columns: minmax(150px, 1.5fr) minmax(110px, .7fr) minmax(130px, 1fr) 38px; gap: 8px; align-items: end; border: 1px solid var(--line); border-radius: var(--radius); background: #faf9f6; }.cost-row .field span { font-size: 10px; }
.work-totals { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }.work-totals span { padding: 12px; border-right: 1px solid var(--line); color: var(--ink-soft); font-size: 10px; }.work-totals span:last-child { border-right: 0; }.work-totals strong { display: block; margin-top: 5px; color: var(--ink); font-size: 17px; }.work-totals .gross { background: var(--green-soft); }
.combobox { position: relative; }.combo-options { width: 100%; max-height: 210px; position: absolute; z-index: 50; top: calc(100% + 3px); overflow-y: auto; border: 1px solid var(--line-strong); border-radius: 4px; background: var(--surface); box-shadow: var(--shadow); }.combo-option { width: 100%; min-height: 35px; padding: 7px 9px; border: 0; display: block; background: var(--surface); text-align: left; }.combo-option:hover, .combo-option[aria-selected="true"] { background: var(--brand-soft); }.combo-empty { padding: 9px; color: var(--ink-soft); font-size: 11px; }
.modal-dialog { width: min(500px, 92vw); border-radius: var(--radius); }.modal-dialog form { display: grid; grid-template-rows: 62px auto 34px 64px; }.modal-content { padding: 18px 20px; display: grid; gap: 13px; }.modal-dialog .form-error { padding: 0 20px; }.modal-dialog footer { justify-content: end; }
.role-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }.role-options .toggle { min-height: 42px; padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); }
.toast-region { position: fixed; z-index: 100; right: 20px; bottom: 20px; display: grid; gap: 8px; }.toast { min-width: 240px; max-width: 380px; padding: 12px 14px; border: 1px solid #aad2ba; border-radius: var(--radius); color: var(--green-dark); background: var(--green-soft); box-shadow: var(--shadow); }.toast.error { color: var(--red); border-color: #edc2c0; background: var(--red-soft); }
.audit-change { max-width: 500px; white-space: normal; overflow-wrap: anywhere; color: var(--ink-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }

@media (max-width: 1180px) {
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-bar { grid-template-columns: repeat(3, minmax(0, 1fr)); }.search-field { grid-column: span 2; }
  .two-column { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .login-heading h1 { font-size: 24px; }
  .sidebar { transform: translateX(-100%); transition: transform .2s ease; }.sidebar.open { transform: translateX(0); }.sidebar-backdrop.open { display: block; position: fixed; inset: 0; z-index: 25; background: rgba(19, 24, 52, .42); }
  .workspace { margin-left: 0; padding: 0 14px 36px; }.topbar { min-height: 66px; margin: 0 -14px 18px; padding: 9px 14px; flex-wrap: wrap; }.mobile-menu { display: inline-grid; }.topbar h1 { font-size: 17px; }.topbar-actions { width: 100%; margin-left: 0; }.period-control { flex: 1; }.period-control select { min-width: 0; }.topbar-actions .button { flex: 0 0 auto; }.loading-line { top: 65px; left: 0; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 7px; }.metric { min-height: 100px; padding: 12px; }.metric strong { font-size: 18px; }
  .forecast-grid { grid-template-columns: 1fr 1fr; }.forecast-item:nth-child(2) { border-right: 0; }.forecast-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .milestones { grid-template-columns: 1fr 1fr; }
  .monthly-chart { height: 200px; gap: 5px; padding-left: 8px; padding-right: 8px; }.month-column > span { font-size: 8px; }
  .filter-bar, .filter-bar.narrow { grid-template-columns: 1fr 1fr; }.search-field { grid-column: 1 / -1; }.filter-bar .button { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }.field.full { grid-column: auto; }.cost-row { grid-template-columns: 1fr 1fr; }.cost-row > :first-child { grid-column: 1 / -1; }.cost-row .icon-button { justify-self: end; }.work-totals { grid-template-columns: 1fr; }.work-totals span { border-right: 0; border-bottom: 1px solid var(--line); }.work-totals span:last-child { border-bottom: 0; }
  .drawer-shell > footer { padding: 10px; }.drawer-shell > footer .button { padding: 0 10px; }.drawer-shell > footer .danger { width: 38px; font-size: 0; }
}

@media (max-width: 430px) {
  .metric-grid { grid-template-columns: 1fr; }.topbar-actions .button { width: 42px; padding: 0; font-size: 0; }.topbar-actions .button .icon { margin: 0; }.comparison-pills { display: none; }.role-options { grid-template-columns: 1fr; }
}
