/* ── Probability Badge ───────────────────────────────────────────────────── */

.prob-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    border-radius: 20px;
    font-family: var(--font-ui, 'DM Sans', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    letter-spacing: 0.01em;
    cursor: default;
    vertical-align: middle;
}

/* Hot — fire red */
.prob-badge--hot {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff;
}

/* Warm — amber / sun */
.prob-badge--warm {
    background: linear-gradient(135deg, #d4880e 0%, #f39c12 100%);
    color: #fff;
}

/* Cool — sky cyan */
.prob-badge--cool {
    background: linear-gradient(135deg, #0e8a9e 0%, #17a2b8 100%);
    color: #fff;
}

/* Cold — slate blue */
.prob-badge--cold {
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    color: #e2e8f0;
}

.prob-badge__icon {
    font-size: 0.85em;
    line-height: 1;
}

.prob-badge__pct {
    opacity: 0.9;
    font-size: 0.9em;
}

/* ── Calendar cell overlay (range picker fire-and-forget) ────────────────── */

.cg-calendar__day[data-prob-band] {
    position: relative;
}

.cg-calendar__day[data-prob-band]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.3;
}

.cg-calendar__day[data-prob-band="hot"]::after  { background: #e74c3c; }
.cg-calendar__day[data-prob-band="warm"]::after { background: #f39c12; }
.cg-calendar__day[data-prob-band="cool"]::after { background: #17a2b8; }
.cg-calendar__day[data-prob-band="cold"]::after { background: #718096; }

/* ── Campground directory card badge ─────────────────────────────────────── */

.cg-card__prob {
    margin-top: 8px;
}

/* ── Drops map side panel ────────────────────────────────────────────────── */

.drops-item__prob {
    margin-top: 4px;
}

/* ── Legend strip (calendar section) ────────────────────────────────────── */

.prob-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.prob-legend__label {
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-right: 4px;
}
