/**
 * Admin Dashboard - Lovable-style overrides
 * Load after Vuexy theme for consistent SaaS aesthetic
 */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Card styling */
.content-wrapper .card,
.content-wrapper .bg-white {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 0;
}

.content-wrapper .card.border-0 {
  border: 0 !important;
}

/* Section spacing */
.content-wrapper .container-p-y {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.content-wrapper .mb-4,
.content-wrapper .mt-5 {
  margin-bottom: 1.5rem !important;
}

/* Chart section cards */
.dashboard-chart-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.dashboard-chart-card .card-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.dashboard-chart-card .card-body {
  padding: 1.25rem;
}

/* KPI cards - Lovable style */
.dashboard-kpi-card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #3b82f6;
  transition: box-shadow 0.2s ease;
}

.dashboard-kpi-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-kpi-card.card-success { border-left-color: #22c55e; }
.dashboard-kpi-card.card-danger { border-left-color: #ef4444; }
.dashboard-kpi-card.card-primary { border-left-color: #3b82f6; }

/* Headings */
.content-wrapper h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.content-wrapper h5,
.content-wrapper h6 {
  font-weight: 600;
  color: #334155;
}

/* Muted text */
.text-muted {
  color: #64748b !important;
}

/* Primary accent */
.text-primary {
  color: #3b82f6 !important;
}
