.walletCard {
    width: 90%;
    height: auto;

    margin-left: 3%;
    margin-top: 5px;
    padding: 12px;

    border-radius: 9px;

    background: #444;
    color: #aaa;

    position: relative;
}

#Address:hover {
    color: darkblue;
    cursor: pointer;
}

.walletCardSpan {
    width: 100%;

    margin-bottom: 5px;

    font-size: 1rem;

    display: flex;
}

.walletCardB {
    margin-left: 1rem;
    margin-right: 0.37rem;

    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.walletCardButton {
    width: 80%;

    margin-top: 10px;
    margin-left: 10%;
    padding: 4px;

    background: #111;
    color: #0f0;
    border: 1px solid #0f0;
    border-radius: 8px;
    font-size: 1rem;

    cursor: pointer;
}

.walletCardButton:hover {
    background: #0f0;
    color: #000;
    border: 1px solid #111;
}

.TokenImage {
    width: 10rem;
    aspect-ratio: 1/1;

    border-radius: 0 0 9px 0;

    object-fit: contain;
}