/*
|--------------------------------------------------------------------------
| Pills Component
|--------------------------------------------------------------------------
*/

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef7e8;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.pill--neutral {
    background: #f5f5f5;
    color: var(--color-text);
}