﻿/* --------- Pills (status counters) --------- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .85rem;
    border-radius: 9999px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: none;
}

    .pill:hover {
        opacity: .93;
        text-decoration: none;
    }

.pill-btn {
    cursor: pointer;
}

.pill-outline {
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #dfe3e6;
}

.pill-danger {
    background: #ff5a6d;
    color: #fff;
}

.pill-success {
    background: #1c9a6d;
    color: #fff;
}

.pill-warning {
    background: #ffcc4d;
    color: #111;
}

.pill-secondary {
    background: #6c757d;
    color: #fff;
}

.pill-primary {
    background: #1b66ff;
    color: #fff;
}

.pill-dark {
    background: #343a40;
    color: #fff;
}

.pill-info {
    background: #e9eef6;
    color: #334155;
}

.pill-cyan {
    background: #10bcd6;
    color: #fff;
}

.pill-amber {
    background: #f6c04e;
    color: #111;
}

/* never underline pills even if they’re anchors */
a.pill, a.pill-btn, .pill a {
    text-decoration: none !important;
}

/* --------- Chips (type counts – phones, keys, etc.) --------- */
.type-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .6rem;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #0f172a;
    margin: .25rem .35rem 0 0;
    font-weight: 600
}

    .type-chip.badge-pack {
        background: #e8f0fe
    }

    .type-chip.booster {
        background: #e6fffa
    }

    .type-chip.handtruck {
        background: #fff9db
    }

    .type-chip.key {
        background: #fde68a
    }

    .type-chip.leadbp {
        background: #fbe7f3
    }

    .type-chip.phone {
        background: #e2f0d9
    }

    .type-chip.pouch {
        background: #eae7ff
    }

    .type-chip.tablet {
        background: #ffe4e6
    }
