.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    background-color: #fff;
    width: 98%;
    height: 100%;
    padding: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Styles */
.open-modal-button {
position: fixed;
  right: -1px; 
  top: 50%; 
  transform: rotate(90deg);
  background-color: #474E68;   
  color:#fff;     
  padding: 10px 5px; 
  font-size: 14px;
  border-radius: 5px; 
  cursor: pointer;
  border:solid 1px #404258;  
  white-space: nowrap; 
}


.qrcodewindow
{
    display: flex;
    justify-content: center;
    height: 260px;
    width: 260px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #404258;   
}

