/* KHUSUS UNTUK HALAMAN WALLET: Hapus padding atas agar naik ke atas */
.wallet-page {
    padding-top: 0 !important; 
}

/* Header Halaman Accounts */
.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 8px; /* Beri jarak sedikit saja dari atas layar */
}
.wallet-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.btn-add-account {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

/* Ringkasan Saldo */
.wallet-summary {
    border: 1px solid #f5a623;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #ffffff;
}
.wallet-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.wallet-summary .total-balance {
    font-size: 16px;
}

/* List Item Akun */
.account-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.account-item:last-child {
    margin-bottom: 0;
}

.account-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 14px;
}
.account-icon.bg-green { background-color: #2ecc71; } /* Warna hijau untuk Cash */
.account-icon.bg-blue  { background-color: #3498db; } /* Warna biru untuk Mandiri */

.account-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.account-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
.account-balance {
    font-size: 15px;
}

.account-menu-btn {
    background: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
}
