/* Badge Status Styles - Tailwind small flat */
.badge-status-active {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem; /* smaller padding for small badge */
    border-radius: 0.25rem; /* rounded (flat, not rounded-full) */
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgb(220 252 231); /* green-100 */
    color: rgb(22 101 52); /* green-800 */
}

[data-theme="dark"] .badge-status-active {
    background-color: rgb(20 83 45); /* green-900 */
    color: rgb(187 247 208); /* green-200 */
}

.badge-status-inactive {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem; /* smaller padding for small badge */
    border-radius: 0.25rem; /* rounded (flat, not rounded-full) */
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgb(254 226 226); /* red-100 */
    color: rgb(153 27 27); /* red-800 */
}

[data-theme="dark"] .badge-status-inactive {
    background-color: rgb(127 29 29); /* red-900 */
    color: rgb(254 202 202); /* red-200 */
}
