/* 余额卡片 */
.wallet-balance-card {
    background: linear-gradient(135deg, #e4393c, #c9282b);
    color: #fff;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 8px;
}
.wallet-balance-label {
    font-size: 13px;
    opacity: .85;
    margin-bottom: 8px;
}
.wallet-balance-amount {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 流水标题 */
.wallet-log-title {
    background: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

/* 流水条目 */
.wallet-log-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}
.wallet-log-left { flex: 1; min-width: 0; }
.wallet-log-type { font-size: 14px; color: #333; font-weight: bold; }
.wallet-log-remark { font-size: 12px; color: #999; margin-top: 3px; }
.wallet-log-time { font-size: 11px; color: #bbb; margin-top: 3px; }

.wallet-log-right { text-align: right; flex-shrink: 0; }
.wallet-log-amount { font-size: 17px; font-weight: bold; }
.amount-in  { color: #e4393c; }
.amount-out { color: #333; }
.wallet-log-balance { font-size: 11px; color: #bbb; margin-top: 3px; }

/* RTL */
[dir="rtl"] .wallet-log-right { text-align: left; }
