/* Contenedor principal para scroll vertical */
.table-responsive-productos {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: auto;
  position: relative;
}

/* Tabla general */
.table-productos {
  width: 100%;
  border-collapse: collapse;
}

/* Encabezado fijo con color azul material claro */
.table-productos thead th {
  position: sticky;
  top: 0;
  background-color: #42a5f5; /* Azul más claro que el original */
  color: #ffffff;
  z-index: 10;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  border-bottom: 2px solid #1976d2; /* Azul más oscuro para separación */
  box-shadow: 0 2px 2px rgba(0,0,0,0.05);
}

/* Cuerpo de la tabla */
.table-productos tbody td {
  vertical-align: middle;
}

/* Colores de estado con badges circulares */
.text-success {
  color: #2e7d32 !important; /* Verde oscuro */
}

.text-warning {
  color: #f57c00 !important; /* Naranja */
}

.text-danger {
  color: #c62828 !important; /* Rojo oscuro */
}

.badge {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

/* Filas al pasar el cursor */
.table-productos tbody tr:hover {
  background-color: #f1f7ff; /* Azul muy suave */
}

/* Fila seleccionada (opcional si quieres hacer clic en fila) */
.selected-row-producto {
  background-color: #bbdefb !important; /* Azul claro */
}
