/* Estilos propios del Conciliador de Comisiones (complementan Tailwind) */

.tarjeta-metrica {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.tarjeta-metrica .valor {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.tarjeta-metrica .etiqueta {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.tarjeta-metrica.ok { border-left: 4px solid #10b981; }
.tarjeta-metrica.alerta { border-left: 4px solid #f59e0b; }
.tarjeta-metrica.problema { border-left: 4px solid #ef4444; }
.tarjeta-metrica.info { border-left: 4px solid #3b82f6; }

/* Zonas de carga de archivos (drag & drop) */
.zona-carga {
  border: 2px dashed #cbd5e1;
  border-radius: 0.85rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}

.zona-carga:hover,
.zona-carga.arrastrando {
  border-color: #15A8A0;
  background-color: #e6f7f6;
}

.zona-carga.cargada {
  border-style: solid;
  border-color: #10b981;
  background-color: #ecfdf5;
}

/* Filas del mapeo de columnas */
.fila-mapeo {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 0.5rem;
}

.fila-mapeo label {
  font-size: 0.82rem;
  color: #475569;
}

.fila-mapeo select {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: #0f172a;
  background: white;
  width: 100%;
}

.fila-mapeo select.sin-asignar {
  border-color: #f59e0b;
  background-color: #fffbeb;
}
