/* Fleet Manager - Estilos globales */

:root {
  --primary: #0d6efd;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tarjetas de riders en dashboard */
.badge-rider {
  background: #f8f9fa;
  min-width: 140px;
}

/* Tablas más compactas en mobile */
@media (max-width: 768px) {
  .table { font-size: 0.85rem; }
  .container-fluid { padding: 0.75rem; }
}

/* Scrollbar más delgada */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 2px; }

/* Leaflet fix z-index */
.leaflet-pane { z-index: 1; }
.leaflet-top, .leaflet-bottom { z-index: 2; }
