:root {
  --brand-primary: #0d9488;
  --brand-primary-hover: #0f766e;
  --brand-primary-rgb: 13, 148, 136;
  --surface: #ffffff;
  --surface-muted: #f1f5f4;
  --border: #d9e2e0;
  --text: #0f1f1c;
  --text-muted: #5b6f6a;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(15, 31, 28, 0.08);
  --sidebar-width: 260px;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Oswald", "Plus Jakarta Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background-color: var(--surface-muted);
  background-image:
    radial-gradient(ellipse at top left, rgba(13, 148, 136, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(15, 31, 28, 0.04), transparent 45%);
  background-attachment: fixed;
}

details summary::-webkit-details-marker {
  display: none;
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.app-main {
  flex: 1;
  min-width: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.app-content {
  padding: 0.85rem 1rem 1.5rem;
}

.page-fade {
  animation: pageFade 0.28s ease-out;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.brand-display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  max-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(94, 234, 212, 0.16), transparent 55%),
    linear-gradient(180deg, #0c1f1c 0%, #081614 100%);
  border-right: 1px solid rgba(94, 234, 212, 0.14);
  overflow-y: auto;
  overflow-x: hidden;
  color: #d1fae5;
}

.app-sidebar .sidebar-brand-icon {
  background: #5eead4;
  color: #0b1f1c;
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.18);
}

.app-sidebar .sidebar-brand-title {
  color: #ecfdf5;
}

.app-sidebar .sidebar-brand-tag {
  color: #99f6e4;
  opacity: 0.75;
}

.app-sidebar .sidebar-close {
  color: #99f6e4;
}

.app-sidebar .sidebar-close:hover {
  background: rgba(94, 234, 212, 0.12);
  color: #ecfdf5;
}

.nav-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5eead4;
  padding: 0.75rem 0.75rem 0.25rem;
  opacity: 0.75;
}

.nav-link-app {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  margin: 0.125rem 0.5rem;
  border-radius: var(--radius);
  color: #b6e6d8;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border-left: 3px solid transparent;
}

.nav-link-app:hover {
  background: rgba(94, 234, 212, 0.12);
  color: #ccfbf1;
}

.nav-link-app.active {
  background: rgba(94, 234, 212, 0.18);
  color: #ecfdf5;
  border-left-color: #5eead4;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.12);
}

.sidebar-user {
  padding: 0.75rem;
  margin: 0.5rem;
  border-radius: var(--radius);
  background: rgba(8, 22, 20, 0.65);
  border: 1px solid rgba(94, 234, 212, 0.16);
  color: #ecfdf5;
}

.sidebar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5eead4;
  color: #0b1f1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sidebar-role {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.18);
  color: #99f6e4;
}

.app-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.app-header-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.app-header-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.header-user summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.65rem;
}

.header-user-menu {
  position: absolute;
  right: 1rem;
  top: calc(100% - 0.25rem);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 31, 28, 0.12);
  padding: 0.5rem 0;
  z-index: 40;
}

.header-user-menu a,
.header-user-menu p {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--text);
  text-decoration: none;
}

.header-user-menu a:hover {
  background: var(--surface-muted);
}

.header-user-menu a.is-danger {
  color: #b91c1c;
}

.notify-btn {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.notify-btn:hover {
  background: var(--surface-muted);
  color: var(--brand-primary);
}

.notify-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notify-count.hidden {
  display: none !important;
}

.notify-count.has-delay {
  animation: notifyPulse 1.6s ease-in-out infinite;
}

@keyframes notifyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.header-notify-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  width: min(360px, 90vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 14px 36px rgba(15, 31, 28, 0.14);
  z-index: 40;
  overflow: hidden;
}

.notify-heading {
  margin: 0;
  padding: 0.7rem 0.9rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.notify-list {
  max-height: 320px;
  overflow: auto;
}

.notify-item {
  display: block;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.notify-item:hover {
  background: #fff1f2;
}

.notify-item strong {
  display: block;
  font-size: 0.8125rem;
}

.notify-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.notify-late {
  color: #b91c1c;
  font-weight: 700;
}

.notify-empty {
  padding: 1.1rem 0.9rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.notify-footer {
  display: block;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  background: var(--surface-muted);
}

.notify-footer:hover {
  background: #ecfdf5;
}

.row-delayed td {
  background: #fff1f2 !important;
}

.badge-delayed {
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
}

.kpi-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card,
.card-app {
  background: var(--surface);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.card-header {
  background: transparent;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
}

.filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.kpi-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.kpi-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 31, 28, 0.08);
}

.kpi-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.kpi-item__value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

.kpi-item--accent .kpi-item__value { color: var(--brand-primary); }
.kpi-item--warn .kpi-item__value { color: #b45309; }
.kpi-item--danger .kpi-item__value { color: #b91c1c; }
.kpi-item--info .kpi-item__value { color: #1d4ed8; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.dash-span-8 { grid-column: span 8; }
.dash-span-6 { grid-column: span 6; }
.dash-span-4 { grid-column: span 4; }

.dash-grid > .card-app {
  overflow: hidden;
  min-width: 0;
}

.chart-box {
  height: 260px;
  padding: 0.55rem 1rem 1rem;
  position: relative;
}

.chart-box--sm {
  height: 260px;
}

.activity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
}

.activity-list li:last-child a {
  border-bottom: none;
}

.activity-list li a:hover {
  background: rgba(var(--brand-primary-rgb), 0.06);
}

.activity-list strong {
  display: block;
  font-size: 0.8125rem;
}

.activity-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.12rem;
}

.activity-empty {
  padding: 1.65rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.table-wrap {
  overflow: auto;
  max-height: 62vh;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 0.65rem 0.8rem;
  white-space: nowrap;
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  vertical-align: middle;
}

.data-table tbody tr:hover td {
  background: rgba(var(--brand-primary-rgb), 0.06);
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.field-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.65rem;
  font-size: 0.8125rem;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius);
  padding: 0.42rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.btn-sm {
  padding: 0.28rem 0.55rem;
  font-size: 0.75rem;
}

.btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}

.btn-amber {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #111827;
}

.btn-amber:hover {
  background: #d97706;
  border-color: #d97706;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-ghost:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn-danger {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.btn-danger:hover {
  background: #b91c1c;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
}

.badge-active {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.badge-pending {
  background: rgba(180, 83, 9, 0.12);
  color: #b45309;
}

.badge-completed {
  background: rgba(29, 78, 216, 0.12);
  color: #1d4ed8;
}

.badge-cancelled {
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
}

.badge-converted {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
}

.section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 0 0 0.2rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.modal-overlay:not(.hidden) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 31 28 / 0.45);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 2rem);
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 20px 40px rgba(15, 31, 28, 0.18);
  border: 1px solid var(--border);
}

.modal-scroll {
  max-height: 70vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-footer {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.modal-panel--xl {
  max-height: calc(100vh - 1rem);
  max-height: calc(100dvh - 1rem);
  max-height: calc(100svh - 1rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-panel--xl .modal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
}

.modal-panel--xl .modal-footer {
  margin-top: 0.75rem;
}

.file-chip-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.3rem 0.35rem 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.file-chip__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--text);
}

.file-chip__view {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  border-radius: var(--radius);
  cursor: pointer;
}

.file-chip__view:hover {
  background: rgba(var(--brand-primary-rgb), 0.14);
}

.file-chip__actions {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.file-chip__remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #e11d48;
  border-radius: var(--radius);
  cursor: pointer;
}

.file-chip__remove:hover {
  background: rgba(225, 29, 72, 0.12);
}

.file-preview-overlay {
  z-index: 70;
}

.file-preview-panel {
  margin-top: 1.25rem;
  max-width: min(960px, calc(100% - 2rem));
  max-height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
}

.file-preview-body {
  min-height: 220px;
  max-height: calc(100vh - 8rem);
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1f1c;
  border-radius: var(--radius);
}

.file-preview-body img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
}

.file-preview-body iframe {
  width: 100%;
  height: calc(100vh - 9rem);
  border: 0;
  background: #fff;
}

.file-preview-fallback {
  color: #fff;
  font-size: 0.8125rem;
  padding: 1.5rem;
  text-align: center;
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.empty-state i,
.empty-state svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.65rem;
  opacity: 0.5;
  color: var(--brand-primary);
  display: block;
}

.alert-banner {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

.alert-banner--warn {
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.alert-banner--danger {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #9f1239;
}

.pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .dash-span-8,
  .dash-span-6,
  .dash-span-4 {
    grid-column: span 12;
  }
}

@media (max-width: 1024px) {
  .kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .modal-overlay:not(.hidden) {
    padding: 0.35rem 0;
    padding-bottom: max(0.35rem, env(safe-area-inset-bottom));
  }

  .modal-panel {
    width: calc(100% - 0.7rem);
    padding: 0.9rem 0.85rem 0.75rem;
  }

  .modal-panel--xl {
    height: calc(100vh - 0.7rem);
    height: calc(100dvh - 0.7rem);
    height: calc(100svh - 0.7rem);
    max-height: calc(100vh - 0.7rem);
    max-height: calc(100dvh - 0.7rem);
    max-height: calc(100svh - 0.7rem);
  }

  .modal-scroll {
    max-height: none;
  }

  .modal-footer {
    position: sticky;
    bottom: 0;
    margin-top: 0.65rem;
    padding-bottom: 0.15rem;
  }
}

.signin-page {
  min-height: 100vh;
  display: flex;
  background: var(--surface-muted);
}

.signin-hero {
  position: relative;
  min-height: 100vh;
  width: 50%;
  background:
    linear-gradient(160deg, rgba(15, 31, 28, 0.55), rgba(13, 148, 136, 0.45)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='1200' viewBox='0 0 800 1200'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%230f1f1c'/%3E%3Cstop offset='1' stop-color='%230d9488'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='800' height='1200'/%3E%3Cpath d='M0 900 Q200 800 400 920 T800 880 V1200 H0Z' fill='%230a1614' opacity='.45'/%3E%3Ccircle cx='620' cy='280' r='140' fill='%23fff' opacity='.05'/%3E%3C/svg%3E") center/cover no-repeat;
  color: #fff;
  padding: 3rem;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
}

.signin-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 20, 0.75), transparent 55%);
  pointer-events: none;
}

.signin-hero__content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.signin-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.05;
}

.signin-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2rem 1.25rem;
}

.signin-card {
  max-width: 420px;
  width: 100%;
}

@media (min-width: 1024px) {
  .signin-hero {
    display: flex;
  }
}

.vehicle-picker {
  position: relative;
}

.vehicle-picker__select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vehicle-picker__list {
  position: fixed;
  z-index: 80;
  max-height: 16rem;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 31, 28, 0.16);
}

.vehicle-picker__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.7rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.vehicle-picker__item:hover,
.vehicle-picker__item.is-active {
  background: var(--surface-muted);
}

.vehicle-picker__item-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
}

.vehicle-picker__item-meta {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.vehicle-picker__empty {
  padding: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.vehicle-picker__rates {
  margin-top: 0.4rem;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  background: var(--surface-muted);
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.45;
}
