
.leaflet-div-icon, .orcha-map-div-icon {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
/* Layout Utilities */
.container { padding: var(--space-lg); }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #2563EB);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:active { background: linear-gradient(135deg, #2563EB, var(--brand-primary)); }

.btn-secondary {
  background-color: var(--bg-surface-elevated);
  color: var(--text-primary);
}
.btn-secondary:hover { background-color: #2D3748; }

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { color: var(--text-primary); background-color: var(--bg-surface); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--text-tertiary);
  color: var(--text-primary);
}

.btn-block { width: 100%; }

/* Cards for UI elements */
.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-fast);
}

.card-interactive:active { transform: scale(0.98); border-color: rgba(255, 255, 255, 0.1); }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-ghost { background-color: var(--status-ghost-bg); color: var(--status-ghost); }
.badge-warning { background-color: var(--status-warning-bg); color: var(--status-warning); }
.badge-success { background-color: var(--status-success-bg); color: var(--status-success); }
.badge-info { background-color: var(--status-info-bg); color: var(--status-info); }
.badge-danger { background-color: var(--status-danger-bg); color: var(--status-danger); }

/* Inputs */
.input-group { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: var(--space-md); }
.input-label { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.input-field {
  background-color: var(--bg-deep);
  border: 1px solid var(--bg-surface-elevated);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}
.input-field:focus { outline: none; border-color: var(--brand-primary); }

/* Screen Headers */
.screen-header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: var(--bg-glass);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-in { 
  animation: fade-in-up 0.3s ease-out forwards; 
}
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.1s; }
.delay-3 { animation-delay: 0.15s; }

/* Bottom Sheet Component */
.bottom-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: var(--bg-surface);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--transition-bounce);
}

.bottom-sheet.open { transform: translateY(0); }

.bottom-sheet-handle {
  width: 40px; height: 4px;
  background-color: var(--bg-surface-elevated);
  border-radius: 2px;
  margin: 0 auto var(--space-md);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.overlay.open { opacity: 1; pointer-events: auto; }

/* Role Switcher Container */
#role-switcher {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #333;
  padding: 0.5rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.role-btn {
  background: #1a1a1a;
  border: 1px solid #444;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.role-btn.active {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

/* Operational Map Elements */
.tactical-map {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  background: #02050A; /* Deeper ocean bleed */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  touch-action: none; /* Crucial for JS pointer dragging */
  display: block;
}

.tactical-map-surface {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  background-image: url('../assets/santorini_map.png');
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  transition: transform 0.1s linear; /* Smooth zooming/panning slightly */
  
  /* Crucial for responsive proportional overlay scaling */
  container-type: inline-size;
  container-name: mapsurface;
}

.map-zone {
  position: absolute;
  padding: 6px 12px;
  background: #1e293b;
  transform: translate(-50%, -200%) scale(calc(1 / var(--map-zoom, 1))); /* Inverse scale to prevent text inflation */
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: #f8fafc;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 600;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  display: flex;
}

.map-zone:active {
  background: #2563eb;
  border-color: #3b82f6;
  z-index: 20;
}

.map-mode-control {
  display: flex; align-items: center; gap: 8px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  color: white; cursor: pointer;
  width: max-content;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.2s;
}
.map-mode-control:hover {
  background: rgba(30, 41, 59, 0.9);
}

.map-action-chip {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #cbd5e1;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.75rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.map-action-chip:hover {
  background: rgba(30, 41, 59, 0.8); color: white;
}
.map-action-chip.active {
  background: #0ea5e9; border-color: #38bdf8; color: white;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}
.no-scroll::-webkit-scrollbar { display: none; }

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #10b981;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(calc(0.5 + (0.5 / var(--map-zoom, 1))));
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s;
  z-index: 12;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.tactical-map.targeting .map-pin:hover {
  transform: translate(-50%, -50%) scale(calc(0.7 + (0.5 / var(--map-zoom, 1))));
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  border-color: #0ea5e9;
  z-index: 20;
}
.map-pin.busy {
  background: #f59e0b;
.map-pin.break {
  background: transparent !important;
  border: 3px solid #FFD84D !important;
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.18), 0 0 14px rgba(255, 216, 77, 0.45) !important;
  opacity: 0.95 !important;
}

.map-pin.action-rescue {
  background: #00e5ff;
  border: 2px solid #ffffff;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.7), inset 0 0 4px rgba(255,255,255,0.8);
  z-index: 18;
}

/* Map Ride Pin (Urgent / Default) */
.map-ride-pin {
  position: absolute;
  width: clamp(14px, 4.5cqw, 24px);
  height: clamp(14px, 4.5cqw, 24px);
  background: transparent;
  border: clamp(2px, 0.8cqw, 3px) solid #ef4444; /* red urgency */
  border-radius: 4px;
  transform: translate(-50%, -50%); /* EXACT Anchor Center */
  cursor: pointer;
  z-index: 14;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  transition: all 0.2s;
}
.map-ride-pin::after {
  content: ''; position: absolute;
  top: -40%; right: -40%; bottom: -40%; left: -40%;
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.5);
  animation: pulse-ring 2s ease-out infinite;
}
.map-ride-pin:active, .map-ride-pin.active {
  background: #ef4444;
  transform: translate(-50%, -50%) scale(1.3);
  z-index: 25;
}

/* Map Ride Pin (Normal / Scheduled) */
.map-ride-pin.normal {
  border-color: #0ea5e9;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}
.map-ride-pin.normal::after {
  border-color: rgba(14, 165, 233, 0.5);
  animation: pulse-ring-normal 3s ease-out infinite;
}

/* Intelligent Map Modifiers */
.map-ride-pin.risk-amber { border-color: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.5); }
.map-ride-pin.risk-amber::after { border-color: rgba(245, 158, 11, 0.5); }
.map-ride-pin.risk-orange { border-color: #f97316; box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
.map-ride-pin.risk-orange::after { border-color: rgba(249, 115, 22, 0.5); }
.map-ride-pin.risk-red { border-color: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
.map-ride-pin.risk-red::after { border-color: rgba(239, 68, 68, 0.5); }

.rank-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: #10b981; color: white;
  font-size: 0.6rem; font-weight: bold;
  padding: 2px 6px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 30; box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transform: scale(calc(1 / var(--map-zoom, 1)));
  transform-origin: bottom left;
  pointer-events: none;
}
.rank-badge.rank-1 { background: #0ea5e9; transform: scale(calc(1.1 / var(--map-zoom, 1))); }
.rank-badge.rank-2 { background: #3b82f6; }
.rank-badge.rank-3 { background: #64748b; }

.intel-label {
  position: absolute;
  top: -25px; left: 50%; 
  background: rgba(15,23,42,0.85); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: white; font-size: 0.65rem; font-weight: bold;
  padding: 3px 8px; border-radius: 6px;
  white-space: nowrap; z-index: 25;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  display: flex; gap: 4px; align-items: center;
  transform: translateX(-50%) scale(calc(1 / var(--map-zoom, 1)));
  transform-origin: bottom center;
  pointer-events: none;
}
.intel-label.amber { color: #fcd34d; border-color: rgba(245,158,11,0.4); }
.intel-label.orange { color: #fdba74; border-color: rgba(249,115,22,0.4); }
.intel-label.red { color: #fca5a5; border-color: rgba(239,68,68,0.4); }
.intel-label.best-match-highlight { color: #0ea5e9; border-color: #0ea5e9; background: rgba(15,23,42,0.95); font-size: 0.75rem; padding: 4px 10px; }
.intel-label.subtle-intel { color: #94a3b8; background: rgba(15,23,42,0.6); border-color: rgba(255,255,255,0.05); }
.intel-label.subtle-red { color: #fca5a5; background: rgba(15,23,42,0.6); border-color: rgba(239,68,68,0.2); }

.rebalance-path {
  stroke-dasharray: 6;
  animation: dash-flow 20s linear infinite;
}
.leader-line {
  stroke-dasharray: 4;
  animation: dash-flow 15s linear reverse infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -100; } }
.map-ride-pin.normal:active, .map-ride-pin.normal.active {
  background: #0ea5e9;
}

/* Targeting Mode Map Overlay Logic */
.tactical-map.targeting .map-pin { opacity: 0.6; }
.tactical-map.targeting .map-pin:active { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
.tactical-map.targeting .map-zone { opacity: 0.2; pointer-events: none; }
.tactical-map.targeting .map-ride-pin:not(.active) { opacity: 0.2; pointer-events: none; }

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse-ring-normal {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab-container {
  display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none;
  padding: 0.5rem 0; margin-top: 1rem; border-top: 1px dashed var(--bg-surface-elevated);
}
.fab-btn {
  white-space: nowrap; padding: 0.4rem 0.8rem; background: var(--bg-surface);
  border: 1px solid var(--text-tertiary); border-radius: 20px; color: var(--text-secondary);
  font-size: 0.7rem; font-weight: 600; cursor: pointer;
}
.map-ride-pin.urgent-green { border-color: #10b981 !important; box-shadow: 0 0 10px rgba(16, 185, 129, 0.5) !important; background: #10b981 !important; }
.map-ride-pin.urgent-green::after { border-color: rgba(16, 185, 129, 0.5) !important; }


/* === LEAFLET MAP INTEGRATION & LUXURY PINS === */
#ops-leaflet-map, #guest-live-map {
  width: 100%;
  height: 100%;
  background: #0B0E14 !important;
  font-family: var(--font-sans);
  z-index: 1;
}

.leaflet-container {
  background: #0B0E14 !important;
  outline: none;
}

.leaflet-div-icon { background: transparent !important; border: none !important; }

/* Map Driver Pin */
.orcha-driver-pin {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px 4px 6px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 12px rgba(56, 189, 248, 0.25);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  user-select: none;
}

.orcha-driver-pin:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.5);
  border-color: #38BDF8;
  z-index: 9999 !important;
}

.orcha-driver-pin .driver-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #1E293B;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.orcha-driver-pin.free .driver-icon {
  background: #065F46;
  color: #34D399;
  border: 1.5px solid #10B981;
}

.orcha-driver-pin.busy .driver-icon {
  background: #7C2D12;
  color: #FDBA74;
  border: 1.5px solid #F97316;
}

.orcha-driver-pin.repositioning .driver-icon {
  background: #075985;
  color: #7DD3FC;
  border: 1.5px solid #0EA5E9;
}

.orcha-driver-pin.break .driver-icon {
  background: #334155;
  color: #94A3B8;
  border: 1.5px solid #64748B;
}

.orcha-driver-pin .driver-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 0.2px;
}

.orcha-driver-pin .driver-plate {
  font-size: 0.6rem;
  color: #94A3B8;
  font-family: var(--font-mono);
}

/* Map Zone Marker */
.orcha-zone-marker {
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.orcha-zone-marker:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.orcha-zone-badge {
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 4px 10px;
  border-radius: 8px;
  color: #F8FAFC;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.2);
  white-space: nowrap;
}

.orcha-zone-badge.deficit {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.35);
}

.orcha-zone-radar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  position: relative;
  margin-top: 4px;
}

.orcha-zone-marker.deficit .orcha-zone-radar {
  background: #EF4444;
  box-shadow: 0 0 10px #EF4444;
}

.orcha-zone-radar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid currentColor;
  transform: translate(-50%, -50%);
  animation: radar-pulse 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

/* Map Ride Marker (Urgent / Pending / Active) */
.orcha-ride-marker {
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.orcha-ride-marker:hover {
  transform: translate(-50%, -50%) scale(1.15);
  z-index: 10000 !important;
}

.orcha-ride-pill {
  background: #EF4444;
  color: white;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5), 0 0 15px rgba(239, 68, 68, 0.4);
  border: 1.5px solid #FCA5A5;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.orcha-ride-pill.normal {
  background: #0EA5E9;
  border-color: #7DD3FC;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.orcha-ride-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #EF4444;
  margin-top: 4px;
  position: relative;
}

.orcha-ride-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.4);
  transform: translate(-50%, -50%);
  animation: radar-pulse 1.6s ease-out infinite;
}

@keyframes radar-pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* Glassmorphism Luxury Panels */
.glass-panel {
  background: rgba(16, 20, 29, 0.8) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
}

.glass-card {
  background: rgba(24, 32, 47, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.glass-card:hover {
  border-color: rgba(56, 189, 248, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

/* Guest Live Tracking Map Container */
.guest-map-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.guest-car-marker {
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #10B981;
  border: 2.5px solid #FFFFFF;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.8), 0 8px 20px rgba(0,0,0,0.5);
  animation: guest-car-pulse 2s infinite ease-in-out;
}

@keyframes guest-car-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)); }
  50% { transform: translate(-50%, -50%) scale(1.1); filter: drop-shadow(0 0 16px rgba(16, 185, 129, 1)); }
}

.guest-stop-marker {
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid #F59E0B;
  color: #F8FAFC;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5), 0 0 12px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
}
