.dashboard-container {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
  padding: 2rem;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.dashboard-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.dashboard-subtitle {
  color: #475569;
}

.dashboard-select {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #374151;
  outline: none;
  transition: all 0.2s ease;
}

.dashboard-select:focus {
  ring: 2px solid #3b82f6;
  border-color: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease;
}

.stat-card:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-icon-red {
  /* brighter red background */
  background-color: #dc2626;
}

.stat-icon-purple {
  /* brighter purple background */
  background-color: #c084fc;
}

.stat-icon-orange {
  /* brighter orange background */
  background-color: #fb923c;
}

.stat-icon-green {
  /* brighter green background */
  background-color: #4ade80;
}

.stat-icon-blue {
  /* brighter blue background */
  background-color: #60a5fa;
}

.stat-icon-pink {
  /* brighter pink background */
  background-color: #f472b6;
}

.stat-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.stat-label {
  color: #475569;
  font-weight: 500;
}

.stat-meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.stat-meta-default {
  color: #64748b;
  font-weight: 500;
}

.stat-meta-purple {
  color: #c084fc;
  font-weight: 500;
}

.stat-meta-green {
  color: #059669;
  font-weight: 500;
}

.stat-meta-orange {
  color: #fb923c;
  font-weight: 500;
}

.stat-meta-blue {
  color: #2563eb;
  font-weight: 500;
}

.stat-meta-pink {
  color: #db2777;
  font-weight: 500;
}

.stat-meta-red {
  color: #dc2626;
  font-weight: 500;
}
