/* === 账号 / 余额 / 充值 / 流水 (Phase 4) === */

.account-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.account-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-1, #fff);
    font-size: 12px;
    cursor: pointer;
    transition: all .15s;
}

.account-btn:hover {
    background: rgba(196, 163, 90, 0.1);
    border-color: rgba(196, 163, 90, 0.4);
}

.account-btn-primary {
    background: rgba(196, 163, 90, 0.15);
    border-color: rgba(196, 163, 90, 0.5);
    color: var(--accent, #c4a35a);
}

.account-btn-primary:hover {
    background: rgba(196, 163, 90, 0.25);
}

.account-icon {
    color: var(--accent, #c4a35a);
    font-size: 8px;
}

.account-balance {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

#accountAvatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: rgba(196, 163, 90, 0.2);
    display: inline-block;
}

#accountAvatar.has-img {
    background-color: transparent;
}

/* === Modal === */

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.account-box {
    position: relative;
    width: 420px;
    max-width: 92vw;
    background: var(--bg-raised, #1c1c1e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.account-box-wide { width: 600px; }
.account-box-narrow { width: 360px; }

.account-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-1, #fff);
}

.account-close {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: var(--text-3, #999);
    font-size: 20px;
    cursor: pointer;
}

.account-close:hover { color: var(--text-1, #fff); background: rgba(255, 255, 255, 0.06); }

.account-body {
    padding: 24px 20px 20px;
}

.account-balance-line {
    text-align: center;
    color: var(--text-2, #aaa);
    font-size: 13px;
    margin-bottom: 18px;
}

.account-amount-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.amount-chip {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-1, #fff);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.amount-chip:hover {
    border-color: rgba(196, 163, 90, 0.5);
}

.amount-chip.active {
    background: rgba(196, 163, 90, 0.15);
    border-color: var(--accent, #c4a35a);
    color: var(--accent, #c4a35a);
}

.amount-credits {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-3, #888);
}

.amount-chip.active .amount-credits {
    color: var(--accent-dim, rgba(196, 163, 90, 0.7));
}

.account-amount-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.account-amount-custom label {
    color: var(--text-2, #aaa);
    font-size: 12px;
    flex: 0 0 50px;
}

.account-amount-custom input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-1, #fff);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.account-amount-custom input:focus {
    outline: none;
    border-color: var(--accent, #c4a35a);
}

.account-amount-custom span {
    color: var(--text-2, #aaa);
    font-size: 12px;
}

.account-rate {
    text-align: center;
    color: var(--text-3, #888);
    font-size: 11px;
    margin-bottom: 18px;
}

.account-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 18px;
}

/* QR */

.account-qr-amount {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent, #c4a35a);
    margin-bottom: 16px;
}

.account-qr-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.account-qr-wrap img {
    width: 100%;
    height: 100%;
    display: none;
}

.account-qr-wrap img.loaded { display: block; }

.account-qr-loading {
    color: #666;
    font-size: 12px;
}

.account-qr-loading.hidden { display: none; }

.account-qr-tip {
    text-align: center;
    color: var(--text-2, #aaa);
    font-size: 12px;
    margin-bottom: 8px;
}

.account-qr-status {
    text-align: center;
    color: var(--accent, #c4a35a);
    font-size: 13px;
    margin-bottom: 4px;
}

.account-qr-status.success {
    color: #6dd388;
}

.account-qr-status.fail {
    color: #e57373;
}

.account-done-icon {
    text-align: center;
    font-size: 64px;
    color: #6dd388;
    margin-bottom: 12px;
}

.account-done-msg {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1, #fff);
    margin-bottom: 8px;
}

.account-done-detail {
    text-align: center;
    color: var(--text-2, #aaa);
    font-size: 13px;
    margin-bottom: 12px;
}

/* === Ledger === */

.account-ledger-list {
    max-height: 480px;
    overflow-y: auto;
    padding: 4px 0;
}

.ledger-row {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    font-size: 12px;
}

.ledger-row:last-child { border-bottom: none; }

.ledger-type {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.ledger-type-CONSUME { color: #e57373; }
.ledger-type-REFUND, .ledger-type-PURCHASE, .ledger-type-GIFT, .ledger-type-ADMIN_ADD { color: #6dd388; }
.ledger-type-ADMIN_DEDUCT { color: #e57373; }

.ledger-note {
    color: var(--text-2, #aaa);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ledger-amount {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.ledger-amount.negative { color: #e57373; }
.ledger-amount.positive { color: #6dd388; }

.ledger-time {
    color: var(--text-3, #888);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

.account-ledger-more {
    padding: 12px;
    text-align: center;
}

/* === User menu === */

.account-user-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.account-user-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.account-user-key {
    color: var(--text-2, #aaa);
}

.account-user-val {
    color: var(--text-1, #fff);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

/* === 项目协作 === */

.project-chip {
    max-width: 180px;
}

.project-chip .project-icon {
    color: var(--accent, #c4a35a);
    font-size: 12px;
    line-height: 1;
}

.project-chip .project-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
    font-weight: 600;
}

.project-chip .project-caret {
    color: var(--text-3, #888);
    font-size: 10px;
    margin-left: 2px;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: rgba(196, 163, 90, 0.18);
    border: 1px solid var(--accent, #c4a35a);
    border-radius: 6px;
    color: var(--accent, #c4a35a);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    max-height: 380px;
    overflow-y: auto;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
}

.project-item:hover {
    background: rgba(196, 163, 90, 0.08);
    border-color: rgba(196, 163, 90, 0.3);
}

.project-item.current {
    background: rgba(196, 163, 90, 0.12);
    border-color: var(--accent, #c4a35a);
}

.project-item-icon {
    color: var(--accent, #c4a35a);
    font-size: 14px;
}

.project-item-main {
    flex: 1;
    min-width: 0;
}

.project-item-name {
    color: var(--text-1, #fff);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-item-meta {
    color: var(--text-3, #888);
    font-size: 11px;
    margin-top: 2px;
}

.project-item-role {
    flex: 0 0 auto;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    color: var(--text-2, #aaa);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-item-role.role-CREATOR {
    background: rgba(196, 163, 90, 0.18);
    color: var(--accent, #c4a35a);
}

.project-item-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 4px;
}

.project-item-actions button {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: var(--text-2, #aaa);
    font-size: 11px;
    cursor: pointer;
}

.project-item-actions button:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1, #fff);
}

.project-section {
    margin-bottom: 18px;
}

.project-section-title {
    color: var(--text-2, #aaa);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-section-count {
    color: var(--text-3, #888);
    font-weight: 400;
    font-size: 11px;
}

.project-member-list, .project-invite-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 200px;
    overflow-y: auto;
}

.project-member-row, .project-invite-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 12px;
}

.project-member-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-color: rgba(196, 163, 90, 0.15);
}

.project-member-name {
    color: var(--text-1, #fff);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-invite-row .invite-link {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: ui-monospace, "SF Mono", monospace;
    font-size: 11px;
    color: var(--accent, #c4a35a);
    cursor: pointer;
    user-select: all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 280px;
}

.project-invite-create {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.project-invite-create select,
.project-invite-create input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-1, #fff);
    font-size: 12px;
    padding: 6px 8px;
    min-width: 0;
}

.project-invite-create select:focus,
.project-invite-create input:focus {
    outline: none;
    border-color: var(--accent, #c4a35a);
}

/* === 管理员后台 === */

.admin-badge {
    cursor: pointer;
    transition: all .15s;
}

.admin-badge:hover {
    background: rgba(196, 163, 90, 0.3);
}

.account-box-admin {
    width: 880px;
    max-width: 95vw;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    color: var(--text-2, #aaa);
    font-size: 13px;
    cursor: pointer;
    transition: all .15s;
}

.admin-tab:hover {
    color: var(--text-1, #fff);
}

.admin-tab.active {
    color: var(--accent, #c4a35a);
    border-bottom-color: var(--accent, #c4a35a);
}

.admin-tab span {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 6px;
    background: rgba(196, 163, 90, 0.18);
    border-radius: 8px;
    font-size: 10px;
    color: var(--accent, #c4a35a);
}

.admin-filter, .admin-tx-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.admin-filter-chip {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-2, #aaa);
    font-size: 11px;
    cursor: pointer;
    transition: all .15s;
}

.admin-filter-chip.active {
    background: rgba(196, 163, 90, 0.15);
    border-color: var(--accent, #c4a35a);
    color: var(--accent, #c4a35a);
}

.admin-tx-filter input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-1, #fff);
    font-size: 12px;
    padding: 6px 10px;
    width: 180px;
}

.admin-user-list, .admin-tx-list {
    max-height: 440px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-user-row {
    display: grid;
    grid-template-columns: 30px 1fr auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 12px;
}

.admin-user-row.pending {
    background: rgba(229, 178, 75, 0.08);
    border: 1px solid rgba(229, 178, 75, 0.4);
}

.admin-user-row.rejected {
    opacity: 0.6;
}

.admin-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-color: rgba(196, 163, 90, 0.15);
}

.admin-user-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-user-name {
    color: var(--text-1, #fff);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-user-meta {
    color: var(--text-3, #888);
    font-size: 10px;
    font-family: ui-monospace, monospace;
}

.admin-user-status {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.admin-user-status.PENDING { background: rgba(229, 178, 75, 0.2); color: #e5b24b; }
.admin-user-status.ACTIVE  { background: rgba(109, 211, 136, 0.18); color: #6dd388; }
.admin-user-status.REJECTED { background: rgba(229, 115, 115, 0.18); color: #e57373; }

.admin-user-credits {
    font-variant-numeric: tabular-nums;
    color: var(--accent, #c4a35a);
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.admin-user-actions {
    display: flex;
    gap: 4px;
}

.admin-user-actions button {
    padding: 4px 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: var(--text-2, #aaa);
    font-size: 11px;
    cursor: pointer;
    white-space: nowrap;
}

.admin-user-actions button:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1, #fff);
}

.admin-user-actions button.action-approve { border-color: rgba(109, 211, 136, 0.5); color: #6dd388; }
.admin-user-actions button.action-approve:hover { background: rgba(109, 211, 136, 0.12); }
.admin-user-actions button.action-reject { border-color: rgba(229, 115, 115, 0.4); color: #e57373; }
.admin-user-actions button.action-reject:hover { background: rgba(229, 115, 115, 0.12); }
.admin-user-actions button.action-credit { border-color: rgba(196, 163, 90, 0.5); color: var(--accent, #c4a35a); }
.admin-user-actions button.action-credit:hover { background: rgba(196, 163, 90, 0.12); }

.admin-tx-row {
    display: grid;
    grid-template-columns: 60px 60px 1fr auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    font-size: 11px;
}

.admin-tx-uid {
    font-family: ui-monospace, monospace;
    color: var(--text-3, #888);
}

/* === 利润 tab === */

.billing-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.billing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.billing-card-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-3, #888);
    font-size: 12px;
}

.billing-card-label {
    color: var(--text-3, #888);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.billing-card-value {
    color: var(--text-1, #fff);
    font-size: 22px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.billing-card-hint {
    color: var(--text-3, #777);
    font-size: 10px;
    font-family: ui-monospace, monospace;
}

.billing-card-profit {
    background: rgba(196, 163, 90, 0.08);
    border-color: rgba(196, 163, 90, 0.4);
}

.billing-card-profit .billing-card-value {
    color: var(--accent, #c4a35a);
}

.billing-margin-row {
    color: var(--text-2, #aaa);
    font-size: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.billing-margin-row strong {
    color: var(--accent, #c4a35a);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    margin: 0 2px;
}

.billing-user-table-head,
.billing-user-row {
    display: grid;
    grid-template-columns: 30px 1fr 88px 88px 88px 88px 88px;
    gap: 10px;
    align-items: center;
}

.billing-user-table-head {
    padding: 6px 12px;
    color: var(--text-3, #777);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.billing-user-table-head > span:first-child {
    grid-column: 1 / span 2;
}

.billing-user-table-head > span:not(:first-child) {
    text-align: right;
}

.billing-user-list {
    max-height: 380px;
}

.billing-user-row {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 12px;
}

.billing-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: var(--text-1, #fff);
}

.billing-num-purchase {
    color: #6dd388;
}

.billing-num-consume {
    color: var(--text-1, #fff);
    font-weight: 600;
}

.billing-num-profit {
    color: var(--accent, #c4a35a);
    font-weight: 600;
}

.billing-num-balance {
    color: var(--text-3, #888);
}

/* === 扣费弹窗 / toggle === */

.cost-toggle-btn {
    font-size: 14px;
    padding: 4px 8px;
    line-height: 1;
    min-width: 32px;
}

.cost-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.cost-confirm-box {
    background: #1a1a1a;
    border: 1px solid rgba(196, 163, 90, 0.4);
    border-radius: 10px;
    padding: 22px 26px;
    min-width: 360px;
    max-width: 440px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.cost-confirm-title {
    color: var(--accent, #c4a35a);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.cost-confirm-body {
    color: var(--text-1, #fff);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cost-confirm-body strong {
    color: var(--accent, #c4a35a);
    font-variant-numeric: tabular-nums;
    margin: 0 2px;
}

.cost-confirm-hint {
    color: var(--text-3, #888);
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.cost-confirm-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.cost-confirm-actions button {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--text-2, #aaa);
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all .15s;
}

.cost-confirm-actions .cost-confirm-cancel:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1, #fff);
}

.cost-confirm-actions .cost-confirm-ok {
    background: var(--accent, #c4a35a);
    border-color: var(--accent, #c4a35a);
    color: #1a1a1a;
    font-weight: 600;
}

.cost-confirm-actions .cost-confirm-ok:hover {
    background: #d4b36a;
}

/* === 项目 ID 前缀 === */

.project-prefix-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    flex-wrap: wrap;
}

.project-prefix-current {
    font-family: ui-monospace, monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent, #c4a35a);
    letter-spacing: 0.04em;
}

.project-prefix-hint {
    color: var(--text-3, #888);
    font-size: 11px;
    flex: 1;
}

.project-prefix-hint code {
    color: var(--text-2, #aaa);
    background: rgba(255, 255, 255, 0.05);
    padding: 1px 6px;
    border-radius: 3px;
    font-family: ui-monospace, monospace;
}
