/* ── Admisión: cards de pasos ───────────────────────────────────────────── */
.adm-step-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.adm-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
}
.adm-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #fff;
}
.adm-step-header--blue  { background: linear-gradient(135deg, #1a73e8, #4dabf7); }
.adm-step-header--green { background: linear-gradient(135deg, #1e8c45, #40c976); }
.adm-step-header--teal  { background: linear-gradient(135deg, #0b7c82, #20c997); }
.adm-step-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}
.adm-step-icon {
  font-size: 2rem;
  opacity: 0.75;
}
.adm-step-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #2d3748;
}
.adm-step-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.adm-step-btn {
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 5px 14px;
}
.gap-2 { gap: 0.5rem; }
/* ── fin cards de pasos ─────────────────────────────────────────────────── */

#panelLote .fila-lote { cursor: pointer; transition: background 0.15s; }
#panelLote .fila-lote:hover { background-color: #f0f7ff; }
#panelLote .fila-lote.seleccionado { background-color: #e8f4fd; outline: 2px solid #007bff; outline-offset: -2px; }
#panelLote .radio-lote { accent-color: #007bff; width: 16px; height: 16px; }
.barra-remanente { height: 10px; border-radius: 5px; background: #e9ecef; overflow: hidden; }
.barra-remanente-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, #28a745, #85c88a); transition: width 0.3s ease; }
.barra-remanente-fill.poca { background: linear-gradient(90deg, #dc3545, #f18d95); }
.badge-vence-ok   { background-color: #d4edda; color: #155724; }
.badge-vence-prox { background-color: #fff3cd; color: #856404; }
.badge-vence-venc { background-color: #f8d7da; color: #721c24; }
