/* ── Dashboard-specific styles — Sneat Academy Inspired ── */

/* ============ ROW 1: Welcome banner + Activity ============ */
.dash-row-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding: var(--space-4) 0 var(--space-6);
  align-items: center;
}

/* Welcome banner (transparent like Sneat Academy) */
.welcome-banner {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.welcome-banner-content {
  flex: 1;
  min-width: 0;
}

.welcome-banner h1 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.welcome-banner p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

/* ============ STATS ROW (inline in welcome, Sneat Academy style) ============ */
.dash-stats-row {
  display: flex;
  gap: var(--space-6);
  padding: 0;
  margin: 0;
}

.dash-stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
}

.dash-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-1);
}

.dash-stat-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

/* Activity card (transparent like Sneat Academy Time Spendings) */
.activity-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.activity-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.activity-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.activity-card-sub {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.activity-card-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.activity-card-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
}

.activity-card-trend {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-top: var(--space-2);
}

.activity-card-trend.positive { color: var(--color-success); }
.activity-card-trend.negative { color: var(--color-error); }

/* Mini activity bars (weekday) */
.activity-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
  height: 60px;
  margin-top: auto;
  padding-top: var(--space-3);
}

.activity-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  height: 100%;
}

.activity-bar-col span {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.activity-bar {
  width: 100%;
  background: rgba(var(--color-primary-rgb), 0.2);
  border-radius: var(--radius-sm);
  min-height: var(--space-1);
  margin-top: auto;
  transition: background 0.15s ease;
}

.activity-bar.active {
  background: var(--color-primary);
}

.activity-card:hover .activity-bar {
  background: rgba(var(--color-primary-rgb), 0.3);
}

.activity-card:hover .activity-bar.active {
  background: var(--color-primary);
}

/* ============ TOOL CARDS override for dashboard layout ============ */
.tool-cards {
  margin-bottom: var(--space-8);
}

/* ============ ROW 3: Recent docs + Goals + Tip ============ */
.dash-row-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: var(--space-6);
}

/* Recent documents card */
.recent-docs-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.recent-docs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.recent-docs-header h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.recent-docs-link {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.15s ease;
}

.recent-docs-link:hover {
  color: var(--color-primary-hover);
}

.recent-docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.recent-doc-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
  cursor: pointer;
}

.recent-doc-item + .recent-doc-item {
  border-top: 1px solid var(--color-border);
}

.recent-doc-item:not(.recent-doc-empty):hover {
  background: rgba(var(--color-primary-rgb), 0.04);
}

/* Empty state — centered, subdued, professional */
.recent-doc-item.recent-doc-empty {
  cursor: default;
  padding: 0;
}

.recent-doc-empty-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  width: 100%;
  gap: var(--space-3);
}

.recent-doc-empty-icon {
  color: var(--color-border);
  margin-bottom: var(--space-1);
}

.recent-doc-empty-text .recent-doc-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-1);
}

.recent-doc-empty-text .recent-doc-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.recent-doc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  margin-top: var(--space-2);
}

.recent-doc-cta:hover {
  background: var(--color-primary);
  color: #fff;
}

.recent-doc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recent-doc-info {
  flex: 1;
  min-width: 0;
}

.recent-doc-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.recent-doc-meta {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.recent-doc-wordcount {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.recent-doc-score {
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* Goals card (like Assignment Progress) */
.goals-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
}

.goals-header {
  margin-bottom: var(--space-4);
}

.goals-header h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.goal-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.goal-ring {
  width: 52px;
  height: 52px;
  position: relative;
  flex-shrink: 0;
}

.goal-ring svg {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.goal-ring-progress {
  transition: stroke-dashoffset 1s ease;
}

.goal-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-text-primary);
}

.goal-info {
  flex: 1;
  min-width: 0;
}

.goal-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.goal-meta {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Challenge / Tip card (like Upcoming Webinar) */
.challenge-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.challenge-illustration {
  width: 120px;
  height: 100px;
  margin-bottom: var(--space-3);
}

.challenge-illustration svg {
  width: 120px;
  height: 100px;
}

.challenge-card h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.challenge-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.challenge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
}

.challenge-btn:hover {
  background: var(--color-primary-hover);
  color: #ffffff;
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1279px) {
  .dash-row-top {
    grid-template-columns: 1fr;
  }

  .tool-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dash-row-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  }

  .dash-stats-row {
    flex-wrap: nowrap;
  }

  .challenge-card {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
    gap: var(--space-4);
  }

  .challenge-illustration {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .challenge-btn {
    width: auto;
    padding: 0 var(--space-6);
  }
}

/* Small tablet */
@media (max-width: 991px) {
  .tool-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-row-bottom {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dash-row-top {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-2) 0 var(--space-4);
    margin-bottom: var(--space-4);
  }

  .welcome-banner {
    padding: 0;
  }

  .welcome-banner h1 {
    font-size: var(--font-size-lg);
    line-height: 1.3;
  }

  .welcome-banner p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-5);
  }

  /* Stats: horizontal row, compact */
  .dash-stats-row {
    flex-direction: row;
    gap: var(--space-3);
    flex-wrap: nowrap;
  }

  .dash-stat {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-1);
  }

  .dash-stat-icon {
    width: 44px;
    height: 44px;
  }

  .dash-stat-value {
    font-size: var(--font-size-lg);
  }

  .dash-stat-label {
    font-size: var(--font-size-xs);
  }

  /* Activity: compact */
  .activity-card h3 {
    font-size: var(--font-size-lg);
  }

  .activity-card-number {
    font-size: var(--font-size-2xl);
  }

  /* Tool cards: 2 columns on mobile */
  .tool-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .tool-card-deco {
    width: 60px;
    height: 60px;
  }

  .tool-card-description {
    font-size: 12px;
  }

  /* Bottom row: stack */
  .dash-row-bottom {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Progress card: prevent text cutoff */
  .milestone-labels {
    font-size: 11px;
  }

  .density-number {
    font-size: 1.6rem;
  }

  .density-trend {
    font-size: var(--font-size-xs);
  }

  /* Diary: ensure all 7 days fit */
  .diary-days {
    gap: 2px;
  }

  .diary-label {
    font-size: 11px;
  }

  /* Challenge card */
  .challenge-card {
    flex-direction: column;
    text-align: center;
  }

  .challenge-btn {
    width: 100%;
  }

  /* Account for mobile bottom nav */
  .main-content {
    padding-bottom: 72px !important;
  }
}

/* Quick-start link in welcome banner */
.dash-quick-start {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--space-3);
  padding: 6px 14px;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.dash-quick-start:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Clickable doc items */
.recent-doc-item[data-doc-id] {
  cursor: pointer;
  transition: background 0.15s ease;
}

.recent-doc-item[data-doc-id]:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
}

[data-theme="dark"] .recent-doc-item[data-doc-id]:hover {
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .recent-doc-empty-icon {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

/* Goals card — streak badge */
.goals-streak {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-warning);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.goals-streak:empty { display: none; }

/* Week-over-week comparison */
.goals-comparison {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.goals-comparison:empty { display: none; }

.goals-comparison .trend-up { color: var(--color-success); font-weight: 600; }
.goals-comparison .trend-down { color: var(--color-danger); font-weight: 600; }
.goals-comparison .trend-same { color: var(--color-text-secondary); }

/* Goal trend line (below each goal meta) */
.goal-trend {
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
  color: var(--color-text-secondary);
}

.goal-trend:empty { display: none; }

.goal-trend .up { color: var(--color-success); }
.goal-trend .down { color: var(--color-danger); }

/* ============================================================
   Progress Card (replaces old goals-card)
   ============================================================ */

.progress-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.progress-header h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-warning);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.streak-badge:empty { display: none; }

/* Error density — hero metric */
.error-density {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.density-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.density-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.density-unit {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.density-trend {
  font-size: var(--font-size-xs);
  font-weight: 600;
}
.density-trend:empty { display: none; }
.density-trend .improving { color: var(--color-success); }
.density-trend .declining { color: var(--color-danger); }
.density-trend .steady { color: var(--color-text-secondary); }

/* Milestone bar — muted gradient to match dashboard tint palette */
.milestone-bar {
  margin-bottom: var(--space-4);
}

.milestone-track {
  position: relative;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: visible;
}

.milestone-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 30%, white) 0%, color-mix(in srgb, var(--color-primary) 60%, white) 40%, color-mix(in srgb, var(--color-primary) 80%, white) 70%, var(--color-primary) 100%);
  transition: width 0.8s ease;
  width: 0%;
}

.milestone-marker {
  position: absolute;
  top: -5px;
  width: 16px;
  height: 16px;
  background: var(--color-card);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.8s ease;
  left: 0%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.milestone-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Sparkline */
.density-sparkline {
  margin-bottom: var(--space-4);
  height: 40px;
}

.density-sparkline svg {
  width: 100%;
  height: 100%;
}

.density-sparkline:empty,
.density-sparkline:has(svg:empty) { display: none; }

/* Weekly diary */
.week-diary {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

.diary-title {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.diary-days {
  display: flex;
  gap: 4px;
}

.diary-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  border-radius: var(--radius-md);
  cursor: default;
}

.diary-day.today {
  background: rgba(var(--color-primary-rgb), 0.06);
}

.diary-day.has-activity {
  cursor: pointer;
}

.diary-label {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.diary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.3s ease;
}

.diary-day.has-activity .diary-dot {
  background: rgba(var(--color-primary-rgb), 0.5);
}

.diary-day.has-activity.high .diary-dot {
  background: var(--color-primary);
  width: 14px;
  height: 14px;
}

.diary-day.today .diary-label {
  color: var(--color-primary);
  font-weight: 600;
}

.diary-detail {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
  min-height: 16px;
}
.diary-detail:empty { display: none; }

/* ── Skeleton loading for dashboard widgets ── */
.dash-skeleton-item {
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.dash-skeleton {
  background: var(--color-bg, #f0f2f5);
  border-radius: 6px;
  animation: dash-skeleton-pulse 1.5s ease-in-out infinite;
}

.dash-skeleton-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.dash-skeleton-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-skeleton-title {
  height: 14px;
  width: 70%;
}

.dash-skeleton-meta {
  height: 10px;
  width: 35%;
}

@keyframes dash-skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Dark mode */
[data-theme="dark"] .dash-skeleton {
  background: var(--color-border, #2a3250);
}


/* ════════════════════════════════════════════
   CALENDAR WIDGET — Upcoming events
   ════════════════════════════════════════════ */

.dash-calendar-widget {
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border, rgba(0,0,0,0.06));
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.dash-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dash-cal-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.dash-cal-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary, #696cff);
  text-decoration: none;
  transition: opacity 0.15s;
}

.dash-cal-link:hover { opacity: 0.7; }

.dash-cal-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-cal-date-group {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 0 4px;
}

.dash-cal-date-group:first-child { padding-top: 0; }

.dash-cal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}

.dash-cal-item:hover {
  background: rgba(var(--color-primary-rgb, 105, 108, 255), 0.04);
}

.dash-cal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-cal-title {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.dash-cal-time {
  font-size: 12px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.dash-cal-empty {
  text-align: center;
  padding: 20px 0;
}

.dash-cal-empty-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.dash-cal-empty p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0 0 12px;
}

[data-theme="dark"] .dash-calendar-widget {
  background: var(--color-card);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .dash-cal-item:hover {
  background: rgba(var(--color-primary-rgb, 105, 108, 255), 0.08);
}

@media (max-width: 767px) {
  .dash-calendar-widget {
    padding: 16px;
    border-radius: 12px;
  }
}
