/* styles.css - Shared across all pages */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
}

.kanban-column {
  min-height: 70vh;
  transition: background 0.2s ease;
}

.card {
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.low-stock-badge {
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.7rem;
}

.restock-action-btn {
  background: #f59e0b;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s;
}

.restock-action-btn:hover {
  background: #d97706;
  transform: scale(1.05);
}

/* Status badges */
.status-waiting {
  background: #fef3c7;
  color: #92400e;
}

.status-progress {
  background: #dbeafe;
  color: #1e40af;
}

.status-done {
  background: #d1fae5;
  color: #065f46;
}

/* Dashboard specific */
.stat-card {
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
}

/* Navigation active state */
.nav-btn.active {
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  color: #4338ca;
}

/* Payment method selection */
.payment-method-option.selected {
  border-color: #10b981;
  background: #f0fdf4;
}

/* Employee action buttons */
.employee-action-btn {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  transition: all 0.2s;
}

.edit-btn {
  background: #dbeafe;
  color: #1e40af;
}

.edit-btn:hover {
  background: #bfdbfe;
}

.delete-btn {
  background: #fee2e2;
  color: #991b1b;
}

.delete-btn:hover {
  background: #fecaca;
}

/* Responsive table */
@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr;
  }
  
  table {
    font-size: 0.75rem;
  }
}