/* =========================================================
   ESTILOS PERSONALIZADOS - DASHBOARD ESL TMS PRIME
   ========================================================= */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Tab button active styling */
.tab-btn.active {
  background-color: #ffffff;
  color: #ea580c;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

/* Leaflet Map custom marker */
.custom-map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5841f;
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.custom-map-marker:hover {
  transform: scale(1.15);
  background-color: #d96e0f;
}

/* Barra de progresso horizontal customizada */
.bar-track {
  background-color: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  height: 18px;
  position: relative;
}

.bar-fill-orange {
  background: linear-gradient(90deg, #f5841f, #fb923c);
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill-slate {
  background: linear-gradient(90deg, #475569, #64748b);
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer Loading effect */
.shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
