
    .wallet-item {
        display: flex;
        align-items: center;
        padding: 14px;
        color: white;
        background-color: #212529;
        border-radius: 14px;
        margin-bottom: 18px;
        cursor: pointer;
    }

    .wallet-item:hover {
        background-color: #2c2f33;
    }

    .wallet-item img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .qr-code {
        margin-left: auto;
        color: #506eea;
        font-weight: bold;
        font-size: 0.9em;
    }

    .modal-header, .modal-content {
        background-color: #111111;
        color: white;
        border: none;
    }

    #allWallets {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        /* Adjust width as needed */
    }

    .right-aligned {
        margin-left: auto;
    }

    #allWallets .right-aligned a {
        color: rgb(89, 85, 85);
        /* Initial color */
        text-decoration: none;
        /* Optional: removes underline */
    }

    #allWallets .right-aligned a:hover {
        color: rgb(255, 255, 255);
        /* Color on hover */
    }

    @media screen and (max-width: 480px) {
        .modal-content {
            width: 95vw !important;
            height: 35vh;
        }
    }
