/* ==============================================================
   BADGES & STATUS COMPONENT
   ============================================================== */

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Common Status Colors */
.status-active,
.status-paid,
.status-success {
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.status-pending,
.status-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-danger,
.status-cancelled,
.status-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-info,
.status-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Gold / Primary Badge (Specific for Roles/Promotions) */
.status-gold,
.status-primary {
    background: rgba(var(--primary-rgb), 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.2) !important;
}

/* Commission/Percentage Badge */
.badge-commission {
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.badge-default {
    color: var(--text-muted);
    font-size: 11px;
}