/* ═══════════════════════════════════════════
   POKIT — calendar.css
   Calendar Grid · Day Cells · Markers
   ═══════════════════════════════════════════ */

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.cal-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px;
}
.cal-day {
  padding: 6px 2px;
  border-radius: 8px;
  font-size: 13px;
  position: relative;
  cursor: default;
  min-height: 44px;
}
.cal-today {
  background: var(--primary);
  color: white;
  font-weight: 700;
}
.cal-marker { cursor: pointer; }
.cal-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  margin: 2px auto 0;
}
.cal-amount {
  font-size: 8px;
  line-height: 1;
  margin-top: 2px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-amount.income { color: var(--success); }
.cal-amount.bill { color: var(--danger); }
.cal-amount.cc { color: #E67E22; }
.cal-amount.goal { color: var(--primary); }
.cal-today .cal-amount { color: rgba(255,255,255,0.85); }
