/* pills.css — status pills and filter chips of the Instant console.
   Metrics taken from the design reference so a pill reads the same on every screen:
   3px 9px, 11px/600, fully rounded, a tenth-of-opacity fill with a slightly stronger border. */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    border: 1px solid transparent;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pill-amber   { background: rgba(245, 158, 11, 0.14); color: #fbbf24; border-color: rgba(245, 158, 11, 0.30); }
.pill-emerald { background: rgba(16, 185, 129, 0.14); color: #10b981; border-color: rgba(16, 185, 129, 0.30); }
.pill-red     { background: rgba(239, 68, 68, 0.14);  color: #f87171; border-color: rgba(239, 68, 68, 0.30); }
.pill-sky     { background: rgba(56, 189, 248, 0.14); color: #38bdf8; border-color: rgba(56, 189, 248, 0.30); }
.pill-purple  { background: rgba(168, 85, 247, 0.14); color: #c084fc; border-color: rgba(168, 85, 247, 0.30); }
.pill-cyan    { background: rgba(6, 182, 212, 0.15);  color: #67e8f9; border-color: rgba(6, 182, 212, 0.40); }
.pill-gray    { background: rgba(148, 163, 184, 0.12); color: #94a3b8; border-color: rgba(148, 163, 184, 0.28); }
.pill-info    { background: rgba(34, 211, 238, 0.12); color: #22d3ee; border-color: rgba(34, 211, 238, 0.28); }
.pill-violet  { background: rgba(167, 139, 250, 0.13); color: #a78bfa; border-color: rgba(167, 139, 250, 0.30); }

/* Filter chips: one size, and the chosen one filled in the accent rather than solid white. */
.fchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.15s;
    white-space: nowrap;
}

.fchip:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }
.fchip.on { background: rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.4); color: #67e8f9; }
