﻿.balance-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.balance-card {
    border-radius: 18px;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(148,163,184,0.14);
}

.balance-currency {
    font-size: 13px;
    font-weight: 900;
    color: #93c5fd;
}

.balance-main {
    margin-top: 8px;
    font-size: 22px;
    font-weight: 900;
    color: #f8fafc;
}

.balance-row {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #cbd5e1;
}

    .balance-row.muted {
        opacity: 0.75;
    }

.balance-positive {
    box-shadow: inset 0 0 0 1px rgba(34,197,94,0.22);
}

.balance-negative {
    box-shadow: inset 0 0 0 1px rgba(239,68,68,0.22);
}
