/* Dashboard Wallet Styles */
.dashboard-wallet-card {
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #004274 0%, #002e52 100%) !important;
}

.dashboard-wallet-card:hover {
    transform: translateY(-5px);
}

.wallet-info h2 {
    display: flex;
    align-items: baseline;
}

.wallet-info h2 .currency-symbol {
    font-size: 24px;
    margin-right: 5px;
    opacity: 0.8;
}

/* Transaction Table Refinement */
.wallet-transactions-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: -10px;
}

.wallet-transactions-table thead th {
    background-color: transparent;
    border: none;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    font-weight: 600;
}

.wallet-transactions-table tbody tr {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.wallet-transactions-table tbody tr:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: scale(1.005);
}

.wallet-transactions-table tbody td {
    border: none;
    padding: 15px 20px;
    vertical-align: middle;
}

.wallet-transactions-table tbody tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.wallet-transactions-table tbody tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.wallet-transactions-table .badge {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.badge-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.badge-danger {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.wallet-transactions-table .balance-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* App Passwords Refinement */
#houzez_app_pass_list .list-group-item {
    border-radius: 8px !important;
    margin-bottom: 12px;
    border: 1px solid #eee !important;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

#houzez_app_pass_list .list-group-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fdfdfd;
}

.houzez-revoke-app-pass {
    transition: all 0.2s ease;
}

.houzez-revoke-app-pass:hover {
    transform: scale(1.05);
    background-color: #c82333 !important;
}