:root {
  --bg: #eef3f1;
  --surface: #ffffff;
  --text: #17211f;
  --muted: #65746f;
  --line: #dfe9e5;
  --brand: #123a35;
  --accent: #0f7b6c;
  --accent-soft: #e2f2ed;
  --blue: #3b6db1;
  --amber: #a96b00;
  --red: #b94628;
  --green: #197a49;
  --shadow: 0 18px 48px rgba(28, 53, 47, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 224px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: 22px;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.brand,
.operator-card,
.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
}

.avatar.big {
  width: 64px;
  height: 64px;
  background: #dcefe8;
  color: var(--accent);
  font-size: 22px;
}

.brand strong,
.operator-card strong,
.operator-card span {
  display: block;
}

.operator-card span,
.profile-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.nav-list {
  display: grid;
  gap: 6px;
}

.nav-item {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #38514a;
  text-align: left;
  font-weight: 700;
}

.nav-item.active,
.nav-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-item[hidden],
.admin-only[hidden] {
  display: none;
}

.operator-card {
  margin-top: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.operator-card .avatar {
  width: 40px;
  height: 40px;
  background: #dcefe8;
  color: var(--accent);
}

.main-frame {
  width: 100%;
  min-width: 0;
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 32px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.date-text {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  font-size: 30px;
  letter-spacing: 0;
}

.topbar-actions,
.code-line,
.card-actions,
.button-row,
.chip-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 10px;
  background: #edf4f1;
  color: #47625b;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.badge.ok {
  background: #e4f5ec;
  color: var(--green);
}

.badge.danger {
  background: #ffede7;
  color: var(--red);
}

.badge.warn {
  background: #fff4d8;
  color: var(--amber);
}

.badge.info {
  background: #e8f0ff;
  color: var(--blue);
}

.primary-action,
.danger-action,
.mini-action,
.secondary-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 800;
}

.primary-action {
  background: var(--accent);
  color: #ffffff;
}

.danger-action {
  background: #fff0eb;
  color: var(--red);
}

.secondary-action,
.mini-action {
  background: #eef4f2;
  color: #35534c;
}

.mini-action {
  min-height: 34px;
  font-size: 13px;
}

.wide {
  width: 100%;
}

.view {
  display: none;
  min-width: 0;
}

.view.active {
  display: block;
}

.toast {
  position: sticky;
  top: 16px;
  z-index: 10;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
}

.hero-band h2 {
  font-size: 34px;
}

.hero-status {
  min-width: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-status span,
.hero-status strong {
  display: block;
}

.hero-status strong {
  margin-top: 6px;
  font-size: 32px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric-grid.compact {
  margin-top: 0;
}

.metric-card {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid #b9cac4;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card span,
.metric-card strong,
.metric-card small {
  display: block;
}

.metric-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.metric-card strong {
  margin-top: 10px;
  font-size: 34px;
}

.metric-card small {
  margin-top: -4px;
  color: var(--muted);
}

.metric-card.ok {
  border-left-color: var(--green);
}

.metric-card.warn {
  border-left-color: #d7a528;
}

.metric-card.info {
  border-left-color: var(--blue);
}

.metric-card.danger {
  border-left-color: var(--red);
}

.content-grid,
.admin-grid,
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 18px;
}

.panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-head,
.page-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h3,
.page-section-head h3 {
  font-size: 20px;
}

.section-head p,
.page-section-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.timeline-list,
.compact-list,
.notice-list,
.booking-list,
.report-bars,
.permission-grid,
.profile-meta {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 62px 14px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
}

.timeline-row + .timeline-row,
.list-row + .list-row,
.approval-card + .approval-card {
  border-top: 1px solid #edf3f1;
}

.timeline-row time {
  font-weight: 800;
}

.timeline-row time span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-row p,
.list-row p,
.notice-list p,
.approval-card p,
.instrument-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.list-row,
.notice-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.filter-panel {
  display: grid;
  gap: 14px;
}

.search-box,
.form-panel label {
  display: grid;
  gap: 8px;
  color: #38514a;
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfdfc;
  color: var(--text);
}

.form-panel textarea {
  min-height: 92px;
  padding-top: 10px;
  resize: vertical;
}

.chip,
.permission-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #eef4f2;
  color: #47625b;
  font-size: 13px;
  font-weight: 800;
}

.chip.active {
  background: var(--accent);
  color: #ffffff;
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.instrument-card {
  padding: 18px;
}

.asset-code,
.date-tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.instrument-card h3 {
  margin-top: 9px;
  font-size: 19px;
}

.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.tag {
  border-radius: 999px;
  padding: 5px 8px;
  background: #f2f6f4;
  color: #48625c;
  font-size: 12px;
  font-weight: 700;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.spec-cell {
  padding: 10px;
  border-radius: 8px;
  background: #f6faf8;
}

.spec-cell span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.spec-cell strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.usage-row,
.report-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.usage-track,
.report-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf3f1;
}

.usage-fill,
.report-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.card-actions {
  justify-content: flex-end;
  margin-top: 16px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf3f1;
}

.check-row span {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid #b8c8c2;
  border-radius: 5px;
}

.check-row.done span {
  border-color: var(--accent);
  background: var(--accent);
}

.cost-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
}

.cost-box span,
.cost-box strong {
  display: block;
}

.cost-box strong {
  margin-top: 6px;
  font-size: 28px;
}

.schedule-panel {
  grid-column: 1 / -1;
}

.schedule-board-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.schedule-title-block {
  min-width: 0;
  text-align: center;
}

.schedule-title-block h3 {
  font-size: 22px;
}

.schedule-title-block p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.week-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button {
  width: 38px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}

.schedule-toolbar,
.schedule-legend,
.schedule-day-head,
.schedule-day-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-toolbar {
  justify-content: space-between;
  margin: 16px 0;
}

.schedule-legend,
.schedule-day-stat,
.schedule-window {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.schedule-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd9d5;
}

.legend-dot.free {
  background: var(--green);
}

.legend-dot.busy {
  background: var(--amber);
}

.legend-dot.selected {
  background: var(--accent);
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.week-calendar {
  max-height: 620px;
  overflow: auto;
  border: 1px solid #d9e5e1;
  border-radius: 8px;
  background: #ffffff;
}

.week-calendar-grid {
  --calendar-slot-height: 22px;
  position: relative;
  display: grid;
  min-width: 860px;
  grid-template-columns: 64px repeat(7, minmax(108px, 1fr));
}

.calendar-corner,
.calendar-day-header {
  position: sticky;
  top: 0;
  z-index: 6;
  border-bottom: 1px solid #d9e5e1;
  background: #ffffff;
}

.calendar-corner {
  left: 0;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  border-right: 1px solid #d9e5e1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calendar-day-header {
  display: grid;
  grid-row: 1;
  place-items: center;
  border: 0;
  border-left: 1px solid #e2eee9;
  color: var(--text);
  text-align: center;
}

.calendar-day-header strong,
.calendar-day-header span {
  display: block;
}

.calendar-day-header strong {
  font-size: 13px;
}

.calendar-day-header span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.calendar-day-header.selected {
  background: #e8f6ef;
  color: var(--accent);
}

.calendar-time-axis {
  position: sticky;
  left: 0;
  z-index: 4;
  grid-column: 1;
  grid-row: 2 / -1;
  background: #ffffff;
  border-right: 1px solid #d9e5e1;
}

.time-tick {
  position: absolute;
  top: calc(var(--slot-index) * var(--calendar-slot-height));
  left: 0;
  width: 100%;
  height: var(--calendar-slot-height);
  padding-right: 6px;
  border-bottom: 1px solid #ecf4f0;
  color: #4f625d;
  font-size: 11px;
  line-height: var(--calendar-slot-height);
  text-align: right;
  white-space: nowrap;
}

.calendar-day-column {
  position: relative;
  grid-row: 2 / -1;
  min-height: calc(var(--slot-count) * var(--calendar-slot-height));
  border-left: 1px solid #e2eee9;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) calc(var(--calendar-slot-height) - 1px),
      rgba(160, 214, 177, 0.32) calc(var(--calendar-slot-height) - 1px),
      rgba(160, 214, 177, 0.32) var(--calendar-slot-height)
    ),
    #dcf5d9;
}

.calendar-day-column.selected {
  box-shadow: inset 0 0 0 2px rgba(15, 123, 108, 0.25);
}

.calendar-free-slot,
.calendar-booking {
  position: absolute;
  top: calc(var(--slot-top) * var(--calendar-slot-height));
  height: calc(var(--slot-span) * var(--calendar-slot-height));
  border-radius: 4px;
}

.calendar-free-slot {
  left: 0;
  z-index: 1;
  width: 100%;
  border: 0;
  background: transparent;
}

.calendar-free-slot:hover,
.calendar-free-slot:focus-visible {
  outline: 2px solid rgba(25, 122, 73, 0.38);
  outline-offset: -2px;
  background: rgba(255, 255, 255, 0.18);
}

.calendar-booking {
  left: 6px;
  right: 6px;
  z-index: 3;
  min-height: 24px;
  overflow: hidden;
  padding: 5px 6px;
  border: 1px solid rgba(11, 119, 66, 0.36);
  background: #38a537;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 107, 62, 0.16);
}

.calendar-booking strong,
.calendar-booking span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-booking strong {
  font-size: 11px;
}

.calendar-booking span {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.calendar-booking.compact span {
  display: none;
}

.calendar-booking.warn {
  background: #d48b1f;
}

.calendar-booking.info {
  background: #3b6db1;
}

.calendar-booking.danger {
  background: #b94628;
}

.approval-settings-panel {
  margin-top: 18px;
}

.approval-settings-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.45fr) auto;
  align-items: end;
  gap: 14px;
  margin-top: 16px;
}

.rule-preview {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f4faf8;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.schedule-day {
  min-width: 0;
  padding: 14px;
  border: 1px solid #d8e5e1;
  border-radius: 8px;
  background: #f8fbfa;
}

.schedule-day.selected {
  border-color: rgba(15, 123, 108, 0.75);
  box-shadow: inset 4px 0 0 var(--accent);
}

.schedule-day-head {
  justify-content: space-between;
  margin-bottom: 12px;
}

.schedule-date {
  display: grid;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.schedule-date strong,
.schedule-date span {
  overflow-wrap: anywhere;
}

.schedule-date span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.schedule-day.selected .schedule-date strong {
  color: var(--accent);
}

.schedule-track {
  display: flex;
  min-width: 0;
  min-height: 62px;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.schedule-segment {
  display: flex;
  min-width: 76px;
  min-height: 58px;
  flex: var(--duration) 0 88px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  border: 1px solid #d6e9e0;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: left;
  white-space: nowrap;
}

button.schedule-segment {
  cursor: pointer;
}

.schedule-segment strong,
.schedule-segment span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-segment strong {
  font-size: 13px;
}

.schedule-segment span {
  font-size: 12px;
  font-weight: 700;
}

.schedule-segment.compact span {
  display: none;
}

.schedule-segment.free {
  background: #e8f6ef;
  color: var(--green);
}

.schedule-segment.free:hover {
  border-color: var(--green);
  background: #dcf0e8;
}

.schedule-segment.busy {
  border-color: #f0d49c;
  background: #fff5dc;
  color: var(--amber);
}

.schedule-segment.busy.ok {
  border-color: #c8e8d3;
  background: #eef9f2;
  color: var(--green);
}

.schedule-segment.busy.info {
  border-color: #cddbf5;
  background: #eef4ff;
  color: var(--blue);
}

.schedule-segment.busy.danger {
  border-color: #f0c2b4;
  background: #fff0eb;
  color: var(--red);
}

.booking-card,
.approval-card {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.booking-head,
.approval-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.upload-inline {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px dashed #cbd9d5;
  border-radius: 8px;
  background: #f7fbfa;
  color: var(--muted);
  font-size: 13px;
}

.booking-card h3,
.booking-card p,
.approval-card h4,
.approval-card p,
.instrument-card h3,
.instrument-card p,
.list-row strong,
.list-row p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.upload-inline input[type="file"] {
  max-width: 100%;
  min-width: 0;
}

.report-row {
  grid-template-columns: 150px minmax(0, 1fr) 54px;
  margin-top: 0;
}

.profile-card {
  align-self: start;
}

.profile-meta {
  margin-top: 18px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid #edf3f1;
  color: var(--muted);
  font-size: 14px;
}

.meta-row strong {
  color: var(--text);
  text-align: right;
}

.permission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.divider {
  height: 1px;
  margin: 18px 0;
  background: #edf3f1;
}

.empty {
  padding: 28px;
  border: 1px dashed #cbd9d5;
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.auth-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(15, 79, 68, 0.08), rgba(214, 232, 226, 0.38)),
    var(--page);
}

.auth-panel {
  display: grid;
  width: min(420px, 100%);
  gap: 14px;
  justify-items: center;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.auth-panel h1 {
  margin: 6px 0 0;
  font-size: 24px;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .operator-card {
    display: none;
  }

  .main-frame {
    padding: 18px 14px 32px;
  }

  .topbar,
  .hero-band,
  .booking-head,
  .approval-head,
  .list-row,
  .schedule-board-head,
  .schedule-toolbar,
  .schedule-day-head {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-board-head {
    display: flex;
  }

  .schedule-title-block {
    text-align: left;
  }

  .topbar-actions {
    justify-content: space-between;
  }

  .schedule-legend,
  .schedule-day-stat {
    flex-wrap: wrap;
  }

  .schedule-segment {
    flex-basis: 108px;
  }

  .week-calendar {
    max-height: 560px;
  }

  .week-calendar-grid {
    min-width: 820px;
  }

  h1 {
    font-size: 24px;
  }

  .hero-band h2 {
    font-size: 28px;
  }

  .metric-grid,
  .instrument-grid,
  .content-grid,
  .admin-grid,
  .approval-settings-form,
  .reservation-layout,
  .profile-layout,
  .permission-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 10px;
  }

  .timeline-row {
    grid-template-columns: 54px 12px minmax(0, 1fr);
  }

  .timeline-row .badge {
    grid-column: 3;
    justify-self: start;
  }

  .two-col,
  .spec-grid,
  .report-row {
    grid-template-columns: 1fr;
  }
}
