/* ============================================================
   ASSETS DASHBOARD — matches Maple brand tokens
============================================================ */

body[data-page="assets"] { background: var(--bg-sand); }

.assets-main {
    min-height: calc(100vh - var(--header-h, 72px));
    padding-top: calc(var(--header-h, 72px) + clamp(1.5rem, 4vw, 3rem));
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.assets-shell {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ===== Page head ===== */
.assets-page-head {
    text-align: center;
    margin-bottom: 0.5rem;
}
.assets-page-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.assets-page-sub {
    font-family: 'Geist', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Top tabs (Staking / Lending) ===== */
.assets-tabs {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    align-self: center;
}
.assets-tab {
    background: transparent;
    border: 0;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.assets-tab:hover { color: var(--text-primary); }
.assets-tab.is-active {
    background: var(--text-primary);
    color: var(--text-reversed);
}

/* ===== Chain pills ===== */
.assets-chains {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (min-width: 600px)  { .assets-chains { grid-template-columns: repeat(4, 1fr); } }

.assets-chain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.assets-chain:hover { border-color: var(--text-tertiary); }
.assets-chain.is-active {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--text-reversed);
}
.assets-chain__icon {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
}
.assets-chain__sym { font-weight: 600; font-size: 0.9375rem; }
.assets-chain__name {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    flex: 1;
    text-align: left;
}
.assets-chain.is-active .assets-chain__name { color: rgba(255, 255, 255, 0.7); }

/* ===== Panel ===== */
.assets-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.assets-panel[hidden] { display: none; }

/* ===== Cards ===== */
.assets-card {
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.5rem;
}
.assets-card--flush { padding-block-end: 0; }
.assets-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.assets-card__title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

/* Currency pill */
.assets-currency__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 32px;
    padding: 0 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}
.assets-currency__btn:hover { border-color: var(--text-tertiary); }
.assets-currency { position: relative; }
.assets-currency__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    max-height: 280px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    list-style: none;
    margin: 0;
    padding: 4px;
    z-index: 60;
    font-family: 'Geist', sans-serif;
}
.assets-currency__menu[hidden] { display: none; }
.assets-currency__menu li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.875rem;
}
.assets-currency__menu li:hover { background: var(--bg-sand); }
.assets-currency__menu li.is-active { background: var(--bg-sand-strong); }
.assets-currency__iso {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 36px;
    font-size: 0.8125rem;
}
.assets-currency__name {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

/* Currency code suffix on price values (consistent spacing) */
.assets-price__cur,
.assets-list__sym.js-cur-sym {
    margin-left: 0.2rem;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* Total assets row */
.assets-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.assets-total__token,
.assets-total__usd {
    font-family: 'Geist', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.assets-total__sym {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 0.25rem;
    letter-spacing: 0.02em;
}
.assets-total__sep { color: var(--text-tertiary); }
@media (max-width: 480px) {
    .assets-total { flex-direction: column; align-items: flex-start; }
    .assets-total__sep { display: none; }
}

/* List rows */
.assets-list { list-style: none; padding: 0; margin: 0; }
.assets-list__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-block: 0.65rem;
    border-top: 1px solid var(--line);
    font-family: 'Geist', sans-serif;
}
.assets-list__row:first-child { border-top: 0; padding-top: 0; }
.assets-list__label { color: var(--text-tertiary); font-size: 0.9375rem; }
.assets-list__val {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
}
.assets-list__val--pos { color: #16a34a; }
.assets-list__val--neg { color: var(--brand-orange); }

.assets-health {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    vertical-align: middle;
}
.assets-health--safe    { background: rgba(22, 163, 74, 0.12);  color: #16a34a; }
.assets-health--caution { background: rgba(252, 122, 74, 0.12); color: var(--brand-orange); }
.assets-health--warn    { background: rgba(252, 122, 74, 0.12); color: var(--brand-orange); }
.assets-health--danger  { background: rgba(239, 68, 68, 0.12);  color: #ef4444; }

/* Help tooltip on Health factor (and other rows) */
.assets-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    color: var(--text-tertiary);
    cursor: help;
    vertical-align: middle;
    transition: color var(--t-fast) var(--ease);
    outline: none;
}
.assets-info:hover,
.assets-info:focus { color: var(--text-primary); }

.assets-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: max-content;
    max-width: 260px;
    background: var(--text-primary);
    color: var(--text-reversed);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    z-index: 20;
    text-align: left;
    white-space: normal;
}
.assets-tip strong {
    color: #fff;
    font-weight: 600;
}
.assets-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}
.assets-info:hover .assets-tip,
.assets-info:focus .assets-tip,
.assets-info:focus-within .assets-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile: anchor tooltip to right to avoid clipping past list edge */
@media (max-width: 600px) {
    .assets-tip {
        left: auto;
        right: -8px;
        transform: translateY(4px);
        max-width: 240px;
    }
    .assets-tip::after {
        left: auto;
        right: 14px;
        transform: none;
    }
    .assets-info:hover .assets-tip,
    .assets-info:focus .assets-tip,
    .assets-info:focus-within .assets-tip {
        transform: translateY(0);
    }
}
.assets-list__sym {
    font-weight: 500;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-left: 0.2rem;
    letter-spacing: 0.04em;
}

/* Price */
.assets-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Geist', sans-serif;
}
.assets-price__label { color: var(--text-tertiary); font-size: 0.9375rem; }
.assets-price__val {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
    font-variant-numeric: tabular-nums;
}
.assets-price__per { font-size: 0.75rem; color: var(--text-tertiary); margin-left: 0.15rem; }

/* Action buttons */
.assets-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}
@media (min-width: 600px) { .assets-actions { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 600px) { .assets-actions--two { grid-template-columns: repeat(2, 1fr); } }
.assets-actions--one { grid-template-columns: 1fr; }
.assets-actions--one .assets-action { max-width: 480px; margin-inline: auto; width: 100%; }

.assets-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 56px;
    padding: 0 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.assets-action:hover { border-color: var(--text-primary); }
.assets-action--primary {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--text-reversed);
}
.assets-action--primary:hover {
    background: var(--brand-orange-clicked);
    border-color: var(--brand-orange-clicked);
}

/* Reward history table */
.assets-table-wrap { overflow-x: auto; }
.assets-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
}
.assets-table thead th {
    text-align: left;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.assets-table tbody td {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid var(--line);
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.assets-table tbody tr:last-child td { border-bottom: 0; }

.assets-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
}
.assets-status--ok {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}
.assets-status--ok::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #16a34a;
}
.assets-status--warn {
    background: rgba(252, 122, 74, 0.12);
    color: var(--brand-orange);
}
.assets-status--warn::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.assets-loan-days {
    margin-left: 0.35rem;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Maturity row highlight in repayment schedule */
.assets-table tbody tr.is-maturity td {
    background: rgba(252, 122, 74, 0.05);
    font-weight: 600;
}
.assets-table tbody tr.is-maturity td:first-child {
    border-left: 3px solid var(--brand-orange);
    padding-left: calc(0.5rem - 3px);
}

.assets-pill {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
}
.assets-pill--maturity {
    background: rgba(252, 122, 74, 0.12);
    color: var(--brand-orange);
}

.assets-empty {
    padding: 1rem 0.5rem 1.5rem;
    text-align: center;
    color: var(--text-tertiary);
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
}

@media (max-width: 600px) {
    /* Maturity row on mobile: highlight the whole card with brand tint */
    .assets-table tbody tr.is-maturity {
        background: rgba(252, 122, 74, 0.08);
        border-color: rgba(252, 122, 74, 0.3);
    }
    .assets-table tbody tr.is-maturity td:first-child {
        border-left: 0;
        padding-left: 0;
        border-top: 0;
    }
    .assets-table tbody tr.is-maturity td {
        background: transparent;
    }
}

/* "View full schedule" link in card header */
.assets-link-btn {
    background: transparent;
    border: 0;
    padding: 0;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--t-fast) var(--ease);
}
.assets-link-btn:hover { color: var(--brand-orange); }

/* ============================================================
   REPAY MODAL
============================================================ */
.repay-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    animation: repay-fade 0.18s ease-out;
}
.repay-modal[hidden] { display: none; }
@keyframes repay-fade { from { opacity: 0; } to { opacity: 1; } }

.repay-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 24, 0.45);
}
.repay-modal__box {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: min(560px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(22, 22, 24, 0.18);
}
.repay-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--text-tertiary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.repay-modal__close:hover { background: var(--bg-subtle); color: var(--text-primary); }

.repay-modal__title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.625rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-right: 2rem;
    line-height: 1.15;
}
.repay-modal__sub {
    font-family: 'Geist', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 0.4rem;
    margin-bottom: 1.25rem;
}

.repay-step[hidden] { display: none; }

.repay-back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: 0;
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 0.85rem;
    padding: 0;
}
.repay-back:hover { color: var(--text-primary); }

/* Loan list */
.repay-loan-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.repay-loan-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    font-family: 'Geist', sans-serif;
    transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.repay-loan-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}
.repay-loan-card__no {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-sand);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}
.repay-loan-card__main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.repay-loan-card__amt { font-weight: 600; color: var(--text-primary); font-size: 0.9375rem; }
.repay-loan-card__meta { font-size: 0.8125rem; color: var(--text-tertiary); }
.repay-loan-card__chev { color: var(--text-tertiary); }

/* Type options */
.repay-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.repay-option {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.repay-option:hover {
    border-color: var(--text-primary);
    transform: translateY(-1px);
}
.repay-option strong {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}
.repay-option span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Confirmation breakdown */
.repay-breakdown {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    background: var(--bg-sand);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
}
.repay-breakdown li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-block: 0.35rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.repay-breakdown li strong {
    color: var(--text-primary);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.repay-amount {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 1.1rem;
    background: var(--text-primary);
    color: var(--text-reversed);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-family: 'Geist', sans-serif;
}
.repay-amount span { font-size: 0.875rem; opacity: 0.7; }
.repay-amount strong { font-size: 1.25rem; font-weight: 600; font-variant-numeric: tabular-nums; }

/* Wallet box */
.repay-wallet {
    background: var(--bg-sand);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    font-family: 'Geist', sans-serif;
    margin-bottom: 1rem;
}
.repay-wallet__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}
.repay-wallet__network {
    color: var(--brand-orange);
    font-style: normal;
    font-weight: 600;
    margin-left: 0.25rem;
}
.repay-wallet__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
}
.repay-wallet__row code {
    flex: 1;
    font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8125rem;
    color: var(--text-primary);
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.repay-wallet__row code::-webkit-scrollbar { display: none; }
.repay-copy {
    flex-shrink: 0;
    background: var(--text-primary);
    color: var(--text-reversed);
    border: 0;
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease);
}
.repay-copy:hover { background: #000; }
.repay-copy.is-copied { background: #16a34a; }
.repay-wallet__note {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

.repay-confirm {
    width: 100%;
    height: 52px;
    background: var(--brand-orange);
    color: var(--text-reversed);
    border: 0;
    border-radius: 10px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease);
}
.repay-confirm:hover { background: var(--brand-orange-clicked); }

.repay-table-wrap {
    overflow-x: auto;
}

/* ============================================================
   ADD / WITHDRAW REWARDS — full-page flow
============================================================ */
.ar-main {
    min-height: calc(100vh - var(--header-h, 72px));
    padding-top: calc(var(--header-h, 72px) + clamp(1.5rem, 4vw, 3rem));
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    background: var(--bg-sand);
}
.ar-shell {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.ar-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    transition: color var(--t-fast) var(--ease);
}
.ar-back:hover { color: var(--text-primary); }

.ar-head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.ar-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.ar-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Geist', sans-serif;
}

.ar-card {
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    margin-bottom: 0.75rem;
}
.ar-card__title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

/* Balance dual-row */
.ar-balance__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-block: 0.35rem;
    font-family: 'Geist', sans-serif;
}
.ar-balance__label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
}
.ar-balance__val {
    color: var(--text-primary);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Input + output rows */
.ar-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 0.85rem;
    height: 56px;
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.ar-input:focus-within {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(22, 22, 24, 0.08);
}
.ar-input--readonly {
    background: var(--bg-sand);
    border-color: var(--line);
}
.ar-input--readonly:focus-within { border-color: var(--line); box-shadow: none; }

.ar-input input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: 'Geist', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-primary);
    outline: none;
    min-width: 0;
    padding: 0;
    font-variant-numeric: tabular-nums;
}
.ar-input input::-webkit-outer-spin-button,
.ar-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ar-input input::placeholder { color: var(--text-tertiary); }
.ar-input__sym {
    color: var(--text-tertiary);
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
}
.ar-max {
    background: transparent;
    border: 0;
    padding: 0 0.5rem;
    color: var(--brand-orange);
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: color var(--t-fast) var(--ease);
}
.ar-max:hover { color: var(--brand-orange-clicked); }

/* Connector arrow */
.ar-connector {
    display: flex;
    justify-content: center;
    margin: -0.5rem 0;
    position: relative;
    z-index: 1;
}
.ar-connector__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--text-primary);
    color: var(--text-reversed);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Meta below output */
.ar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
}
.ar-meta__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    line-height: 1.5;
}
.ar-meta__row--split { margin-top: 0.45rem; padding-top: 0.45rem; border-top: 1px solid var(--line); }
.ar-meta__label { color: var(--text-primary); font-weight: 600; }
.ar-meta__sub  { color: var(--text-secondary); }
.ar-meta__val  { color: var(--text-primary); font-variant-numeric: tabular-nums; }
.ar-meta__hint { color: var(--text-tertiary); margin-left: 0.15rem; }
.ar-approx     { color: var(--text-tertiary); margin-right: 0.15rem; }

/* Submit */
.ar-submit {
    width: 100%;
    height: 60px;
    background: var(--text-primary);
    color: var(--text-reversed);
    border: 0;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 1.0625rem;
    cursor: pointer;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    transition: background var(--t-fast) var(--ease);
}
.ar-submit:hover { background: #000; }

/* Notice */
.ar-notice {
    text-align: center;
    margin-top: 0.5rem;
}
.ar-notice__title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}
.ar-notice__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 580px;
    margin-inline: auto;
}
.ar-notice__list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.ar-notice__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
}
.ar-notice__list strong { color: var(--text-primary); font-weight: 600; }

/* Success modal */
.ar-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
    animation: ar-fade 0.18s ease-out;
}
.ar-modal[hidden] { display: none; }
@keyframes ar-fade { from { opacity: 0; } to { opacity: 1; } }

.ar-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 24, 0.45);
}
.ar-modal__box {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    width: min(560px, 100%);
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 24px 60px rgba(22, 22, 24, 0.18);
    overflow: hidden;
}
.ar-modal__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ar-modal__title {
    position: relative;
    z-index: 1;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.75rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.ar-modal__msg {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.ar-modal__msg:last-of-type { margin-bottom: 0; }
.ar-modal__msg strong { color: var(--text-primary); font-weight: 600; }
.ar-modal__confirm {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 56px;
    background: var(--text-primary);
    color: var(--text-reversed);
    border: 0;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 1.0625rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background var(--t-fast) var(--ease);
}
.ar-modal__confirm:hover { background: #000; }

/* ============================================================
   WITHDRAW REWARDS — extends ar-* patterns
============================================================ */
.wr-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.5rem 1.4rem;
}
.wr-field { display: flex; flex-direction: column; gap: 0.5rem; }
.wr-label {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.wr-network {
    height: 52px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-sand);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.wr-input {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.wr-input::placeholder { color: var(--text-tertiary); }
.wr-input:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(22, 22, 24, 0.08);
}

.wr-balance {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}
.wr-balance__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
}
.wr-balance__label { color: var(--text-primary); font-weight: 500; }
.wr-balance__val   { color: var(--text-primary); font-weight: 600; font-variant-numeric: tabular-nums; }

.wr-notice-lead {
    text-align: center;
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0.85rem;
}

/* History */
.wr-history {
    margin-top: 1.75rem;
}
.wr-history__title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.wr-history__wrap {
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    overflow-x: auto;
    position: relative;
    min-height: 220px;
}

.wr-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Geist', sans-serif;
    font-size: 0.9375rem;
}
.wr-table thead th {
    text-align: left;
    padding: 0.75rem 0.6rem;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}
.wr-table tbody td {
    padding: 0.85rem 0.6rem;
    border-bottom: 1px solid var(--line);
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
}
.wr-table tbody tr:last-child td { border-bottom: 0; }

.wr-addr {
    display: inline-block;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.wr-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
}
.wr-status--processing { background: rgba(252, 122, 74, 0.12); color: var(--brand-orange); }
.wr-status--processing::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
}
.wr-status--completed { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.wr-status--completed::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #16a34a;
}

.wr-empty {
    position: absolute;
    inset: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: var(--text-tertiary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    pointer-events: none;
}
.wr-empty[hidden] { display: none; }
.wr-empty svg { color: var(--text-tertiary); opacity: 0.5; }

/* Mobile: stack history rows like assets table cards */
@media (max-width: 600px) {
    .wr-table thead { display: none; }
    .wr-table, .wr-table tbody, .wr-table tr, .wr-table td { display: block; width: 100%; }
    .wr-table tbody {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .wr-table tbody tr {
        background: var(--bg-sand);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0.75rem 0.9rem;
    }
    .wr-table tbody td {
        padding: 0.3rem 0;
        border: 0;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: baseline;
    }
    .wr-table tbody td::before {
        content: attr(data-label);
        color: var(--text-tertiary);
        font-size: 0.8125rem;
        font-weight: 500;
    }
    .wr-addr { max-width: 60%; }
}

/* ============================================================
   LIQUID STAKING — extends ar-* / wr-*
============================================================ */
.ls-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}
.ls-meta-row + .ls-meta-row { margin-top: 0.25rem; }
.ls-meta-row .ar-meta__label { font-size: 0.9375rem; }
.ls-meta-row .ar-meta__sub   { color: var(--text-secondary); }

.ls-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.ls-section .wr-label {
    display: block;
    margin-bottom: 0.6rem;
}

/* ===== Liquid Staking landing — chain selection grid ===== */
.ls-chains-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 600px) { .ls-chains-grid { grid-template-columns: 1fr 1fr; } }

.ls-chain-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text-primary);
    transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.ls-chain-card:hover {
    transform: translateY(-2px);
    border-color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.ls-chain-card__icon { display: inline-grid; place-items: center; }
.ls-chain-card__main {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.ls-chain-card__name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}
.ls-chain-card__sym {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.04em;
}
.ls-chain-card__right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.ls-chain-card__apy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1;
}
.ls-chain-card__pct {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-right: 0.4rem;
    font-weight: 500;
}
.ls-chain-card__apy-lbl {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    font-weight: 600;
}
.ls-chain-card__arrow {
    color: var(--text-tertiary);
    display: inline-grid;
    place-items: center;
    transition: transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.ls-chain-card:hover .ls-chain-card__arrow {
    transform: translateX(3px);
    color: var(--brand-orange);
}

/* ===== Chain switcher pills (on the staking form page) ===== */
.ls-chain-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}
.ls-chain-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.ls-chain-pill:hover { border-color: var(--text-primary); color: var(--text-primary); }
.ls-chain-pill.is-active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--text-reversed);
}
.ls-chain-pill__icon { display: inline-grid; place-items: center; }
.ls-chain-pill__sym { font-weight: 600; }
.ls-chain-pill__apy {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}
.ls-chain-pill.is-active .ls-chain-pill__apy { color: rgba(255, 255, 255, 0.7); }

/* Min-stake hint */
.ls-min-hint {
    margin-top: 0.6rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}
.ls-min-hint strong { color: var(--text-primary); font-weight: 600; }
.ls-min-hint span   { color: var(--text-tertiary); }

/* ===== Secured Lending specific ===== */
.sl-collat-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.sl-collat-meta .ls-min-hint { margin-top: 0.6rem; }
.sl-collat-usd {
    margin-top: 0.6rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
}
.sl-collat-usd span { color: var(--text-primary); font-weight: 600; }

/* Term pills (3M / 6M / 12M) */
.sl-term-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.sl-term-pill {
    height: 48px;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.sl-term-pill:hover { border-color: var(--text-primary); color: var(--text-primary); }
.sl-term-pill.is-active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--text-reversed);
}

.sl-meta-sub {
    color: var(--text-tertiary);
    font-weight: 400;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.sl-usdt-hint {
    margin-top: 0.6rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* "Create Address" red CTA (initial state) */
.ls-create {
    width: 100%;
    height: 52px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 10px;
    color: #ef4444;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.ls-create:hover:not([disabled]) { background: rgba(239, 68, 68, 0.14); }
.ls-create[disabled] { opacity: 0.5; cursor: not-allowed; }

/* Address row (after creation) */
.ls-addr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 0.85rem;
    min-height: 52px;
}
.ls-addr[hidden] { display: none; }
.ls-addr--empty {
    background: var(--bg-sand);
    color: var(--text-tertiary);
}
.ls-addr__empty {
    flex: 1;
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    padding: 0.85rem 0;
}
.ls-addr__code {
    flex: 1;
    font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8125rem;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile: allow address to wrap fully so users can read every char */
@media (max-width: 600px) {
    .ls-addr {
        flex-wrap: wrap;
        padding: 0.65rem 0.75rem;
        gap: 0.5rem;
    }
    .ls-addr__code {
        flex: 1 1 100%;
        white-space: normal;
        word-break: break-all;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.75rem;
        line-height: 1.4;
    }
    .ls-copy {
        align-self: flex-start;
    }
}
.ls-copy {
    flex-shrink: 0;
    background: var(--text-primary);
    color: var(--text-reversed);
    border: 0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: background var(--t-fast) var(--ease);
}
.ls-copy:hover { background: #000; }
.ls-copy.is-copied { background: #16a34a; }

/* Destination tag info note */
.ls-tag-note {
    text-align: center;
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    margin: 1rem 0 1.25rem;
    line-height: 1.5;
}

/* Staking notice */
.ls-notice {
    padding: 1.5rem 1.5rem 1.25rem;
}
.ls-notice__title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.ls-notice__lead {
    color: var(--text-secondary);
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0.85rem;
}
.ls-notice__strong {
    color: var(--text-primary);
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.ls-notice .ar-notice__list {
    margin-top: 1rem;
    margin-inline: 0;
    max-width: none;
}

/* Activity feed live indicator */
.ls-feed__head {
    align-items: center;
    margin-bottom: 0.5rem;
}
.ls-feed__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ls-feed__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: ls-feed-pulse 1.6s ease-out infinite;
}
@keyframes ls-feed-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Unstaking — small available row at top of input card */
.us-avail {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
    font-family: 'Geist', sans-serif;
}
.us-avail__label { color: var(--text-primary); font-weight: 500; font-size: 0.9375rem; }
.us-avail__val   { color: var(--text-primary); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Mobile table -> stacked card layout */
@media (max-width: 600px) {
    .assets-table thead { display: none; }
    .assets-table, .assets-table tbody, .assets-table tr, .assets-table td { display: block; width: 100%; }

    /* Each row becomes its own card on mobile for clear separation */
    .assets-table tbody {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-bottom: 1rem;
    }
    .assets-table tbody tr {
        background: var(--bg-sand);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--line);
    }
    .assets-table tbody tr td {
        padding: 0.35rem 0;
        border: 0;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
    }
    .assets-table tbody tr td::before {
        content: attr(data-label);
        color: var(--text-tertiary);
        font-size: 0.8125rem;
        font-weight: 500;
    }
}
