/* Customer Dashboard page styles */
.stat-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}

.stat-card.highlight-green {
  border-left: 4px solid #22c55e;
}

.stat-card.highlight-yellow {
  border-left: 4px solid #eab308;
}

.stat-card.highlight-red {
  border-left: 4px solid #ef4444;
}

.customer-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.customer-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.customer-table tr:hover {
  background-color: #f9fafb;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-badge.shipped {
  background-color: #dcfce7;
  color: #166534;
}

.status-badge.paid {
  background-color: #fef9c3;
  color: #854d0e;
}

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

.status-badge.failed {
  background-color: #fee2e2;
  color: #991b1b;
}
