/* =========================
   BRAVE WALLET DESIGN
========================= */

.brave-wallet-box{
    max-width:500px;
    margin:30px auto;
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.brave-wallet-title{
    text-align:center;
    color:#6a0dad;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.brave-wallet-balance{
    text-align:center;
    background:linear-gradient(135deg,#6a0dad,#9333ea);
    color:#fff;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
}

.brave-wallet-balance small{
    display:block;
    opacity:.8;
    font-size:14px;
}

.brave-wallet-balance h2{
    margin:10px 0 0;
    font-size:32px;
    color:#fff;
}

.brave-wallet-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.brave-wallet-form input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.brave-wallet-form input:focus{
    border-color:#9333ea;
    box-shadow:0 0 0 3px rgba(147,51,234,.15);
}

.brave-wallet-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#6a0dad,#9333ea);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.brave-wallet-btn:hover{
    transform:translateY(-2px);
}

.brave-wallet-success{
    background:#ecfdf5;
    color:#065f46;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}

.brave-wallet-error{
    background:#fef2f2;
    color:#991b1b;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
}

.brave-wallet-history{
    background:#fff;
    border-radius:15px;
    padding:20px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.brave-wallet-history-item{
    padding:15px;
    border-bottom:1px solid #eee;
}

.brave-wallet-history-item:last-child{
    border-bottom:none;
}

.brave-wallet-history-type{
    color:#6a0dad;
    font-weight:600;
}

.brave-wallet-history-amount{
    font-weight:bold;
    color:#111;
}

.brave-wallet-history-desc{
    color:#777;
    font-size:14px;
}

@media(max-width:768px){

    .brave-wallet-box{
        margin:15px;
    }

}