/* WALLET MINI */
.ppob-wallet-mini{
    background:#fff;
    border-radius:12px;
    padding:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    max-width:260px;
    margin-bottom:15px;
}

.wallet-saldo{
    text-align:center;
    margin-bottom:10px;
}

.wallet-saldo small{
    font-size:12px;
    color:#888;
}

.wallet-saldo h2{
    margin:0;
    color:#0073aa;
}

.wallet-menu{
    display:flex;
    gap:10px;
}

.wallet-menu button{
    flex:1;
    border:none;
    background:#f5f7fa;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
}

.wallet-menu button:hover{
    background:#0073aa;
    color:#fff;
}

/* BACKDROP */
.ppob-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;
    background: rgba(0,0,0,0.5);

    align-items: center;
    justify-content: center;
}

.ppob-modal[style*="block"] {
    display: flex !important;
}

.ppob-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
}

/* CLOSE */
.ppob-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* LOCK BODY */
body.ppob-modal-open {
    overflow: hidden !important;
}

/* CLOSE BUTTON */
.ppob-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

