/* Grundlayout */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;
  color: #333;
}

/* Überschrift */
h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #222;
}

/* Wrapper für QR-Code + Button */
.qr-Wrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #343434;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  border: 3px solid #e30613;
}

.qr-Wrapper.show {
	display: flex;
}

/* QR-Code Platzhalter */
#qrcode {
  margin-bottom: 1.5rem;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  /* border: 3px solid #e30613; */
}

/* Button Styling */
#downloadFile {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #934045;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

#downloadFile:hover {
  background: #e30613;
}

#downloadQR {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: #2a5a8f;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 0.5rem;
  width: 100%;
}

#downloadQR:hover {
  background: #1e3b5a;
}
