/**
 * Lote Processing Styles
 * Dashboard de procesamiento de lotes
 */

/* Lote Progress Bar */
.lote-progress-bar {
  width: 100%;
  height: 12px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.lote-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-600), var(--primary-500));
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.lote-progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.lote-progress-stat {
  text-align: center;
}

.lote-progress-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.lote-progress-stat-label {
  font-size: 0.875rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Products Table */
.products-table {
  width: 100%;
  border-collapse: collapse;
}

.products-table thead {
  background: var(--slate-50);
  border-bottom: 2px solid var(--slate-200);
}

.products-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-600);
}

.products-table td {
  padding: 16px;
  border-bottom: 1px solid var(--slate-100);
}

.products-table tbody tr:hover {
  background: var(--slate-50);
}

.products-table code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-600);
  background: var(--primary-50);
  padding: 4px 8px;
  border-radius: var(--radius-md);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.status-completed {
  background: var(--success-light);
  color: var(--success);
}

.status-badge.status-in-progress {
  background: var(--warning-light);
  color: var(--warning);
}

.status-badge.status-pending {
  background: var(--slate-100);
  color: var(--slate-600);
}

/* Button Large */
.btn-lg {
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
}

/* Lote Cards (for dashboard) */
.lote-card {
  padding: var(--spacing-md);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.lote-card:hover {
  background: white;
  border-color: var(--primary-400);
  box-shadow: var(--shadow-sm);
}

.lote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.lote-card-id {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--slate-900);
}

.lote-card-client {
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-bottom: 12px;
}

.lote-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--slate-600);
}
