/* style.css */
* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

h1 {
  margin: 0;
  font-size: 24px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label,
input,
select,
button {
  font-size: 16px;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#qr-code {
  width: 256px;
  height: 256px;
  margin: 20px 0;
}

footer {
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

#cookie-popup.visible {
  opacity: 1;
  pointer-events: auto;
}

#cookie-popup p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-popup a {
  color: #fff;
  text-decoration: underline;
}

#cookie-popup button {
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

/* hide vCard input fields by default */
#vcard-fields {
  display: none;
}

/* hide website input field by default */
