/* Center container box on the page with a pleasant card style */
#custom-qrcode-wrapper {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #fff;
  font-family: Arial, sans-serif;
}

/* Input text field styling */
#custom-qr-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

#custom-qr-input:focus {
  border-color: #0073aa;
  outline: none;
}

/* Preview text styling */
#custom-preview {
  margin: 10px 0;
  color: #666;
  font-style: italic;
  min-height: 24px;
}

/* Generate button styling */
#generate-qr-btn {
  padding: 12px 20px;
  background-color: #0073aa;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#generate-qr-btn:hover {
  background-color: #005d8f;
}

/* QR Code container spacing */
#custom-qrcode {
  margin-top: 15px;
  text-align: center;
}
