/* AI-Header: Badge component styles with theme support */
/* Date: 2025-07-13 */

/* ===========================================
   BADGES - BASE STRUCTURE
   =========================================== */

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

/* ===========================================
   BADGES - THEMED STYLES
   =========================================== */

/* Theme badge components */
.theme-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
}

.theme-badge-primary {
    background: var(--theme-primary, #722F37);
    color: white;
}

.theme-badge-secondary {
    background: var(--theme-text-secondary, #6c757d);
    color: white;
}

.theme-badge-success {
    background: #198754;
    color: white;
}

.theme-badge-danger {
    background: #dc3545;
    color: white;
}

.theme-badge-warning {
    background: #ffc107;
    color: #000;
}

.theme-badge-info {
    background: #0dcaf0;
    color: #000;
}

/* ===========================================
   BADGES - LIGHT THEME
   =========================================== */

[data-bs-theme="light"] .badge-primary {
    background-color: #722F37;
    color: #ffffff;
}

[data-bs-theme="light"] .badge-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

[data-bs-theme="light"] .badge-success {
    background-color: #198754;
    color: #ffffff;
}

[data-bs-theme="light"] .badge-danger {
    background-color: #dc3545;
    color: #ffffff;
}

[data-bs-theme="light"] .badge-warning {
    background-color: #ffc107;
    color: #000000;
}

[data-bs-theme="light"] .badge-info {
    background-color: #0dcaf0;
    color: #000000;
}

/* ===========================================
   BADGES - DARK THEME
   =========================================== */

[data-bs-theme="dark"] .badge-primary {
    background-color: #ff8a8a;
    color: #000000;
}

[data-bs-theme="dark"] .badge-secondary {
    background-color: #9ca3af;
    color: #000000;
}

[data-bs-theme="dark"] .badge-success {
    background-color: #75d175;
    color: #000000;
}

[data-bs-theme="dark"] .badge-danger {
    background-color: #ff8a8a;
    color: #000000;
}

[data-bs-theme="dark"] .badge-warning {
    background-color: #ffc107;
    color: #000000;
}

[data-bs-theme="dark"] .badge-info {
    background-color: #5ba4cf;
    color: #000000;
}
