/* === WALLET LAYOUT === */
.woo-wallet-my-wallet-container {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    overflow: scroll;
}

/* === SIDEBAR === */
.woo-wallet-my-wallet-container .woo-wallet-sidebar {
    flex: 0 0 220px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
}

.woo-wallet-sidebar-heading {
    font-size: 26px;
    font-weight: 600;
    color: #62c0d8 !important; /* Orange Title */
    margin-bottom: 20px;
    text-align: center;
}

.woo-wallet-sidebar-heading a {
    color: #62c0d8 !important;
    text-decoration: none;
}
.woo-wallet-content > hr {
    margin: 2.45em 0;
}

/* Sidebar buttons */
.woo-wallet-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woo-wallet-sidebar ul li.card {
    max-width: 80%;
    margin-bottom: 15px;
}
.woo-wallet-sidebar ul li.card a {
    width: 80%;
}
.woo-wallet-sidebar ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #f4a641;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woo-wallet-sidebar ul li a:hover {
    background: #f4a641;
    color: #fff;
}

.woo-wallet-sidebar ul li a span {
    font-size: 18px;
}


/* === CONTENT === */
.woo-wallet-content {
    flex: 1;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

/* Balance Header */
.woo-wallet-content-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woo-wallet-content-h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #62c0d8 !important;
}

.woo-wallet-price .woocommerce-Price-amount {
    font-size: 22px;
    font-weight: bold;
    color: #eec056 !important;
}

/* Transactions */
.woo-wallet-transactions-items {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.woo-wallet-transactions-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.woo-wallet-transactions-items li p {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.woo-wallet-transactions-items li small {
    display: block;
    color: #888;
    font-size: 13px;
}

.woo-wallet-transaction-type-debit .woocommerce-Price-amount{
    font-size: 16px;
    font-weight: 600;
    color: #eec056 !important; /* Red for debits */
}
.woo-wallet-transaction-type-debit {
    color: #eec056;
}
/* === RESPONSIVE === */
@media (max-width: 991px) {
    .woo-wallet-my-wallet-container {
        flex-direction: column;
    }

    .woo-wallet-my-wallet-container .woo-wallet-sidebar {
        flex: none;
        margin-bottom: 20px;
    }

    .woo-wallet-content {
        padding: 15px;
    }

    .woo-wallet-content-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


/* wallet style by wpSwings */
.wps_wcb_wallet_balance_container {
    background-color: #FEA759 !important;
}