.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
}

.stat-label {
  color: #64748b;
  margin-top: 0.5rem;
}

.orders-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.orders-table thead tr {
  border-bottom: 2px solid #e2e8f0;
}

.orders-table th {
  text-align: left;
  padding: 0.75rem;
  color: #64748b;
}

.orders-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.orders-table td {
  padding: 0.75rem;
}

.empty-state {
  color: #64748b;
  margin-top: 1rem;
}
