.wd-wallet-wrap {
    max-width: 380px;
    margin: 0 auto;
    background: #0d0d0d;
    border-radius: 28px;
    padding: 24px 20px 28px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.wd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.wd-title { font-size: 20px; font-weight: 600; }
.wd-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #222;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.wd-balance-card {
    background: linear-gradient(135deg, #d98a4f, #8a5a34);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 18px;
}
.wd-balance-label { font-size: 13px; opacity: 0.85; }
.wd-balance-amount { font-size: 32px; font-weight: 700; margin: 6px 0 14px; }
.wd-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.9;
}

.wd-actions {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}
.wd-btn {
    background: #1a1a1a;
    border: none;
    color: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.wd-btn span { font-size: 11px; opacity: 0.8; }

.wd-transactions-title {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wd-transaction-row {
    display: flex;
    align-items: center;
    background: #161616;
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.wd-t-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #262626;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}
.wd-t-info { flex-grow: 1; }
.wd-t-name { font-size: 14px; font-weight: 500; }
.wd-t-date { font-size: 12px; color: #888; margin-top: 2px; }
.wd-t-amount { font-size: 14px; font-weight: 600; }
.wd-t-amount.wd-credit { color: #4ade80; }
.wd-t-amount.wd-debit { color: #fff; }

.wd-empty { color: #888; font-size: 13px; }

.wd-user-name {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #999;
}
