/* Wallet Module Styles */
.wallet-box {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#btn-connect-wallet {
    background: #1E2329;
    color: #F0B90B;
    border: 2px solid #F0B90B;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.1s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

#btn-connect-wallet:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

#btn-connect-wallet:hover {
    background: #2B3139;
}

#btn-connect-wallet.connected {
    background: #F0B90B;
    color: #000;
    border-color: #000;
}