/* wallet.css */
.wallet-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wallet-balance {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.wallet-transactions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wallet-transactions li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 600px) {
    .wallet-container {
        padding: 0.5rem;
    }
    .wallet-balance {
        font-size: 1.2rem;
    }
}
