﻿/* Badges */
.badge-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .badge-status.active {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }

    .badge-status.inactive {
        background: rgba(156, 163, 175, 0.1);
        color: #9ca3af;
    }
