#wallet-amount-wrapper {
    #wallet-amount-container-wrapper {
        display: none;
    }

    .wallet-amount-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .wallet-card {
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
    }

    .wallet-label {
        color: #64748b;
        font-size: 2rem;
    }

    .balance-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .currency {
        color: #0f172a;
        font-size: 3.5rem;
        font-weight: normal;
    }

    .balance {
        color: #0f172a;
        font-size: 3.5rem;
        font-weight: 600;
    }

    .error-message {
        color: #ef4444;
        font-size: 0.875rem;
        margin-top: 0.75rem;
        display: none;
    }

    .loading {
        opacity: 0.5;
        pointer-events: none;
    }

    .sign-in-button {
        background-color: white;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 1.5rem;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .sign-in-button:hover {
        background-color: #f8fafc;
    }

    .hidden {
        display: none;
    }

    @media (max-width: 480px) {
        .wallet-card {
            width: 260px;
            padding: 1.5rem;
        }
    }
}
