/* ─────────────────────────────────────────────────────────
   TITLETOWN — Props hit-rate bubbles
   v0.1.8.23.1 / props.js v0.17.0.2 (2026-07-05)
   Compact rounded percentage pills for the Props history matrix.
   v0.1.8.23.1 tones down type + fills so chips match grid density.
   Append-only CSS; pairs with props.js renderHitCell() wrapper.
───────────────────────────────────────────────────────── */

.tt-flow-main .props-grid .pg-td-hit,
.props-grid .pg-td-hit {
    background: transparent !important;
    min-width: 74px;
    padding: 9px 6px;
    text-align: center;
    vertical-align: middle;
}

.tt-flow-main .props-grid .pg-hit-pill,
.props-grid .pg-hit-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 9px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
    box-shadow: inset 0 1px 0 rgba(255,255,245,0.035);
}

.tt-flow-main .props-grid .pg-hit-green .pg-hit-pill,
.props-grid .pg-hit-green .pg-hit-pill {
    color: #5DE0AC;
    background: rgba(0, 217, 122, 0.14);
}

.tt-flow-main .props-grid .pg-hit-yellow .pg-hit-pill,
.props-grid .pg-hit-yellow .pg-hit-pill {
    color: #f0c85a;
    background: rgba(255, 169, 64, 0.12);
}

.tt-flow-main .props-grid .pg-hit-red .pg-hit-pill,
.props-grid .pg-hit-red .pg-hit-pill {
    color: #ff8a9b;
    background: rgba(255, 77, 77, 0.13);
}

.tt-flow-main .props-grid .pg-hit-pill-empty,
.props-grid .pg-hit-pill-empty {
    color: var(--text-tertiary);
    background: var(--bg-elev-2);
}

.tt-flow-main .props-grid .pg-hit-sub,
.props-grid .pg-hit-sub {
    display: none;
}

@media (max-width: 720px) {
    .tt-flow-main .props-grid .pg-td-hit,
    .props-grid .pg-td-hit {
        min-width: 70px;
        padding: 8px 5px;
    }
    .tt-flow-main .props-grid .pg-hit-pill,
    .props-grid .pg-hit-pill {
        min-width: 58px;
        min-height: 34px;
        font-size: 13px;
        border-radius: 8px;
    }
}
