/* Dashboard styles */
.dashboard-card {
  padding: 1rem;
  border-radius: var(--pico-border-radius);
  background: var(--pico-card-background-color);
  box-shadow: var(--pico-card-box-shadow);
  margin-bottom: 1rem;
}

.dashboard-card h3 {
  margin-top: 0;
  color: var(--pico-primary);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--pico-primary);
  margin: 0.5rem 0;
}

.stat-label {
  color: var(--pico-muted-color);
  font-size: 0.875rem;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--pico-border-radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.status-pending {
  background-color: var(--pico-primary);
  color: white;
}

.status-partial {
  background-color: var(--pico-secondary-background);
  color: white;
}

.status-completed {
  background-color: var(--pico-form-element-valid-border-color);
  color: white;
}

.status-canceled {
  background-color: var(--pico-form-element-invalid-border-color);
  color: white;
}

.recent-items {
  list-style: none;
  /* margin: 0; */
  /* padding: 0; */
}

.recent-items li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pico-muted-border-color);
}

.recent-items li:last-child {
  border-bottom: none;
}

.chart-container {
  height: 300px;
  margin: 1rem 0;
}

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

/* Quick actions section */
.quick-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quick-actions a {
  flex: 1;
  text-align: center;
}
