.wallet-balance {
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 20px;
}

.wallet-balance h3 {
    margin-top: 0;
    color: #333;
}

.balance-amount {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
}

/* Rest of your CSS remains the same */
.wallet-transactions {
    margin-top: 20px;
}

.wallet-transactions h3 {
    margin-bottom: 15px;
}

.wallet-transactions-table {
    width: 100%;
    border-collapse: collapse;
}

.wallet-transactions-table th,
.wallet-transactions-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.wallet-transactions-table th {
    background-color: #f5f5f5;
}

.wallet-transactions-table tr:nth-child(even) {
    background-color: #f9f9f9;
}