/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size);
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.5;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
}
.btn-secondary:hover:not(:disabled) {
    background: #143d5a;
}

.btn-success {
    background: var(--success);
    color: #fff;
}
.btn-success:hover:not(:disabled) {
    background: #1e8449;
}

.btn-warning {
    background: var(--warning);
    color: #fff;
}
.btn-warning:hover:not(:disabled) {
    background: #d68910;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover:not(:disabled) {
    background: #c0392b;
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text-secondary);
}
.btn-outline:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: var(--text-muted);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover:not(:disabled) {
    background: var(--bg-hover);
}

.btn-sm {
    padding: 4px 10px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 12px 24px;
    font-size: var(--font-size-lg);
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
}

.btn-icon.btn-sm {
    width: 28px;
    height: 28px;
}

/* ===== Cards ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin: 0;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-stripe);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ===== Stat Card ===== */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-card-icon.green { background: #e8f8ef; color: var(--success); }
.stat-card-icon.blue { background: #e8f4fd; color: var(--info); }
.stat-card-icon.orange { background: #fef3e2; color: var(--warning); }
.stat-card-icon.red { background: #fde8e8; color: var(--danger); }
.stat-card-icon.purple { background: #f0e6f6; color: #8e44ad; }
.stat-card-icon.teal { background: #e0f2f1; color: #00897b; }

.stat-card-info h4 {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 0 4px;
}

.stat-card-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-card-sub {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Tables ===== */
.table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: var(--bg-stripe);
    padding: 12px 16px;
    text-align: right;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: var(--font-size);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background: var(--bg-hover);
}

.table-actions {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.form-label .required {
    color: var(--danger);
    font-size: 11px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg-input);
    color: var(--text);
    font-size: var(--font-size);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    line-height: 1.5;
    height: 42px;
}

.form-control:hover {
    border-color: #c5cdd8;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,124,62,0.08);
    background: #fff;
}

.form-control:disabled {
    background: var(--bg-stripe);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-control.is-invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(231,76,60,0.08);
}

.form-error {
    color: var(--danger);
    font-size: var(--font-size-sm);
    margin-top: 4px;
}

.form-help {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-top: 4px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6474' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 34px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
    height: auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ===== Toolbar (Search + Filters + Actions) ===== */
.toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

.search-box input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    font-size: var(--font-size);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,124,62,0.1);
}

.search-box-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    font-size: var(--font-size-sm);
    min-width: 140px;
}

/* ===== Badges ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-success { background: #e8f8ef; color: #1a7a42; }
.badge-warning { background: #fef3e2; color: #b7791f; }
.badge-danger { background: #fde8e8; color: #c0392b; }
.badge-info { background: #e8f4fd; color: #1a5276; }
.badge-secondary { background: #edf2f7; color: #5a6474; }
.badge-primary { background: #e8f8ef; color: var(--primary); }

/* ===== Modal ===== */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-backdrop.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Make #modal-content and form stretch to fill .modal and act as flex containers */
#modal-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

#modal-content > form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-stripe);
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 0 0 16px 16px;
}

.modal-footer .btn-primary {
    padding: 10px 28px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 700;
}

.modal-footer .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.modal-lg {
    max-width: 740px;
}

/* ===== Confirm Dialog ===== */
.confirm-dialog .modal {
    max-width: 400px;
    text-align: center;
}

.confirm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.confirm-icon.warning { background: #fef3e2; color: var(--warning); }
.confirm-icon.danger { background: #fde8e8; color: var(--danger); }

/* ===== Toast Messages ===== */
.toast-container {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-size: var(--font-size);
    font-weight: 500;
    pointer-events: auto;
    animation: toastIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 400px;
}

.toast-success { background: #27ae60; color: #fff; }
.toast-error { background: #e74c3c; color: #fff; }
.toast-warning { background: #f39c12; color: #fff; }
.toast-info { background: #3498db; color: #fff; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-info {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 8px;
}

.empty-state p {
    font-size: var(--font-size);
    margin: 0 0 20px;
}

/* ===== Tabs ===== */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    gap: 4px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    font-size: var(--font-size);
    background: none;
    border-top: none;
    border-right: none;
    border-left: none;
}

.tab:hover {
    color: var(--text);
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ===== Progress Bar ===== */
.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-bar-fill.green { background: var(--success); }
.progress-bar-fill.blue { background: var(--info); }
.progress-bar-fill.orange { background: var(--warning); }
.progress-bar-fill.red { background: var(--danger); }

/* ===== Dropdown ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 160px;
    z-index: 50;
    padding: 4px 0;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: var(--font-size);
    color: var(--text);
    transition: background var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
}

.dropdown-item:hover {
    background: var(--bg-hover);
}

.dropdown-item.danger {
    color: var(--danger);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* ===== Avatar ===== */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: #fff;
    background: var(--primary);
    flex-shrink: 0;
}

.avatar-sm { width: 28px; height: 28px; font-size: 11px; }
.avatar-lg { width: 48px; height: 48px; font-size: var(--font-size-lg); }

/* ===== Alert ===== */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #f0faf4; color: var(--primary-dark); border: 1px solid #bbf0d1; }

/* ===== Form Select ===== */
.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg-input);
    color: var(--text);
    font-size: var(--font-size);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.5;
    height: 42px;
    max-height: 42px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6474' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 34px;
    cursor: pointer;
}

.form-select:hover {
    border-color: #c5cdd8;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,124,62,0.08);
}

/* ===== Form Check Label ===== */
.form-check-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: var(--font-size);
    padding: 10px 16px;
    background: var(--bg-stripe);
    border-radius: 10px;
    border: 1.5px solid var(--border);
    transition: all 0.2s ease;
    user-select: none;
}

.form-check-label:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.form-check-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ===== Validation Feedback ===== */
.invalid-feedback {
    color: var(--danger);
    font-size: var(--font-size-sm);
    margin-top: 4px;
}

.field-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-error::before {
    content: '\26A0';
    font-size: 11px;
}

/* ===== Toolbar Enhanced ===== */
.toolbar-search {
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

.toolbar-search .form-control {
    width: 100%;
}

.toolbar-filters {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.toolbar-filters .form-select {
    min-width: 140px;
    width: auto;
}

/* ===== Stats Bar ===== */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    margin-bottom: 12px;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.stats-bar strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== Table Responsive ===== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===== Action Buttons ===== */
.action-buttons {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}

/* ===== Required Star ===== */
.required {
    color: var(--danger);
    margin-right: 2px;
}

/* ===== Form Sections ===== */
.form-section {
    margin-bottom: 22px;
    padding-bottom: 4px;
}

.form-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-bg);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Password Field ===== */
.password-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field-wrap .form-control {
    padding-left: 40px;
}

.password-toggle-btn {
    position: absolute;
    left: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.password-toggle-btn:hover {
    opacity: 1;
}

.form-control-static {
    padding: 8px 12px;
    background: var(--bg-secondary, #f5f5f5);
    border: 1px solid var(--border-color, #ddd);
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary, #2563eb);
    letter-spacing: 1px;
}

.saved-password-display {
    display: flex;
    align-items: center;
    background: var(--bg-secondary, #f5f5f5);
    border: 1px dashed var(--border-color, #ddd);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 6px;
    position: relative;
}

.saved-password-masked {
    flex: 1;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-secondary, #666);
    direction: ltr;
    text-align: left;
}

.saved-password-display .password-toggle-btn {
    position: static;
    flex-shrink: 0;
}

/* ===== Photo Upload ===== */
.photo-upload-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #f8fafb 100%);
    border-radius: 12px;
    border: 1.5px dashed #c3ddd0;
    transition: border-color 0.2s ease;
}

.photo-upload-section:hover {
    border-color: var(--primary);
}

.photo-preview {
    flex-shrink: 0;
}

.photo-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-bg);
    box-shadow: var(--shadow);
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-hover);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-muted);
}

.photo-input {
    flex: 1;
}

.photo-input .form-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.photo-input small {
    display: block;
    margin-top: 4px;
}

/* ===== Progress Bar ===== */
.progress-bar-container {
    position: relative;
    width: 100%;
    min-width: 80px;
    height: 22px;
    background: var(--bg-stripe);
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 11px;
    transition: width 0.4s ease;
    min-width: 0;
}

.progress-bar-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
}

.badge-primary {
    background: var(--primary);
    color: #fff;
}

.badge-muted {
    background: var(--bg-stripe);
    color: var(--text-muted);
}
