.dd-wallet {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Balance Card */
.wallet-card {
    background: #f0f8ff;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    border:1px solid #28a745;
}

.wallet-card h2 {
    font-size: 32px;
    margin: 10px 0;
}

.wallet-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.wallet-actions .btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.wallet-actions .withdraw { background: #dc3545; }
.wallet-actions .add { background: #007bff; }

/* Stats */
.wallet-stats {
    display: flex;
    gap: 15px;
}

.wallet-stats .stat {
    flex: 1;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* History */
.wallet-history {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.wallet-history table {
    width: 100%;
    border-collapse: collapse;
}

.wallet-history th,
.wallet-history td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.wallet-history .credit {
    color: green;
    font-weight: bold;
}

.wallet-history .debit {
    color: red;
    font-weight: bold;
}