/* =========================
   DASHBOARD
   ========================= */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-card {
  padding: 22px !important;
  position: relative;
  overflow: hidden;
}

.dashboard-card h3 {
  margin-bottom: 18px;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -34px;
  top: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 214, 94, 0.14), transparent 68%);
  pointer-events: none;
}

.dashboard-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(177, 214, 94, 0.08);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.dashboard-stat span {
  font-size: 14px;
  color: rgba(240, 245, 230, 0.75);
  font-weight: 700;
}

.dashboard-stat strong {
  font-size: 20px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-actions .action-btn {
  min-width: 170px;
}

.dashboard-stat:last-child {
  margin-bottom: 0;
}

html[data-theme="light"] .dashboard-card::after {
  background: radial-gradient(circle, rgba(90, 117, 70, 0.1), transparent 68%);
}
