/* ══════════════════════════════════════════════════════════
   MODULO MOVIMIENTO V7 — Dashboard BI Profesional
   Prefijo: .mov- (evita colisiones)
   ══════════════════════════════════════════════════════════ */

#movRoot { width: 100%; padding: 0; margin: 0; }

/* ── HEADER ── */
.mov-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1D4ED8 100%);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  color: #fff;
}
.mov-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.mov-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}
.mov-subtitle {
  font-size: 13px;
  opacity: 0.7;
  margin: 3px 0 0;
  font-weight: 500;
}
.mov-header-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* ── CHIPS ── */
.mov-chips { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
.mov-chip {
  padding: 6px 14px;
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.mov-chip:hover { background: rgba(255,255,255,0.18); }
.mov-chip.active {
  background: #fff;
  color: #1D4ED8;
  border-color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ── RANGO ── */
.mov-rango {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mov-rango input[type="date"] {
  padding: 5px 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.mov-rango input[type="date"]:focus { background: rgba(255,255,255,0.2); outline: none; }
.mov-rango input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.mov-rango-sep { color: rgba(255,255,255,0.5); font-weight: 700; font-size: 12px; }
.mov-btn-aplicar {
  padding: 5px 12px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

/* ── SELECT VENDEDOR ── */
.mov-select-vendedor {
  padding: 6px 10px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  max-width: 220px;
}
.mov-select-vendedor:focus { background: rgba(255,255,255,0.2); outline: none; }
.mov-select-vendedor option { color: #1E293B; background: #fff; }

/* ── KPIs ── */
.mov-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mov-kpi {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s, transform 0.15s;
}
.mov-kpi:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-1px); }
.mov-kpi-btn { cursor: pointer; }
.mov-kpi-btn:active { transform: translateY(0) scale(0.97); }
.mov-kpi-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.mov-kpi-ico-1 { background: #DBEAFE; }
.mov-kpi-ico-2 { background: #D1FAE5; }
.mov-kpi-ico-3 { background: #FEF3C7; }
.mov-kpi-ico-4 { background: #EDE9FE; }
.mov-kpi-ico-5 { background: #FFE4E6; }
.mov-kpi-body { display: flex; flex-direction: column; min-width: 0; }
.mov-kpi-num {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mov-kpi-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ── TABS BAR ── */
.mov-tabs-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.mov-tabs { display: flex; gap: 4px; background: #F1F5F9; border-radius: 10px; padding: 3px; }
.mov-tab {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.mov-tab:hover { color: #1E293B; }
.mov-tab.active {
  background: #fff;
  color: #1D4ED8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.mov-btn-export {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.mov-btn-export:hover { background: #F8FAFC; border-color: #CBD5E1; color: #1D4ED8; }
.mov-btn-export svg { flex-shrink: 0; }

/* ── SEARCH BAR ── */
.mov-search-bar { margin-bottom: 16px; }
.mov-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 14px;
  gap: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mov-search-wrap:focus-within { border-color: #1D4ED8; box-shadow: 0 0 0 3px rgba(29,78,216,0.08); }
.mov-search-ico { color: #94A3B8; flex-shrink: 0; }
.mov-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  background: transparent;
}
.mov-search-input::placeholder { color: #94A3B8; font-weight: 400; }
.mov-search-clear {
  border: none;
  background: #F1F5F9;
  color: #64748B;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.mov-search-clear:hover { background: #E2E8F0; color: #1E293B; }
.mov-search-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #F0F9FF;
  border-bottom: 1px solid #BAE6FD;
  font-size: 13px;
  color: #0369A1;
  font-weight: 600;
  gap: 12px;
  flex-wrap: wrap;
}
.mov-search-back {
  border: 1px solid #BAE6FD;
  background: #fff;
  color: #0369A1;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.mov-search-back:hover { background: #E0F2FE; }

/* ── CONTENT ── */
.mov-content {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  min-height: 300px;
  overflow: hidden;
}

/* ── TABLE ── */
.mov-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mov-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.mov-table th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid #E2E8F0;
  background: #F8FAFC;
  position: sticky;
  top: 0;
  z-index: 5;
}
.mov-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #1E293B;
  border-bottom: 1px solid #F1F5F9;
}
.mov-table tbody tr { transition: background 0.1s; }
.mov-table tbody tr:hover { background: #F8FAFC; }
.mov-table tbody tr.mov-row-top { background: linear-gradient(90deg, rgba(29,78,216,0.03), transparent); }
.tc { text-align: center !important; }
.tr { text-align: right !important; }
.mov-cod { font-weight: 600; color: #64748B !important; font-size: 12px !important; }
.mov-name { font-weight: 700 !important; }
.mov-muted { color: #94A3B8 !important; }
.mov-bold { font-weight: 800 !important; }

/* ── RANK ── */
.mov-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}
.mov-r1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #fff; box-shadow: 0 2px 6px rgba(255,215,0,0.4); }
.mov-r2 { background: linear-gradient(135deg, #C0C0C0, #9CA3AF); color: #fff; }
.mov-r3 { background: linear-gradient(135deg, #CD7F32, #B8650A); color: #fff; }
.mov-rn { background: #F1F5F9; color: #64748B; }
.mov-medal { font-size: 16px; margin-left: 4px; vertical-align: middle; }

/* ── VENDEDOR CARDS ── */
.mov-vend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
  padding: 20px;
}
.mov-vcard {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #E2E8F0;
  transition: all 0.15s;
}
.mov-vcard:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.mov-vcard-click { cursor: pointer; }
.mov-vcard-click:active { transform: translateY(0) scale(0.98); }
.mov-vcard-top { border-left: 3px solid #1D4ED8; }
.mov-vcard-solo { max-width: 500px; margin: 20px auto; border: 2px solid #E2E8F0; }
.mov-vcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 8px;
}
.mov-vcard-pos { font-size: 18px; margin-right: 6px; vertical-align: middle; }
.mov-vcard-name { font-size: 15px; font-weight: 800; color: #0F172A; }
.mov-vcard-emoji { font-size: 24px; flex-shrink: 0; }
.mov-vcard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mov-vcard-stats-big { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); }
.mov-vstat { text-align: center; }
.mov-vstat-val {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}
.mov-vstat-big { font-size: 20px !important; color: #1D4ED8 !important; }
.mov-vstat-lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── PROGRESS BAR ── */
.mov-vprog { margin-top: 10px; }
.mov-vprog-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 5px;
}
.mov-vprog-pct { font-weight: 800; color: #0F172A; }
.mov-vprog-bar {
  width: 100%;
  height: 10px;
  background: #F1F5F9;
  border-radius: 5px;
  overflow: hidden;
}
.mov-vprog-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.5s ease;
  min-width: 2px;
}
.mov-bg { background: linear-gradient(90deg, #FFD700, #F59E0B); }
.mov-bgr { background: linear-gradient(90deg, #22C55E, #4ADE80); }
.mov-by { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.mov-br { background: linear-gradient(90deg, #EF4444, #F87171); }

.mov-vmsg { font-size: 12px; font-weight: 700; margin-top: 8px; }
.mov-vfalta { font-size: 11px; color: #EF4444; font-weight: 600; margin-top: 4px; }
.mov-vno-meta { font-size: 11px; color: #94A3B8; margin-top: 4px; }

/* ── EMPTY ── */
.mov-empty {
  text-align: center;
  padding: 50px 24px;
  color: #94A3B8;
}
.mov-empty-ico { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.mov-empty p { font-size: 15px; font-weight: 600; margin: 0; color: #64748B; }
.mov-empty-hint { font-size: 12px; color: #94A3B8; margin-top: 6px; display: block; }

/* ── LOADING ── */
.mov-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.mov-spin {
  width: 36px;
  height: 36px;
  border: 3px solid #E2E8F0;
  border-top-color: #1D4ED8;
  border-radius: 50%;
  animation: movSpin 0.7s linear infinite;
}
@keyframes movSpin { to { transform: rotate(360deg); } }

.mov-pulse { animation: movPulse 1s ease-in-out infinite; }
@keyframes movPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.mov-mi-meta { padding: 20px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .mov-kpis { grid-template-columns: repeat(3, 1fr); }
  .mov-vend-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .mov-header { padding: 16px; border-radius: 12px; }
  .mov-header-top { flex-direction: column; }
  .mov-header-controls { align-items: stretch; width: 100%; }
  .mov-chips { justify-content: center; }
  .mov-select-vendedor { max-width: 100%; }
  .mov-kpis { grid-template-columns: repeat(2, 1fr); }
  .mov-kpi { padding: 12px; gap: 10px; }
  .mov-kpi-ico { width: 38px; height: 38px; font-size: 18px; }
  .mov-kpi-num { font-size: 16px; }
  .mov-tabs-bar { flex-direction: column; align-items: stretch; }
  .mov-tabs { justify-content: center; }
  .mov-btn-export { justify-content: center; }
  .mov-vend-grid { grid-template-columns: 1fr; padding: 14px; }
  .mov-vcard-stats { grid-template-columns: repeat(2, 1fr); }
  .mov-table { min-width: 500px; }
  .mov-title { font-size: 18px; }
}

@media (max-width: 480px) {
  .mov-kpis { grid-template-columns: 1fr 1fr; }
  .mov-kpis .mov-kpi:last-child { grid-column: span 2; }
  .mov-chip { padding: 5px 10px; font-size: 11px; }
  .mov-table th, .mov-table td { padding: 8px 10px; font-size: 12px; }
}

@media (min-width: 1400px) {
  #movRoot { padding: 0 16px; }
  .mov-kpi-num { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════
   ABASTECIMIENTO INTELIGENTE — Dashboard BI ejecutivo
   ══════════════════════════════════════════════════════════ */

/* Tab Abastecimiento con badge */
.mov-tab-abasto {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mov-tab-ico { font-size: 14px; }
.mov-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 4px;
  border-radius: 9px;
  background: #DC2626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.18);
}
.mov-tab-abasto.active .mov-tab-badge { background: #fff; color: #DC2626; box-shadow: none; }

/* Loading texto */
.mov-loading-txt {
  margin-top: 12px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

/* KPIs específicos del abasto — 5 tarjetas con borde lateral de color */
.mov-abasto-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mov-akpi {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-left-width: 4px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mov-akpi:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,23,42,0.08);
}
.mov-akpi-ico {
  font-size: 24px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F1F5F9;
  flex-shrink: 0;
}
.mov-akpi-body { flex: 1; min-width: 0; }
.mov-akpi-num {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.mov-akpi-lbl {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 2px;
}
/* Colores semánticos por tipo de KPI */
.mov-akpi-crit { border-left-color: #DC2626; }
.mov-akpi-crit .mov-akpi-ico { background: #FEE2E2; }
.mov-akpi-crit .mov-akpi-num { color: #B91C1C; }
.mov-akpi-alta { border-left-color: #F59E0B; }
.mov-akpi-alta .mov-akpi-ico { background: #FEF3C7; }
.mov-akpi-alta .mov-akpi-num { color: #D97706; }
.mov-akpi-und { border-left-color: #3B82F6; }
.mov-akpi-und .mov-akpi-ico { background: #DBEAFE; }
.mov-akpi-und .mov-akpi-num { color: #1D4ED8; }
.mov-akpi-inv { border-left-color: #10B981; }
.mov-akpi-inv .mov-akpi-ico { background: #D1FAE5; }
.mov-akpi-inv .mov-akpi-num { color: #047857; }
.mov-akpi-pred { border-left-color: #8B5CF6; }
.mov-akpi-pred .mov-akpi-ico { background: #EDE9FE; }
.mov-akpi-pred .mov-akpi-num { color: #6D28D9; }

/* Controles (cobertura + filtros) */
.mov-abasto-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.mov-abasto-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mov-abasto-control > label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mov-abasto-cob {
  display: inline-flex;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  overflow: hidden;
  background: #F8FAFC;
}
.mov-abasto-cob-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.mov-abasto-cob-btn + .mov-abasto-cob-btn { border-left: 1px solid #CBD5E1; }
.mov-abasto-cob-btn:hover { background: #E2E8F0; color: #1E293B; }
.mov-abasto-cob-btn.active {
  background: #1D4ED8;
  color: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.mov-abasto-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #334155;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}
.mov-abasto-toggle input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: #1D4ED8;
}
.mov-abasto-info {
  margin-left: auto;
  font-size: 12px;
  color: #64748B;
}
.mov-abasto-info strong { color: #0F172A; font-weight: 700; }

/* Tabla densa */
.mov-abasto-table-wrap { max-height: 70vh; overflow: auto; }
.mov-abasto-table { font-size: 12.5px; }
.mov-abasto-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #F8FAFC;
  border-bottom: 2px solid #CBD5E1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #475569;
  padding: 10px 8px;
}
.mov-abasto-table td {
  padding: 9px 8px;
  vertical-align: middle;
}
.mov-abasto-table tbody tr { transition: background 0.1s; }
.mov-abasto-table tbody tr:hover { background: #F1F5F9; }

/* Badges de urgencia */
.mov-urg-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.mov-urg-critica .mov-urg-badge { background: #FEE2E2; color: #991B1B; box-shadow: 0 0 0 1px #FCA5A5 inset; }
.mov-urg-alta    .mov-urg-badge { background: #FEF3C7; color: #92400E; box-shadow: 0 0 0 1px #FCD34D inset; }
.mov-urg-media   .mov-urg-badge { background: #DBEAFE; color: #1E40AF; box-shadow: 0 0 0 1px #93C5FD inset; }
.mov-urg-baja    .mov-urg-badge { background: #E2E8F0; color: #475569; box-shadow: 0 0 0 1px #CBD5E1 inset; }
.mov-urg-ok      .mov-urg-badge { background: #D1FAE5; color: #065F46; box-shadow: 0 0 0 1px #6EE7B7 inset; }

/* Fila con barra lateral según urgencia */
.mov-urg-critica td:first-child { border-left: 3px solid #DC2626; }
.mov-urg-alta    td:first-child { border-left: 3px solid #F59E0B; }
.mov-urg-media   td:first-child { border-left: 3px solid #3B82F6; }
.mov-urg-baja    td:first-child { border-left: 3px solid #94A3B8; }
.mov-urg-ok      td:first-child { border-left: 3px solid #10B981; }

/* Stock crítico destacado */
.mov-stock-zero { color: #DC2626; font-weight: 800; }
.mov-stock-low  { color: #D97706; font-weight: 700; }

/* Días para quiebre */
.mov-dias-q { color: #1E293B; font-weight: 700; }
.mov-urg-critica .mov-dias-q { color: #DC2626; }
.mov-urg-alta    .mov-dias-q { color: #D97706; }

/* Tendencia */
.mov-tend-up { color: #047857; font-weight: 700; }
.mov-tend-dn { color: #B91C1C; font-weight: 700; }
.mov-tend-eq { color: #64748B; font-weight: 600; }

/* Predicción */
.mov-pred { color: #6D28D9; font-weight: 600; }

/* Columna SUGERIDO (destacada) */
.mov-sug-th { background: #EFF6FF !important; color: #1D4ED8 !important; }
.mov-sug-cell { background: #F0F9FF; color: #1D4ED8; font-size: 14px; }
.mov-urg-critica .mov-sug-cell { background: #FEF2F2; color: #B91C1C; }
.mov-urg-alta    .mov-sug-cell { background: #FFFBEB; color: #B45309; }

/* Responsivo */
@media (max-width: 1100px) {
  .mov-abasto-kpis { grid-template-columns: repeat(3, 1fr); }
  .mov-akpi-pred, .mov-akpi-inv { grid-column: span 1; }
}
@media (max-width: 768px) {
  .mov-abasto-kpis { grid-template-columns: 1fr 1fr; }
  .mov-akpi-num { font-size: 18px; }
  .mov-akpi-ico { width: 36px; height: 36px; font-size: 20px; }
  .mov-abasto-controls { flex-direction: column; align-items: stretch; gap: 10px; }
  .mov-abasto-control { justify-content: space-between; }
  .mov-abasto-info { margin-left: 0; }
  .mov-abasto-table { min-width: 1000px; }
}
@media (max-width: 480px) {
  .mov-abasto-kpis { grid-template-columns: 1fr; }
}
