.container {
    text-align: center;
    background-color: rgb(209, 237, 250);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 6px #0000001a;
    
    margin: 40px;
  }
  input {
    padding: 10px;
    max-width: 400px;
    width: 80%;
    margin-top: 20px;
    border: 1px solid #4682b4;
    border-radius: 5px;
  }
  button {
    padding: 10px 20px;
    background-color: #4682b4; /* Light blue button */
    border: none;
    color: white;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 16px;
  }
  button:hover {
    background-color: #5a9bd5; /* Slightly darker blue on hover */
  }
  .qr-code {
    margin-top: 20px;
  }
  #qrCodeContainer {
    width: 100%; /* Container takes full width of parent */
    max-width: 300px; /* Set a maximum width */
    margin: auto; /* Center the container */
    text-align: center; /* Center content */
}
.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

.download-btn:hover {
  background-color: #0056b3;
}