body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#qr-generator {
  background-color: #fff;
  border: 1px solid #ddd; /* Thin border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 400px;
}

input {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

button {
  background-color: #007bff; /* Blue button */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 0; /* Radius set to 0 */
  cursor: pointer;
  width: calc(100% - 20px);
  box-sizing: border-box;
}

button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

#generated-qrcode {
  margin-top: 20px;
}

footer {
  margin-top: 20px;
  text-align: center;
}

footer h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

footer a {
  color: #007bff;
  text-decoration: none;
}
