/* ── Calendar Panel ───────────────────────────────────── */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav h2 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--color-text);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.cal-weekdays span {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--color-muted);
    padding: 4px 0;
    text-transform: uppercase;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

/* ── Day Cell ─────────────────────────────────────────── */
.cal-day {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    user-select: none;
}

.cal-day:hover     { background: #eef2ff; }
.cal-day.other     { color: var(--color-border); cursor: default; pointer-events: none; }
.cal-day.today     { font-weight: 800; color: var(--color-primary); }
.cal-day.today::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
}
.cal-day.selected  {
    background: var(--color-primary) !important;
    color: #fff !important;
}
.cal-day.selected::before { display: none; }

/* dot indicators */
.cal-day .dots {
    display: flex;
    gap: 2px;
    position: absolute;
    bottom: 4px;
}

.cal-day .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
}
.dot.high   { background: var(--color-high); }
.dot.medium { background: var(--color-medium); }
.dot.low    { background: var(--color-low); }
.cal-day.selected .dot { background: rgba(255,255,255,.7); }

/* ── Legend ───────────────────────────────────────────── */
.cal-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    font-size: .72rem;
    color: var(--color-muted);
}

.legend-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 3px;
}
.legend-dot.high   { background: var(--color-high); }
.legend-dot.medium { background: var(--color-medium); }
.legend-dot.low    { background: var(--color-low); }
