/* ui/calendar-screen.css — Calendar panel (desktop web). Reuses
   .mg-datepop-header/-nav/-iconbtn/-week/-grid/-day from ui/timeline.css
   for the month grid itself (those rules are standalone, not scoped
   under the floating popover's own positioning wrapper) — only the
   calendar-specific bits (grid container, due-day dot, day list) live
   here. */

.mg-cal-grid-wrap {
  background: var(--mg-surface);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  max-width: 420px;
}

.mg-cal-grid-wrap .mg-datepop-day {
  position: relative;
}

.mg-cal-due-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mg-accent);
}

.mg-cal-grid-wrap .mg-datepop-day.selected .mg-cal-due-dot {
  background: var(--mg-accent-deep);
}

.mg-cal-daylist {
  margin-top: 18px;
  max-width: 640px;
}
