
.icon-container {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
z-index:100;
}

.icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
transition: transform 0.2s;
}

.qr-code {
    position: absolute;
    top: 50%;
    right: 70px; /* Adjust the distance from the icon */
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    display: none;
}