#opkopkoffie-smaaktest-form {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
}

#opkopkoffie-smaaktest-form .tab {
  display: none;
}

#opkopkoffie-smaaktest-form .selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

#opkopkoffie-smaaktest-form .selector label {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

#opkopkoffie-smaaktest-form .selector label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#opkopkoffie-smaaktest-form .selector input {
  display: none;
}

#opkopkoffie-smaaktest-form .selector label:hover img {
  transform: scale(1.05);
}

#opkopkoffie-smaaktest-form .selector input:checked + label {
  border-color: #F1CFBB;
}

#opkopkoffie-smaaktest-form button#prevBtn {
  background: #F1CFBB;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#opkopkoffie-smaaktest-form button#prevBtn:hover {
  background: #e2b49f;
}

#opkopkoffie-smaaktest-form .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}

#opkopkoffie-smaaktest-form .step.active {
  background-color: #F1CFBB;
}

#loadingMessage p {
  font-size: 1.2rem;
  color: #4a3b2b;
  background: #f9f5f3;
  border: 1px solid #f1cfbb;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
