:root {
  --ink: #172026;
  --muted: #60707c;
  --line: #d9e1e5;
  --surface: #ffffff;
  --surface-soft: #f4f7f8;
  --nav: #19272d;
  --nav-soft: #22343d;
  --accent: #0f7b77;
  --accent-dark: #0b5d5a;
  --warning: #c77a1f;
  --success: #2e7d4f;
  --danger: #ad3d3d;
  --blue: #2f69a1;
  --shadow: 0 18px 45px rgba(24, 38, 44, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

.login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #eef5f5 0%, #f8fbfb 55%, #e8f0ed 100%);
}

.login-card {
  display: grid;
  width: min(100%, 420px);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-brand {
  margin-bottom: 8px;
  color: var(--ink);
}

.login-status {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 22px;
  color: #edf6f4;
  background: var(--nav);
}

.brand-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #000000;
  font-weight: 800;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 4px;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

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

h1 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.nav-tabs {
  display: grid;
  gap: 8px;
}

.nav-tab {
  width: 100%;
  padding: 12px 14px;
  color: #dbe7e5;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
}

.nav-tab.active,
.nav-tab:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--nav-soft);
}

.sidebar-note {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: auto;
  padding: 14px;
  color: #ccdcda;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.sidebar-logout {
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  color: #edf6f4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  font-weight: 700;
}

.sidebar-logout:hover {
  background: var(--nav-soft);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: #56c28f;
}

.workspace {
  min-width: 0;
  padding: 28px;
}

.topbar,
.section-header,
.panel-header,
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  margin-bottom: 24px;
}

.topbar h2,
.section-header h3 {
  margin: 0;
  line-height: 1.15;
}

.topbar h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.section-header {
  margin-bottom: 16px;
}

.section-header h3 {
  font-size: 1.35rem;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.hidden {
  display: none !important;
}

.filter-strip,
.header-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.filter-strip {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.filter-strip label,
.header-controls label {
  min-width: 180px;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-note {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.dispatch-grid,
.technician-day-layout,
.dashboard-grid {
  display: grid;
  gap: 18px;
}

.dispatch-grid {
  grid-template-columns: minmax(0, 1fr);
}

.technician-day-layout {
  grid-template-columns: minmax(330px, 0.78fr) minmax(420px, 1.22fr);
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.panel,
.metric,
.form-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel-header {
  margin-bottom: 14px;
}

.panel-header h4 {
  margin: 0;
  font-size: 1rem;
}

.panel-subtitle {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.count-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafb;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-badge.sent {
  color: var(--blue);
  border-color: #b6d0e9;
  background: #edf6ff;
}

.status-badge.completed {
  color: var(--success);
  border-color: #b7dec9;
  background: #effaf4;
}

.status-badge.follow {
  color: var(--warning);
  border-color: #ebcf9f;
  background: #fff7e9;
}

.status-badge.alert {
  color: var(--danger);
  border-color: #e4b5b5;
  background: #fff3f3;
}

.status-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.job-list,
.report-list,
.bar-list,
.schedule-list {
  display: grid;
  gap: 12px;
}

.date-group-title {
  margin: 6px 0 -4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card,
.report-card,
.schedule-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.job-card {
  display: grid;
  gap: 10px;
  cursor: pointer;
}

.job-card.job-complete,
.schedule-card.job-complete {
  border-color: #9bcfac;
  background: #f3fbf6;
}

.job-card.job-attention,
.schedule-card.job-attention {
  border-color: #dfaaa8;
  background: #fff5f5;
}

.job-card.job-waiting,
.schedule-card.job-waiting {
  border-color: #dfbd82;
  background: #fff8ea;
}

.job-card.job-payment-hold,
.schedule-card.job-payment-hold {
  border-color: #d6c842;
  background: #fffde7;
}

.job-card form,
.schedule-card form {
  cursor: default;
}

.job-card.selected,
.schedule-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(15, 123, 119, 0.12);
}

.job-card.job-complete.selected,
.schedule-card.job-complete.selected {
  border-color: var(--success);
  box-shadow: 0 0 0 2px rgba(43, 138, 79, 0.14);
}

.job-card.job-attention.selected,
.schedule-card.job-attention.selected {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(178, 58, 58, 0.14);
}

.job-card.job-waiting.selected,
.schedule-card.job-waiting.selected {
  border-color: var(--warning);
  box-shadow: 0 0 0 2px rgba(161, 111, 47, 0.14);
}

.job-card.job-payment-hold.selected,
.schedule-card.job-payment-hold.selected {
  border-color: #b4a927;
  box-shadow: 0 0 0 2px rgba(180, 169, 39, 0.16);
}

.schedule-card.job-attention .schedule-time {
  color: var(--danger);
  border-color: #e4b5b5;
  background: #fff3f3;
}

.job-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.job-card h5,
.report-card h5 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.job-meta {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.schedule-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.schedule-time {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px 8px;
  color: var(--accent-dark);
  border: 1px solid #b5d7d5;
  border-radius: 8px;
  background: #eff9f8;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.schedule-body {
  min-width: 0;
}

.schedule-body h5 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.schedule-body p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.schedule-body .address-history-note {
  width: fit-content;
  max-width: 100%;
  padding: 7px 9px;
  color: #6e4a0a;
  border: 1px solid #ebcf9f;
  border-radius: 8px;
  background: #fff7e9;
  font-weight: 600;
}

.address-history-note strong {
  color: #4f3608;
}

.pin-status {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.pin-status.confirmed {
  color: var(--success);
  border-color: #b7dec9;
  background: #effaf4;
}

.pin-status.pending {
  color: var(--blue);
  border-color: #b6d0e9;
  background: #edf6ff;
}

.pin-status.missing {
  color: var(--warning);
  border-color: #ebcf9f;
  background: #fff7e9;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.primary-button,
.secondary-button,
.ghost-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.primary-button {
  color: #ffffff;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
}

.primary-button:hover {
  background: var(--accent-dark);
}

.secondary-button,
.small-button {
  color: var(--accent-dark);
  border: 1px solid #a8d3d0;
  background: #eef9f8;
}

.danger-button {
  color: var(--danger);
  border-color: #e4b5b5;
  background: #fff3f3;
}

.ghost-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}

.attention-filter-button.active-filter {
  color: var(--danger);
  border-color: #e4b5b5;
  background: #fff3f3;
}

.waiting-payment-filter-button.active-filter {
  color: var(--warning);
  border-color: #ebcf9f;
  background: #fff7e9;
}

.attention-filter-button,
.waiting-payment-filter-button {
  gap: 8px;
}

.attention-count,
.waiting-count {
  display: inline-flex;
  min-width: 22px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--danger);
  font-size: 0.76rem;
  line-height: 1;
}

.waiting-count {
  background: var(--warning);
}

.small-button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.82rem;
  text-decoration: none;
}

.small-button:disabled,
.small-button.is-disabled {
  color: #7d8c94;
  border-color: var(--line);
  background: #f3f6f7;
  cursor: not-allowed;
  pointer-events: none;
}

.order-preview {
  min-height: 420px;
}

.empty-state {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed #bbc7ce;
  border-radius: 8px;
  background: #f8fafb;
}

.preview-header {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-header h4 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

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

.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: baseline;
}

.detail-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-row strong,
.detail-row p {
  margin: 0;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

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

.appliance-list {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}

.appliance-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.appliance-list-header span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.appliance-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(150px, 1fr) minmax(150px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.appliance-row-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 78px;
}

.report-grid {
  box-shadow: none;
  border: 0;
  padding: 0;
}

.inline-edit-order {
  margin-top: 14px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.dispatch-action-form {
  margin-top: 14px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.dispatch-action-controls {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.form-section-title {
  display: grid;
  gap: 4px;
  padding-bottom: 2px;
}

.form-section-title h5,
.form-section-title p {
  margin: 0;
}

.form-section-title h5 {
  font-size: 0.95rem;
}

.form-section-title p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.dispatch-details,
.technician-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.merged-report-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.compact-empty-state {
  min-height: 0;
  padding: 16px;
}

.compact-preview-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.compact-preview-header h4 {
  margin: 0;
  font-size: 0.98rem;
}

.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.compact-details {
  gap: 10px;
}

.compact-details .detail-row {
  grid-template-columns: 112px 1fr;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-note {
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.inline-control {
  min-width: 220px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  color: var(--ink);
  border: 1px solid #c9d5da;
  border-radius: 8px;
  background: #ffffff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 123, 119, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  padding: 16px;
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric strong {
  font-size: 1.65rem;
  line-height: 1;
}

.bar-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef1;
}

.tax-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}

.tax-preview div {
  display: grid;
  gap: 4px;
}

.tax-preview span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tax-preview strong {
  font-size: 1rem;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.bar-fill.brand {
  background: var(--warning);
}

.report-card {
  display: grid;
  gap: 8px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.route-map,
.dashboard-heatmap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 105, 161, 0.12), rgba(15, 123, 119, 0.08)),
    #edf3f5;
}

.dashboard-heatmap {
  height: 360px;
}

.route-map.offline,
.dashboard-heatmap.offline {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.map-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.leaflet-container {
  font: inherit;
}

.route-marker-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(23, 32, 38, 0.28);
  font-size: 0.9rem;
  font-weight: 800;
}

.route-marker-icon span {
  line-height: 1;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 12px 14px;
  color: #ffffff;
  border-radius: 8px;
  background: var(--nav);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 28px;
  background: #f7fafb;
}

.report-modal-panel {
  width: min(920px, 100%);
  margin: auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.report-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.report-modal-header h3,
.report-modal-header p {
  margin: 0;
}

.report-modal-header p:last-child {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.modal-report-form {
  box-shadow: none;
}

.dispatch-workflow-form {
  padding: 18px;
}

.dispatch-workflow-summary {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}

.report-photo-input {
  align-content: start;
}

.report-photo-thumb {
  display: grid;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.report-photo-thumb img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}

.detail-photo-thumb {
  max-width: 240px;
}

.optional-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

.optional-photo-grid .report-photo-thumb img {
  max-height: 140px;
}

@media (max-width: 1020px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 2;
    gap: 16px;
    padding: 16px;
  }

  .nav-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-tab {
    text-align: center;
  }

  .sidebar-note {
    display: none;
  }

  .dispatch-grid,
  .technician-day-layout,
  .dashboard-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .workspace {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .brand-block,
  .topbar,
  .section-header,
  .panel-header,
  .form-actions,
  .job-card-title {
    align-items: stretch;
  }

  .topbar,
  .section-header,
  .form-actions {
    flex-direction: column;
  }

  .inline-control,
  .filter-strip label,
  .header-controls label,
  .route-actions,
  .route-actions .small-button {
    width: 100%;
  }

  .filter-actions,
  .filter-actions button,
  .header-controls,
  .header-controls button {
    width: 100%;
  }

  .nav-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .appliance-row {
    grid-template-columns: 1fr;
  }

  .appliance-list-header {
    align-items: stretch;
    flex-direction: column;
  }

  .appliance-row-actions,
  .appliance-row-actions .small-button {
    width: 100%;
  }

  .tax-preview {
    grid-template-columns: 1fr;
  }

  .map-panel .route-map {
    height: 230px;
  }

  .report-modal {
    padding: 12px;
  }

  .report-modal-header {
    flex-direction: column;
  }

  .report-modal-header .ghost-button {
    width: 100%;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bar-row {
    grid-template-columns: 92px minmax(0, 1fr) 28px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-time {
    min-height: 0;
    justify-content: start;
  }
}
