/* ============================================
   Badges & Tags Component
   Reusable badge and tag styles
   ============================================ */

.badge,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.badge-primary,
.tag-primary {
    background: rgba(52, 152, 219, 0.1);
    color: var(--info);
    border-color: rgba(52, 152, 219, 0.3);
}

.badge-success,
.tag-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border-color: rgba(39, 174, 96, 0.3);
}

.badge-danger,
.tag-danger {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
    border-color: rgba(231, 76, 60, 0.3);
}

.badge-warning,
.tag-warning {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning);
    border-color: rgba(243, 156, 18, 0.3);
}