.mwp-wallet-page{
    padding:30px;
    background:#f5f7fb;
    border-radius:24px;
    font-family:Arial,sans-serif;
}

.mwp-wallet-top{
    margin-bottom:25px;
}

.mwp-wallet-top h2{
    font-size:38px;
    margin:0 0 10px;
    font-weight: 600;
    color:#111827;
}

.mwp-wallet-top p{
    color:#32466e;
    margin:0;
}

.mwp-wallet-hero{
    background:linear-gradient(
    180deg,
    #b6e0f5,
    #cfeefe
    );
    border-radius:26px;
    padding:40px 40px;
    text-align:center;
    margin-bottom:30px;
    position:relative;
    overflow:hidden;
}

.mwp-wallet-hero::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.18);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.mwp-wallet-label{
    display:block;
    font-size:24px;
    color:#000000;
    margin-bottom:15px;
}

.mwp-wallet-balance{
    font-size:82px;
    margin:0;
    color:#1554d1;
    font-weight:800;
}

.mwp-wallet-status{
    margin-top:25px;
    display:inline-block;
    background:#ffffff;
    padding:12px 26px;
    border-radius:50px;
    font-weight:700;
    color:#111827;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.mwp-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:30px;
}

.mwp-stat-card{
    background:#ffffff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.mwp-stat-card span{
    color:#64748b;
    font-size:15px;
}

.mwp-stat-card h3{
    margin:15px 0 0;
    font-size:34px;
    color:#111827;
}

.mwp-wallet-recharge{
    background:#ffffff;
    border-radius:22px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.mwp-wallet-recharge h3{
    margin-top:0;
    margin-bottom:20px;
    font-size:24px;
}

.mwp-wallet-recharge form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.mwp-wallet-recharge input{
    flex:1;
    min-width:250px;
    height:58px;
    border:1px solid #dbe3ee;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
}

.mwp-wallet-recharge button{
    height:58px;
    border:none;
    background:#1554d1;
    color:#ffffff;
    border-radius:14px;
    padding:0 35px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.mwp-wallet-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    margin-top: 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.mwp-card-header{
    padding:28px;
    border-bottom:1px solid #eef2f7;
}

.mwp-card-header h3{
    margin:0;
    font-size:28px;
}

.mwp-table-wrapper{
    overflow:auto;
}

.mwp-wallet-table{
    width:100%;
    border-collapse:collapse;
}

.mwp-wallet-table thead{
    background:#f8fafc;
}

.mwp-wallet-table th{
    padding:22px;
    text-align:left;
    color:#475569;
    font-size:15px;
}

.mwp-wallet-table td{
    padding:22px;
    border-top:1px solid #eef2f7;
}

.mwp-wallet-table tr:hover{
    background:#f8fbff;
}

.mwp-badge{
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.mwp-badge.credit{
    background:#dcfce7;
    color:#15803d;
}

.mwp-badge.debit{
    background:#fee2e2;
    color:#dc2626;
}

.mwp-empty{
    padding:60px 20px;
    text-align:center;
    color:#64748b;
}

.mwp-wallet-checkout-box{
    background:#ffffff;
    padding:25px;
    border-radius:16px;
    margin-bottom:25px;
    border:1px solid #e5e7eb;
}

.mwp-wallet-checkout-box h3{
    margin-top:0;
    margin-bottom:20px;
}

.mwp-wallet-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
    font-weight:600;
}

.mwp-wallet-input{
    width:220px;
    height:45px;
    /* border:1px solid #d1d5db; */
    border-radius:10px;
    padding:0 15px;
    margin-right:10px;
}

.mwp-wallet-btn{
    height:45px;
    padding:0 25px;
    border:none;
    background:#2271b1;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

@media(max-width:768px){

    .mwp-wallet-page{
        padding:15px;
    }

    .mwp-wallet-balance{
        font-size:52px;
    }

    .mwp-wallet-hero{
        padding:40px 20px;
    }

    .mwp-stats-grid{
        grid-template-columns:1fr;
    }

}
.mwp-transfer-box{

    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-top:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.mwp-transfer-box h2{

    margin-bottom:20px;

}

.mwp-transfer-box form{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.mwp-transfer-box input{

    height:50px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;

}

.mwp-transfer-box button{

    height:50px;
    border:none;
    background:#2271b1;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;

}
