@import "Vazirmatn-font-face.css";

:root {
  /* ─── Color Palette ─── */
  --color-primary: #10b981;
  --color-primary-dark: #047857;
  --color-primary-light: #d1fae5;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-text-inverse: #ffffff;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  --color-border: #e2e8f0;

  /* ─── Spacing ─── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* ─── Typography ─── */
  --font-family-base: Vazirmatn, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Tahoma', 'B Yekan', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-hero: 2.75rem;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* ─── Radii ─── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* ─── Shadows ─── */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.025);
  --shadow-bottom-nav: 0 -4px 6px -1px rgba(0,0,0,0.05);

  /* ─── Effects ─── */
  --transition-base: all 0.2s ease-in-out;
  --blur-overlay: blur(6px);

  /* ─── Layout ─── */
  --header-height: 64px;
  --bottom-nav-height: 64px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overscroll-behavior: none;
}

body {
  font-family: var(--font-family-base);
  background: var(--color-bg);
  color: var(--color-text-main);
  overflow: hidden;
  position: fixed;
  inset: 0;
  line-height: 1.6;
  font-size: var(--text-base);
}

/* ═══════════════════════════════════
   HEADER — Single Row Layout
   ═══════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);

  /* ── Single-row flex ── */
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0 var(--space-md);
  padding-top: env(safe-area-inset-top);
}

/* ── Search (Right side in RTL — takes remaining space) ── */
.search-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
}

.search-bar {
  width: 100%;
  height: 40px;
  padding: 0 var(--space-md) 0 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  outline: none;
  transition: var(--transition-base);
}

.search-bar::placeholder {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.search-bar:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  background: var(--color-surface);
}

.search-icon {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-base);
}

.search-bar:focus ~ .search-icon,
.search-wrapper:focus-within .search-icon {
  fill: var(--color-primary);
}

/* ── Location Tag (Left side in RTL — fixed width, minimal) ── */
.location-tag {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  cursor: pointer;
  transition: var(--transition-base);
  height: 36px;
  white-space: nowrap;
}

.location-tag:active {
  background: var(--color-primary);
}

.location-tag:active .location-name {
  color: var(--color-text-inverse);
}

.location-tag:active .location-pin {
  fill: var(--color-text-inverse);
}

.location-pin {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.location-name {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-primary-dark);
  transition: var(--transition-base);
}

/* ── Pulse Dot ── */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}


/* ═══════════════════════════════════
   SCROLLABLE CONTENT
   ═══════════════════════════════════ */
.content-area {
  position: fixed;
  top: var(--header-height);
  bottom: var(--bottom-nav-height);
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.view {
  display: none;
  padding: var(--space-md);
  padding-bottom: var(--space-xl);
  min-height: 100%;
}

.view.active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   BOTTOM NAVIGATION
   ═══════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-surface);
  display: flex;
  box-shadow: var(--shadow-bottom-nav);
  padding-bottom: max(env(safe-area-inset-bottom), var(--space-xs));
  height: var(--bottom-nav-height);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: none;
  background: none;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-family: var(--font-family-base);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: var(--transition-base);
  min-width: 44px;
  min-height: 44px;
  position: relative;
  padding: var(--space-xs);
}

.nav-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: var(--transition-base);
}

.nav-item.active {
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ═══════════════════════════════════
   COMMON COMPONENTS
   ═══════════════════════════════════ */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: var(--transition-base);
  min-height: 44px;
}

.btn-primary:active {
  background: var(--color-primary-dark);
  transform: scale(0.98);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  font-weight: var(--weight-bold);
  cursor: pointer;
  transition: var(--transition-base);
  min-height: 44px;
}

.btn-secondary:active {
  background: var(--color-bg);
  transform: scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: var(--transition-base);
  min-height: 44px;
}

.btn-ghost:active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ═══════════════════════════════════
   VIEW 1: MARKET DASHBOARD
   ═══════════════════════════════════ */
.tonnage-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.tonnage-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
}

.tonnage-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-full);
}

.tonnage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.tonnage-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  opacity: 0.9;
}

.tonnage-date {
  font-size: var(--text-xs);
  opacity: 0.7;
  background: rgba(255,255,255,0.15);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.tonnage-value {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.tonnage-unit {
  font-size: var(--text-sm);
  text-align: center;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.commodity-cell {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  text-align: center;
  backdrop-filter: blur(4px);
}

.commodity-name {
  font-size: var(--text-xs);
  opacity: 0.85;
  margin-bottom: var(--space-xs);
}

.commodity-vol {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.commodity-vol svg {
  width: 16px;
  height: 16px;
}

.trend-up { fill: #86efac; }
.trend-down { fill: #fca5a5; }

.btn-tonnage {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.18);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  font-weight: var(--weight-medium);
  cursor: pointer;
  min-height: 44px;
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}

.btn-tonnage:active {
  background: rgba(255,255,255,0.3);
}

.demand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.demand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  padding: var(--space-xs);
  transition: var(--transition-base);
}

.demand-item:active {
  transform: scale(0.92);
}

.demand-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 2px solid var(--color-border);
  transition: var(--transition-base);
}

.demand-item:active .demand-icon {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.demand-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
  text-align: center;
}

/* ═══════════════════════════════════
   VIEW 2: STALLS DIRECTORY
   ═══════════════════════════════════ */
.stall-count-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) 0;
}

.stall-count-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.stall-count-label strong {
  color: var(--color-text-main);
  font-weight: var(--weight-bold);
}

.stall-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  border: none;
  cursor: pointer;
  min-height: 32px;
}

.stall-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.stall-card.verified {
  border: 2px solid var(--color-primary);
}

.stall-card.shadow {
  border: 1px solid var(--color-border);
}

.stall-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.stall-number {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-main);
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.badge-verified svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.stall-details {
  margin-bottom: var(--space-md);
}

.stall-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.stall-row svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-muted);
  flex-shrink: 0;
}

.stall-row strong {
  color: var(--color-text-main);
  font-weight: var(--weight-medium);
}

.stall-inventory-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.inventory-chip {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px var(--space-sm);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  border: 1px solid var(--color-border);
}

.stall-blurred {
  filter: var(--blur-overlay);
  pointer-events: none;
  opacity: 0.6;
  user-select: none;
}

.fomo-overlay {
  position: absolute;
  inset: 0;
  top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: var(--space-md);
  background: rgba(255,255,255,0.25);
}

.fomo-lock-icon {
  width: 40px;
  height: 40px;
  fill: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.fomo-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.btn-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-warning);
  color: var(--color-surface);
  font-size: var(--text-sm);
  font-family: var(--font-family-base);
  font-weight: var(--weight-bold);
  cursor: pointer;
  min-height: 44px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn-claim:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════
   VIEW 3: PROFILE
   ═══════════════════════════════════ */
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--header-height) - var(--bottom-nav-height) - var(--space-xl));
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.profile-avatar svg {
  width: 56px;
  height: 56px;
  fill: var(--color-primary);
}

.profile-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--space-sm);
}

.profile-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  max-width: 300px;
}

.profile-actions {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ═══════════════════════════════════
   BOTTOM SHEET MODAL
   ═══════════════════════════════════ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 100;
  align-items: flex-end;
  justify-content: center;
}

.modal-backdrop.active {
  display: flex;
}

.modal-sheet {
  background: var(--color-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: var(--space-lg);
  padding-bottom: max(env(safe-area-inset-bottom), var(--space-lg));
  width: 100%;
  max-height: 75vh;
  overflow-y: auto;
  animation: sheetUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: var(--shadow-lg);
}

@keyframes sheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
}

.modal-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: var(--space-md);
}

.modal-stall-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.modal-stall-item:last-child {
  border-bottom: none;
}

.modal-stall-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.modal-stall-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-success);
}

.modal-stall-dot.inactive {
  background: var(--color-border);
}

.modal-stall-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-main);
}

.modal-stall-status {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.modal-stall-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.modal-stall-action:active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.modal-stall-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ═══════════════════════════════════
   LIVE PULSE DOT
   ═══════════════════════════════════ */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ═══════════════════════════════════
   QUICK STATS BAR
   ═══════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.stat-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.stat-value {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary-dark);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════
   LATEST ARRIVALS
   ═══════════════════════════════════ */
.arrival-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
}

.arrival-emoji {
  font-size: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrival-info {
  flex: 1;
  min-width: 0;
}

.arrival-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-text-main);
}

.arrival-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.arrival-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  flex-shrink: 0;
  text-align: left;
}