.adminDashboard {
  animation: fadeIn 0.3s ease-out;
}

.header {
  margin-bottom: 32px;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.kpiGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.kpiCard {
  padding: 24px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: transform var(--transition-fast);
}

.kpiCard:hover {
  transform: translateY(-4px);
  background: rgba(16, 185, 129, 0.1);
}

.kpiLabel {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kpiValue {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
}

.kpiTrend {
  font-size: 0.875rem;
  color: var(--success);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.contentGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.tableCard {
  padding: 24px;
}

.cardTitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.viewAll {
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
}

.table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}

.table tr:last-child td {
  border-bottom: none;
}

.badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.badge.warning {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

@media (max-width: 1024px) {
  .contentGrid {
    grid-template-columns: 1fr;
  }
}
