.station-sheet {
  position: absolute;
  top: 6px;
  left: 14px;
  z-index: 690;
  width: min(380px, calc(100vw - 28px));
  max-height: calc(100vh - 18px);
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px 18px 8px 8px;
  background: rgba(4, 8, 14, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  color: #f8fafc;
  backdrop-filter: blur(18px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 180ms ease;
}

.station-sheet::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.station-sheet.is-dragging {
  transform: translateY(var(--sheet-drag-y, 0));
  transition: none;
}

.map-status {
  display: none;
  position: absolute;
  top: 68px;
  left: 50%;
  z-index: 660;
  max-width: min(540px, calc(100vw - 230px));
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #f8fafc;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.map-status.is-muted {
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.address-search {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 655;
  display: none;
  width: min(360px, calc(100vw - 420px));
  min-width: 280px;
  height: 44px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.34);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(16px) saturate(1.18);
}

.address-search:focus-within {
  border-color: rgba(34, 197, 94, 0.62);
  background: rgba(15, 23, 42, 0.48);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.14),
    0 18px 50px rgba(0, 0, 0, 0.22);
}

.address-search__button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.92);
}

.address-search__button svg {
  width: 19px;
  height: 19px;
}

.address-search input {
  min-height: 42px;
  border: 0;
  border-radius: 0 14px 14px 0;
  padding: 0 14px 0 0;
  background: transparent;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 800;
  outline: 0;
}

.address-search input::placeholder {
  color: rgba(203, 213, 225, 0.78);
}

.station-detail {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px 14px 16px;
}

.sheet-detail {
  color: #f8fafc;
}

.sheet-detail > * {
  transition: opacity 180ms ease, filter 180ms ease;
}

.sheet-detail.is-situation-focused > :not(.sheet-situation) {
  opacity: 0.28;
  filter: brightness(0.62) grayscale(0.35);
}

.sheet-detail.is-situation-focused .sheet-situation {
  position: relative;
  z-index: 1;
}

.sheet-grabber {
  justify-self: center;
  width: 44px;
  height: 5px;
  margin-top: -12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  cursor: grab;
  touch-action: none;
}

.sheet-grabber:active {
  cursor: grabbing;
}

.sheet-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 31px 31px 31px;
  gap: 2px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
}

.station-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e5e7eb;
  color: #ef4444;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

.station-logo--image {
  padding: 6px;
}

.station-logo--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.station-logo--text {
  padding: 4px;
  overflow-wrap: anywhere;
}

.sheet-title {
  min-width: 0;
  margin-left: 10px;
}

.sheet-title h2 {
  margin-bottom: 4px;
  color: #f8fafc;
  font-size: 18px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.sheet-title p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.3;
}

.sheet-icon-button {
  width: 31px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #cbd5e1;
}

.sheet-icon-button.is-active {
  color: #22c55e;
}

.sheet-icon-button svg {
  width: 25px;
  height: 25px;
}

.station-info-panel {
  position: absolute;
  top: 9px;
  right: 9px;
  bottom: auto;
  left: 9px;
  z-index: 4;
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: calc(100% - 18px);
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.94)),
    rgba(15, 23, 42, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 46px rgba(0, 0, 0, 0.38);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.station-info-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.station-info-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.station-info-panel__header span {
  color: #60a5fa;
  font-size: 11px;
  font-weight: 800;
}

.station-info-panel__header h3 {
  margin: 2px 0 0;
  color: #f8fafc;
  font-size: 18px;
  line-height: 1.15;
}

.station-info-section {
  display: grid;
  gap: 8px;
}

.station-info-section h4 {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 850;
}

.station-info-list {
  display: grid;
  gap: 7px;
}

.station-info-list div {
  display: grid;
  grid-template-columns: 10px 92px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.25;
}

.station-info-list strong {
  color: #e2e8f0;
  font-weight: 750;
}

.legend-dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 999px;
  background: #94a3b8;
}

.legend-dot.available {
  background: #22c55e;
}

.legend-dot.queue {
  background: #f97316;
}

.legend-dot.low {
  background: #facc15;
}

.legend-dot.unavailable {
  background: #fb7185;
}

.legend-dot.unknown {
  background: #94a3b8;
}

.station-info-badges {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 7px 9px;
  align-items: center;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.25;
}

.sheet-block-title {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.sheet-section {
  display: grid;
  gap: 8px;
}

.sheet-current {
  --status-rgb: 34, 197, 94;
  --status-color: #4ade80;
  --status-dark: rgba(6, 78, 59, 0.52);
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 2px solid rgba(var(--status-rgb), 0.56);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--status-rgb), 0.16), rgba(var(--status-rgb), 0.05)),
    rgba(15, 23, 42, 0.48);
}

.sheet-current.low {
  --status-rgb: 250, 204, 21;
  --status-color: #facc15;
  --status-dark: rgba(113, 63, 18, 0.52);
}

.sheet-current.queue {
  --status-rgb: 249, 115, 22;
  --status-color: #fb923c;
  --status-dark: rgba(124, 45, 18, 0.52);
}

.sheet-current.unavailable {
  --status-rgb: 248, 113, 113;
  --status-color: #fb7185;
  --status-dark: rgba(127, 29, 29, 0.52);
}

.sheet-current.unknown {
  --status-rgb: 100, 116, 139;
  --status-color: #94a3b8;
  --status-dark: rgba(30, 41, 59, 0.56);
}

.current-icon,
.sheet-status-icon,
.report-fuel-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.current-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(var(--status-rgb), 0.15);
  color: var(--status-color);
}

.current-icon svg,
.sheet-status-icon svg,
.report-fuel-icon svg {
  width: 24px;
  height: 24px;
}

.sheet-current strong {
  display: block;
  color: var(--status-color);
  font-size: 25px;
  line-height: 1.05;
}

.sheet-current > div:not(.current-icon) > span {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.current-meta {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.current-confidence {
  --confidence: 0%;
  --confidence-color: #94a3b8;
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.current-confidence__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.current-confidence__foot {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.current-confidence__head span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
}

.current-confidence__info {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
}

.current-confidence__info:hover {
  color: #38bdf8;
}

.current-confidence__info svg {
  width: 12px;
  height: 12px;
}

.current-confidence__head b {
  color: var(--confidence-color);
  font-size: 22px;
  line-height: 1;
}

.current-confidence__bar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(71, 85, 105, 0.62);
}

.current-confidence__bar i {
  display: block;
  width: var(--confidence);
  height: 100%;
  border-radius: inherit;
  background: var(--confidence-color);
  box-shadow: 0 0 16px color-mix(in srgb, var(--confidence-color) 48%, transparent);
}

.current-confidence__foot em {
  color: var(--confidence-color);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.current-confidence__foot span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.sheet-actual-inline {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding-top: 9px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.sheet-actual-inline p,
.sheet-subtitle,
.sheet-privacy,
.sheet-updated {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
}

.sheet-actual-inline > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sheet-confirm,
.sheet-change {
  min-height: 38px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
}

.sheet-confirm {
  border: 2px solid rgba(34, 197, 94, 0.92);
  background: rgba(6, 78, 59, 0.42);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.18),
    0 0 18px rgba(34, 197, 94, 0.18);
}

.sheet-change {
  border: 2px solid rgba(248, 113, 113, 0.88);
  background: rgba(127, 29, 29, 0.42);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.16),
    0 0 18px rgba(248, 113, 113, 0.16);
}

.sheet-fuels {
  display: grid;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.74);
}

.sheet-fuels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 5px;
}

.sheet-fuel-card {
  min-height: 52px;
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 8px 3px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.58);
  color: #cbd5e1;
  text-align: center;
}

.sheet-fuel-card span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.sheet-fuel-card strong {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.sheet-fuel-card.available {
  border-color: rgba(34, 197, 94, 0.58);
  background: rgba(6, 78, 59, 0.55);
  color: #4ade80;
}

.sheet-fuel-card.low {
  border-color: rgba(250, 204, 21, 0.58);
  background: rgba(113, 63, 18, 0.55);
  color: #facc15;
}

.sheet-fuel-card.unavailable {
  border-color: rgba(248, 113, 113, 0.58);
  background: rgba(127, 29, 29, 0.55);
  color: #fb7185;
}

.sheet-fuel-card.unknown {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(51, 65, 85, 0.58);
  color: #cbd5e1;
}

.sheet-section-title {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.sheet-report-list {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.86);
}

.sheet-report-row {
  width: 100%;
  display: grid;
  grid-template-columns: 8px 18px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 7px 10px;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: transparent;
  color: inherit;
  text-align: left;
}

.sheet-report-row:last-child {
  border-bottom: 0;
}

button.sheet-report-row:hover {
  background: rgba(30, 41, 59, 0.42);
}

.report-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.sheet-report-row.low .report-dot {
  background: #facc15;
}

.sheet-report-row.unavailable .report-dot {
  background: #fb7185;
}

.sheet-report-row.unknown .report-dot {
  background: #94a3b8;
}

.report-fuel-icon {
  color: #34d399;
}

.sheet-report-row.low .report-fuel-icon {
  color: #facc15;
}

.sheet-report-row.unavailable .report-fuel-icon {
  color: #fb7185;
}

.sheet-report-row.unknown .report-fuel-icon {
  color: #94a3b8;
}

.report-fuel-icon svg {
  width: 17px;
  height: 17px;
}

.report-main {
  min-width: 0;
}

.report-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 4px;
}

.report-main strong {
  display: inline-block;
  min-width: 0;
  color: #4ade80;
  font-size: 13px;
  line-height: 1.15;
}

.report-extra-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.report-extra-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  min-height: 21px;
  padding: 3px 8px;
  border: 1px solid rgba(34, 197, 94, 0.42);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0;
}

.report-extra-badge svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.report-extra-badge--reliable {
  border-color: rgba(96, 165, 250, 0.38);
  background: rgba(30, 64, 175, 0.14);
  color: #dbeafe;
}

.report-extra-badge--price {
  border-color: rgba(34, 197, 94, 0.58);
  background: rgba(22, 163, 74, 0.18);
  color: #a7f3d0;
}

.sheet-report-row.low .report-main strong {
  color: #facc15;
}

.sheet-report-row.unavailable .report-main strong {
  color: #fb7185;
}

.report-detail,
.sheet-report-row time {
  color: #94a3b8;
  font-size: 11px;
}

.report-detail {
  display: block;
  margin-top: 2px;
  line-height: 1.15;
}

.sheet-show-all {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.92);
  color: #7b8798;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  padding: 0 12px;
}

.empty-note {
  padding: 16px;
  color: #94a3b8;
}

.sheet-situation {
  gap: 9px;
}

.sheet-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.sheet-status-card {
  --choice-rgb: 34, 197, 94;
  --choice-color: #22c55e;
  position: relative;
  min-height: 108px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 11px 9px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.42);
  color: #e2e8f0;
  text-align: center;
}

.sheet-status-card strong {
  font-size: 15px;
}

.sheet-status-card span:not(.sheet-status-icon) {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.25;
}

.sheet-status-card i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 21px;
  height: 21px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--choice-color);
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(var(--choice-rgb), 0.42);
}

.sheet-status-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.14);
  color: #34d399;
}

.sheet-status-icon svg {
  width: 22px;
  height: 22px;
}

.sheet-status-card.queue .sheet-status-icon {
  --choice-rgb: 249, 115, 22;
  --choice-color: #f97316;
  background: rgba(249, 115, 22, 0.16);
  color: #fb923c;
}

.sheet-status-card.low .sheet-status-icon {
  --choice-rgb: 250, 204, 21;
  --choice-color: #facc15;
  background: rgba(250, 204, 21, 0.16);
  color: #facc15;
}

.sheet-status-card.unavailable .sheet-status-icon {
  --choice-rgb: 248, 113, 113;
  --choice-color: #fb7185;
  background: rgba(248, 113, 113, 0.16);
  color: #fb7185;
}

.sheet-status-card.queue {
  --choice-rgb: 249, 115, 22;
  --choice-color: #f97316;
}

.sheet-status-card.low {
  --choice-rgb: 250, 204, 21;
  --choice-color: #facc15;
}

.sheet-status-card.unavailable {
  --choice-rgb: 248, 113, 113;
  --choice-color: #fb7185;
}

.sheet-status-card.is-active {
  border-color: var(--choice-color);
  box-shadow:
    0 0 0 1px rgba(var(--choice-rgb), 0.24),
    0 0 22px rgba(var(--choice-rgb), 0.16);
}

.sheet-status-card.queue.is-active {
  border-color: #f97316;
}

.sheet-status-card.low.is-active {
  border-color: #facc15;
}

.sheet-status-card.unavailable.is-active {
  border-color: #fb7185;
}

.sheet-status-card.is-active i {
  display: grid;
}

.sheet-selection {
  display: grid;
  gap: 10px;
}

.sheet-choice-group {
  display: grid;
  gap: 7px;
}

.choice-title {
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
}

.choice-title span {
  margin-left: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.sheet-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sheet-fuel-choice-row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 7px;
}

.sheet-fuel-choice-row--compact .sheet-fuel-choice {
  grid-template-rows: 32px;
}

.sheet-fuel-choice {
  display: grid;
  grid-template-rows: 32px auto;
  gap: 5px;
  width: 46px;
}

.sheet-fuel-choice--all {
  width: 52px;
}

.sheet-fuel-choice .sheet-chip {
  width: 100%;
  padding: 0;
}

.sheet-chip {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.82);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}

.sheet-chip.is-active {
  border-color: rgba(34, 197, 94, 0.72);
  background: rgba(22, 163, 74, 0.24);
  color: #4ade80;
}

.sheet-radio-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.sheet-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.82);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.sheet-radio-card input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #22c55e;
}

.sheet-radio-card.is-active {
  border-color: rgba(34, 197, 94, 0.72);
  background: rgba(22, 163, 74, 0.24);
  color: #4ade80;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.14);
}

.sheet-fuel-price-input {
  width: 100%;
  height: 28px;
  min-width: 0;
  padding: 0 4px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9px;
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  outline: none;
}

.sheet-fuel-price-input::placeholder {
  color: #64748b;
}

.sheet-fuel-price-input:focus {
  border-color: rgba(34, 197, 94, 0.64);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.sheet-submit {
  min-height: 48px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.24);
}

.sheet-privacy,
.sheet-updated {
  text-align: center;
  line-height: 1.45;
}

.site-action-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(6px) saturate(1.04);
}

body.site-action-modal-open {
  overflow: hidden;
}

.site-action-dialog {
  position: relative;
  width: min(100%, 390px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.95)),
    rgba(15, 23, 42, 0.95);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

.site-action-dialog h3 {
  margin: 0;
  padding-right: 38px;
  color: #f8fafc;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.site-action-modal--route {
  place-items: end center;
  padding: 14px 12px max(14px, env(safe-area-inset-bottom));
}

.site-action-modal--confidence {
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.site-action-modal--report-feedback {
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.site-action-dialog--route {
  gap: 10px;
  padding: 14px;
  border-color: rgba(148, 163, 184, 0.16);
  border-radius: 18px 18px 14px 14px;
  background: rgba(4, 8, 14, 0.84);
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
}

.site-action-dialog--confidence {
  width: min(330px, calc(100vw - 28px));
  gap: 10px;
  padding: 16px;
  border-color: rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  background: rgba(4, 8, 14, 0.94);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
  pointer-events: auto;
}

.site-action-dialog--report-feedback {
  width: min(318px, calc(100vw - 28px));
  gap: 10px;
  padding: 16px;
  border-color: rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  background: rgba(4, 8, 14, 0.95);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
  pointer-events: auto;
}

.site-action-dialog--report-feedback h3 {
  color: #f8fafc;
  font-size: 17px;
}

.site-action-dialog--report-feedback p {
  margin: -3px 38px 0 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.site-report-feedback-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.site-report-feedback-button {
  min-height: 54px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  text-align: left;
}

.site-report-feedback-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(51, 65, 85, 0.44);
}

.site-report-feedback-button svg {
  width: 17px;
  height: 17px;
}

.site-report-feedback-button strong {
  font-size: 12px;
  font-weight: 950;
}

.site-report-feedback-button.is-active {
  box-shadow: inset 0 0 0 1px currentColor, 0 0 18px rgba(148, 163, 184, 0.14);
}

.site-report-feedback-button--like {
  border-color: rgba(34, 197, 94, 0.44);
  color: #bbf7d0;
}

.site-report-feedback-button--like span {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
}

.site-report-feedback-button--dislike {
  border-color: rgba(251, 113, 133, 0.4);
  color: #fecdd3;
}

.site-report-feedback-button--dislike span {
  background: rgba(159, 18, 57, 0.22);
  color: #fb7185;
}

.site-action-dialog--confidence h3 {
  color: #f8fafc;
  font-size: 17px;
}

.site-action-dialog--station-request {
  width: min(360px, calc(100vw - 28px));
  gap: 10px;
  padding: 16px;
  background: rgba(4, 8, 14, 0.94);
  backdrop-filter: blur(18px) saturate(1.12);
}

.site-action-dialog--station-request h3 {
  color: #f8fafc;
  font-size: 17px;
}

.station-request-stub {
  display: grid;
  gap: 9px;
}

.station-request-stub strong {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 900;
}

.station-request-stub p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.station-request-stub button {
  min-height: 36px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 11px;
  background: rgba(51, 65, 85, 0.52);
  color: #cbd5e1;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.site-confidence-list {
  display: grid;
  gap: 7px;
}

.site-confidence-list div {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 11px;
  background: rgba(15, 23, 42, 0.62);
}

.site-confidence-list strong {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 950;
}

.site-confidence-list span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.site-action-dialog--service-info {
  width: min(760px, calc(100vw - 28px));
  max-height: min(86dvh, 780px);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-color: rgba(34, 197, 94, 0.2);
  background:
    linear-gradient(180deg, rgba(6, 12, 18, 0.98), rgba(2, 6, 12, 0.96)),
    rgba(2, 6, 12, 0.96);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.08) inset,
    0 0 34px rgba(34, 197, 94, 0.1),
    0 30px 90px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(22px) saturate(1.18);
  overflow: hidden;
}

.service-info-head {
  display: grid;
  gap: 6px;
  padding-right: 38px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.28);
}

.service-info-head span {
  color: #4ade80;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-info-head h3 {
  padding: 0;
  color: #f8fafc;
  font-size: 23px;
  line-height: 1.08;
}

.service-info-head p,
.service-info-section p,
.service-info-list span,
.service-info-badges p {
  margin: 0;
  color: #b6c3d2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.service-info-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 197, 94, 0.38) transparent;
}

.service-info-section {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.045), transparent 52%),
    rgba(10, 16, 24, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.service-info-section--wide {
  grid-column: 1 / -1;
}

.service-info-section h4 {
  margin: 0;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
}

.service-info-section p b {
  color: #4ade80;
}

.service-visual-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-logo-demo,
.service-pin-demo,
.service-action-demo {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.58);
}

.service-action-demo {
  grid-template-columns: repeat(3, 31px) minmax(0, 1fr);
  gap: 4px;
}

.service-logo-demo strong,
.service-pin-demo strong {
  display: block;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
}

.service-logo-demo p,
.service-pin-demo p,
.service-action-demo p {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.25;
}

.service-logo-demo__tile {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e5e7eb;
  color: #0284c7;
  box-shadow: 0 0 18px rgba(148, 163, 184, 0.12);
}

.service-logo-demo__tile svg {
  width: 26px;
  height: 26px;
}

.service-map-pin {
  --pin: #64748b;
  --pin-glow: rgba(100, 116, 139, 0.48);
  position: relative;
  width: 48px;
  height: 52px;
  display: grid;
  place-items: start center;
  filter: drop-shadow(0 0 16px var(--pin-glow));
}

.service-map-pin::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50% 50% 50% 0;
  background: var(--pin);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--pin) 18%, transparent);
}

.service-map-pin i {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  margin-top: 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 16, 24, 0.72);
  color: #ffffff;
}

.service-map-pin svg {
  width: 17px;
  height: 17px;
}

.service-map-pin.available {
  --pin: #22c55e;
  --pin-glow: rgba(34, 197, 94, 0.72);
}

.service-icon-button {
  width: 31px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #cbd5e1;
}

.service-icon-button svg {
  width: 25px;
  height: 25px;
}

.service-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.service-status-card {
  --status-color: #64748b;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 132px;
  padding: 12px 8px;
  border: 1px solid color-mix(in srgb, var(--status-color) 34%, rgba(148, 163, 184, 0.14));
  border-radius: 12px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--status-color) 13%, transparent), transparent),
    rgba(15, 23, 42, 0.74);
  text-align: center;
}

.service-status-card.available {
  --status-color: #22c55e;
}

.service-status-card.queue {
  --status-color: #f97316;
}

.service-status-card.low {
  --status-color: #facc15;
}

.service-status-card.unavailable {
  --status-color: #fb7185;
}

.service-status-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--status-color) 24%, rgba(15, 23, 42, 0.9));
  color: var(--status-color);
  box-shadow: 0 0 18px color-mix(in srgb, var(--status-color) 26%, transparent);
}

.service-status-card svg {
  width: 21px;
  height: 21px;
}

.service-status-card strong {
  color: #f8fafc;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
}

.service-status-card p {
  font-size: 11px;
  line-height: 1.32;
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-chip-row span {
  min-width: 36px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 8px;
  background: rgba(6, 78, 59, 0.28);
  color: #4ade80;
  font-size: 12px;
  font-weight: 950;
}

.service-confidence-demo,
.service-progress-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 9px;
  align-items: center;
}

.service-confidence-demo span,
.service-progress-demo span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.72);
}

.service-confidence-demo i,
.service-progress-demo i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
}

.service-confidence-demo strong,
.service-progress-demo b {
  color: #4ade80;
  font-size: 12px;
  font-weight: 950;
}

.service-info-list,
.service-info-badges {
  display: grid;
  gap: 7px;
}

.service-info-list div {
  display: grid;
  grid-template-columns: 10px 106px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.service-info-list strong {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.service-info-badges {
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
}

.service-info-badges .report-extra-badge {
  justify-self: start;
}

.service-info-grid::-webkit-scrollbar {
  width: 6px;
}

.service-info-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.38);
}

@media (max-width: 640px) {
  .site-action-dialog--service-info {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 24px);
    padding: 14px;
  }

  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-visual-row,
  .service-status-grid {
    grid-template-columns: 1fr;
  }

  .service-status-card {
    min-height: 104px;
  }

  .service-info-list div {
    grid-template-columns: 10px 92px minmax(0, 1fr);
  }
}

.site-action-dialog--route h3 {
  padding-right: 0;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.site-action-dialog--route .site-action-close {
  display: none;
}

.site-action-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
}

.site-action-close svg {
  width: 22px;
  height: 22px;
}

.site-route-options {
  display: grid;
  gap: 9px;
}

.site-route-option {
  min-height: 50px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(5, 46, 22, 0.26), rgba(15, 23, 42, 0.9) 58%),
    rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.08) inset,
    0 0 20px rgba(34, 197, 94, 0.12);
}

.site-route-option--nav {
  border-color: rgba(56, 189, 248, 0.34);
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.28), rgba(15, 23, 42, 0.9) 58%),
    rgba(15, 23, 42, 0.9);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08) inset,
    0 0 20px rgba(56, 189, 248, 0.12);
}

.site-route-option span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.site-route-option--nav span {
  background: rgba(56, 189, 248, 0.18);
  color: #67e8f9;
}

.site-route-option svg {
  width: 18px;
  height: 18px;
}

.site-route-option strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.site-route-cancel {
  min-height: 34px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.52);
  color: #cbd5e1;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.site-action-dialog--chat {
  width: min(100%, 430px);
  height: min(86dvh, 720px);
  max-height: calc(100dvh - 24px);
  gap: 8px;
  padding: 12px;
  border-color: rgba(148, 163, 184, 0.16);
  border-radius: 18px 18px 14px 14px;
  background: rgba(4, 8, 14, 0.84);
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.site-action-modal--chat {
  place-items: end center;
  padding: 12px 10px max(12px, env(safe-area-inset-bottom));
}

.site-action-dialog--chat h3 {
  padding: 0 34px 8px 2px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 16px;
  line-height: 1.1;
}

.site-action-dialog--chat .site-action-close {
  top: 6px;
  right: 6px;
}

.site-action-dialog--chat .station-chat__messages {
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  gap: 6px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-action-dialog--chat .station-chat__message {
  padding: 7px 8px;
  border-color: rgba(148, 163, 184, 0.08);
  background: rgba(15, 23, 42, 0.46);
}

.site-action-dialog--chat .station-chat__empty {
  align-self: center;
}

.site-action-dialog--chat .station-chat__form {
  padding: 0;
}

.site-action-dialog--chat .station-chat__messages::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.sheet-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sheet-route,
.sheet-chat-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 12px;
  column-gap: 7px;
  align-items: center;
  min-height: 50px;
  padding: 7px 8px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(5, 46, 22, 0.24), rgba(15, 23, 42, 0.9) 58%),
    rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.08) inset,
    0 0 22px rgba(34, 197, 94, 0.12);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.station-request-link {
  justify-self: center;
  margin-top: 2px;
  padding: 2px 6px;
  border: 0;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.station-request-link:hover {
  color: #94a3b8;
}

.sheet-chat-toggle {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  border-color: rgba(56, 189, 248, 0.34);
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.28), rgba(15, 23, 42, 0.9) 58%),
    rgba(15, 23, 42, 0.9);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08) inset,
    0 0 22px rgba(56, 189, 248, 0.12);
}

.sheet-route {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.sheet-route:hover,
.sheet-chat-toggle:hover {
  transform: translateY(-1px);
}

.sheet-route:hover {
  border-color: rgba(74, 222, 128, 0.68);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.14) inset,
    0 0 28px rgba(34, 197, 94, 0.2);
}

.sheet-chat-toggle:hover {
  border-color: rgba(103, 232, 249, 0.68);
  box-shadow:
    0 0 0 1px rgba(103, 232, 249, 0.14) inset,
    0 0 28px rgba(56, 189, 248, 0.2);
}

.sheet-chat-toggle.is-open {
  border-color: rgba(103, 232, 249, 0.74);
  background: rgba(8, 47, 73, 0.72);
}

.sheet-route.is-open {
  border-color: rgba(74, 222, 128, 0.74);
  background: rgba(5, 46, 22, 0.72);
}

.sheet-route > span,
.sheet-chat-toggle > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.18);
}

.sheet-chat-toggle > span {
  background: rgba(56, 189, 248, 0.18);
  color: #67e8f9;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.18);
}

.sheet-route svg,
.sheet-chat-toggle svg {
  width: 18px;
  height: 18px;
}

.sheet-route strong,
.sheet-chat-toggle strong {
  min-width: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.sheet-route i,
.sheet-chat-toggle i {
  color: #64748b;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.sheet-route.is-open i,
.sheet-chat-toggle.is-open i {
  transform: rotate(90deg);
}

.sheet-route.is-open i {
  color: #4ade80;
}

.sheet-chat-toggle.is-open i {
  color: #67e8f9;
}

.sheet-route-picker {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.66)),
    rgba(15, 23, 42, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px rgba(34, 197, 94, 0.1);
}

.sheet-route-modal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sheet-route-picker a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.52);
  color: #e2e8f0;
  text-decoration: none;
}

.sheet-route-picker span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
}

.sheet-route-picker svg {
  width: 17px;
  height: 17px;
}

.sheet-route-picker strong {
  min-width: 0;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.sheet-chat {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.66)),
    rgba(15, 23, 42, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: chatReveal 220ms ease both;
}

.sheet-chat-modal {
  display: grid;
  gap: 10px;
}

@keyframes chatReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.station-chat__messages {
  max-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 2px;
}

.station-chat__messages::-webkit-scrollbar {
  width: 4px;
}

.station-chat__messages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.station-chat__message {
  display: grid;
  gap: 3px;
  padding: 7px 8px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.52);
}

.station-chat__message p {
  margin: 0;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.station-chat__message time,
.station-chat__empty {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
}

.station-chat__empty {
  padding: 10px;
  text-align: center;
}

.station-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
}

.station-chat__form input {
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  outline: none;
  background: rgba(15, 23, 42, 0.76);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
}

.station-chat__form input:focus {
  border-color: rgba(56, 189, 248, 0.52);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.station-chat__form button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 12px;
  background: rgba(8, 145, 178, 0.22);
  color: #67e8f9;
  cursor: pointer;
}

.station-chat__form button svg {
  width: 18px;
  height: 18px;
}

.driver-profile {
  display: grid;
  gap: 12px;
  padding: 20px 14px 16px;
}

.driver-profile__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.driver-profile__header span {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.driver-profile__header h2 {
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.05;
}

.driver-impact-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(34, 197, 94, 0.66);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.06)),
    rgba(6, 78, 59, 0.72);
  color: #dcfce7;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.driver-impact-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bbf7d0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.driver-impact-card span svg {
  width: 22px;
  height: 22px;
  color: #fb7185;
  filter: drop-shadow(0 0 10px rgba(251, 113, 133, 0.42));
}

.driver-impact-card strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0;
}

.driver-impact-card p {
  color: #f0fdf4;
  font-size: 14px;
  font-weight: 850;
}

.driver-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.driver-stat-grid div {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.62);
}

.driver-stat-grid strong {
  color: #f8fafc;
  font-size: 18px;
  line-height: 1;
}

.driver-stat-grid span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 850;
}

.driver-badges {
  display: grid;
  gap: 8px;
}

.driver-badges__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.driver-badge {
  --badge-color: #22c55e;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--badge-color) 48%, rgba(148, 163, 184, 0.2));
  border-radius: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--badge-color) 12%, transparent), transparent),
    rgba(15, 23, 42, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.driver-badge__icon {
  position: relative;
  width: 54px;
  height: 62px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 91% 23%, 91% 73%, 50% 100%, 9% 73%, 9% 23%);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--badge-color) 28%, transparent), rgba(15, 23, 42, 0.82)),
    rgba(15, 23, 42, 0.82);
  color: var(--badge-color);
  box-shadow:
    0 0 22px color-mix(in srgb, var(--badge-color) 26%, transparent),
    inset 0 0 0 2px color-mix(in srgb, var(--badge-color) 72%, rgba(255, 255, 255, 0.18));
}

.driver-badge__icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  clip-path: inherit;
  border: 1px solid color-mix(in srgb, var(--badge-color) 62%, transparent);
}

.driver-badge__icon i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  font-style: normal;
}

.driver-badge__icon svg {
  width: 22px;
  height: 22px;
}

.driver-badge__icon b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--badge-color) 78%, #0f172a);
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  box-shadow: 0 0 12px color-mix(in srgb, var(--badge-color) 48%, transparent);
}

.driver-badge__body {
  min-width: 0;
}

.driver-badge__top,
.driver-badge__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.driver-badge__top strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.1;
}

.driver-badge__top span {
  color: var(--badge-color);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.driver-badge p {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.25;
}

.driver-badge__meta {
  margin-top: 8px;
}

.driver-badge__meta span {
  color: var(--badge-color);
  font-size: 13px;
  font-weight: 950;
}

.driver-badge__meta i {
  color: #64748b;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.driver-badge__progress {
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.82);
}

.driver-badge__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--badge-color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--badge-color) 56%, transparent);
}

.driver-badge__stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 7px;
  color: rgba(100, 116, 139, 0.42);
  font-size: 15px;
  line-height: 1;
}

.driver-badge__stars span.is-active {
  color: var(--badge-color);
  text-shadow: 0 0 12px color-mix(in srgb, var(--badge-color) 64%, transparent);
}

.favorites-panel {
  display: grid;
  gap: 12px;
  padding: 20px 14px 16px;
}

.favorites-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.favorites-panel__header span {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.favorites-panel__header h2 {
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.05;
}

.favorites-empty,
.favorites-loading {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.favorites-empty > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.13);
  color: #facc15;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.16);
}

.favorites-empty svg {
  width: 24px;
  height: 24px;
}

.favorites-empty strong,
.favorites-loading {
  color: #f8fafc;
  font-size: 15px;
  font-weight: 950;
}

.favorites-empty p {
  max-width: 260px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.45;
}

.favorites-list {
  display: grid;
  gap: 8px;
}

.advanced-filters {
  display: grid;
  gap: 12px;
  padding: 20px 14px 16px;
}

.advanced-filters__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.advanced-filters__header span {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.advanced-filters__header h2 {
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.05;
}

.advanced-filter-section {
  display: grid;
  gap: 8px;
}

.advanced-filter-section h3 {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.advanced-filter-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.advanced-filter-grid {
  display: grid;
  gap: 7px;
}

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

.advanced-filter-grid--fuel {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.advanced-filter-option {
  --option-color: #22c55e;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.68);
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
}

.advanced-filter-option--available {
  --option-color: #22c55e;
}

.advanced-filter-option--queue {
  --option-color: #f97316;
}

.advanced-filter-option--low {
  --option-color: #facc15;
}

.advanced-filter-option--unavailable {
  --option-color: #fb7185;
}

.advanced-filter-option--unknown {
  --option-color: #94a3b8;
}

.advanced-filter-option > i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid rgba(148, 163, 184, 0.58);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
}

.advanced-filter-option.is-active > i {
  border-color: var(--option-color);
  background:
    radial-gradient(circle at center, var(--option-color) 0 38%, transparent 42%),
    rgba(15, 23, 42, 0.88);
  box-shadow: 0 0 14px color-mix(in srgb, var(--option-color) 42%, transparent);
}

.advanced-filter-option strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.advanced-filter-option.is-active {
  border-color: color-mix(in srgb, var(--option-color) 58%, rgba(148, 163, 184, 0.18));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--option-color) 12%, transparent), transparent),
    rgba(15, 23, 42, 0.78);
}

.advanced-filter-grid--fuel .advanced-filter-option {
  min-height: 38px;
  justify-content: center;
  padding: 7px 5px;
}

.advanced-filter-grid--fuel .advanced-filter-option strong {
  font-size: 12px;
}

.advanced-filter-search {
  height: 42px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.74);
  color: #94a3b8;
}

.advanced-filter-search svg {
  width: 18px;
  height: 18px;
}

.advanced-filter-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.advanced-filter-search input::placeholder {
  color: #64748b;
}

.advanced-filter-select-all {
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.advanced-filter-select-all::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid rgba(148, 163, 184, 0.58);
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.92);
}

.advanced-filter-select-all.is-active::before {
  border-color: #22c55e;
  background:
    linear-gradient(135deg, transparent 0 38%, #22c55e 39% 61%, transparent 62%),
    linear-gradient(45deg, transparent 0 42%, #22c55e 43% 61%, transparent 62%),
    rgba(15, 23, 42, 0.92);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.32);
}

.advanced-filter-station-list {
  max-height: 310px;
  display: grid;
  gap: 7px;
  overflow-y: auto;
  padding-right: 2px;
}

.advanced-filter-empty {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.58);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.favorite-station {
  --favorite-color: #94a3b8;
  --favorite-bg: rgba(51, 65, 85, 0.24);
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 14px;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding: 12px 10px;
  border: 1px solid color-mix(in srgb, var(--favorite-color) 58%, rgba(148, 163, 184, 0.2));
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--favorite-color) 10%, transparent), transparent),
    rgba(15, 23, 42, 0.78);
  color: #f8fafc;
  text-align: left;
}

.favorite-station:hover {
  border-color: color-mix(in srgb, var(--favorite-color) 78%, rgba(255, 255, 255, 0.24));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--favorite-color) 15%, transparent), transparent),
    rgba(15, 23, 42, 0.92);
}

.favorite-station.available {
  --favorite-color: #22c55e;
  --favorite-bg: rgba(34, 197, 94, 0.16);
}

.favorite-station.queue {
  --favorite-color: #f97316;
  --favorite-bg: rgba(249, 115, 22, 0.18);
}

.favorite-station.low {
  --favorite-color: #facc15;
  --favorite-bg: rgba(250, 204, 21, 0.16);
}

.favorite-station.unavailable {
  --favorite-color: #fb7185;
  --favorite-bg: rgba(251, 113, 133, 0.17);
}

.favorite-station__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--favorite-bg);
  color: var(--favorite-color);
}

.favorite-station__icon svg {
  width: 21px;
  height: 21px;
}

.favorite-station__logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #e5e7eb;
  color: #ef4444;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.favorite-station__logo--image {
  padding: 6px;
}

.favorite-station__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.favorite-station__logo--text {
  padding: 4px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}

.favorite-station__body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.favorite-station__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.favorite-station__top strong,
.favorite-station__body em,
.favorite-station__body small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.favorite-station__top strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.1;
}

.favorite-station__top b {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.favorite-status-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--favorite-bg);
  color: var(--favorite-color);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.favorite-status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.favorite-station__body em {
  color: #94a3b8;
  font-size: 11px;
  font-style: normal;
}

.favorite-station__body small {
  color: #94a3b8;
  font-size: 11px;
}

.favorite-station__chevron {
  color: #64748b;
  font-size: 20px;
  line-height: 1;
}

.favorite-button,
.icon-button,
.primary-button,
.ghost-button,
.mini-action,
.status-choice,
.confirm-button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.favorite-button,
.icon-button {
  width: 44px;
  display: grid;
  place-items: center;
  font-size: 21px;
}

.favorite-button.is-active {
  background: #fff4cc;
  border-color: #f2c94c;
}

.status-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(246, 247, 244, 0.78);
}

.status-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.confirmation-actions,
.detail-actions,
.status-grid {
  display: grid;
  gap: 8px;
}

.confirmation-actions {
  grid-template-columns: 1fr 1fr;
}

.confirm-button {
  padding: 0 12px;
  font-weight: 800;
}

.confirm-button.yes {
  border-color: rgba(18, 107, 80, 0.45);
  background: #e3f3ec;
  color: var(--primary-strong);
}

.confirm-button.no {
  border-color: rgba(198, 63, 46, 0.4);
  background: #fff0ed;
  color: var(--accent);
}

.fuel-stack,
.report-list {
  display: grid;
  gap: 8px;
}

.fuel-row,
.report-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.fuel-meta,
.report-meta {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill.available {
  background: var(--primary);
}

.status-pill.low {
  background: var(--warning);
}

.status-pill.unavailable {
  background: var(--accent);
}

.status-pill.unknown {
  background: rgba(100, 116, 139, 0.82);
}

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

.status-choice {
  padding: 0 10px;
  font-weight: 900;
}

.status-choice.available {
  border-color: rgba(18, 107, 80, 0.5);
}

.status-choice.low {
  border-color: rgba(183, 121, 31, 0.5);
}

.status-choice.unavailable {
  border-color: rgba(198, 63, 46, 0.5);
}

.status-choice.unknown {
  border-color: rgba(100, 116, 139, 0.5);
}

.status-choice.is-active {
  background: var(--text);
  color: #ffffff;
}

.section-divider {
  height: 1px;
  background: var(--border);
}

.primary-button,
.ghost-button,
.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 800;
}

.primary-button {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.ghost-button:hover,
.mini-action:hover,
.favorite-button:hover {
  background: var(--surface-strong);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(22, 33, 27, 0.45);
}

.modal {
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.report-form {
  display: grid;
  gap: 14px;
  padding: 16px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: #ffffff;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.form-error {
  min-height: 20px;
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 800;
}

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