* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

.bericht {
  resize: vertical;
  width: 100%;
}

.email-section input,
.email-section textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-section button {
  background-color: #00963f;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.email-section button:hover {
  background-color: #007f36;
}

.instructie {
  margin-bottom: 0.5rem;
}

label {
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 5rem;
  position: relative;
}

.question {
  margin-top: 20px;
  font-weight: bold;
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
}

.tijd {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-content {
  display: flex;
  gap: 20px;
}

.form-section {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  position: relative;
}

.send-button {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.send-button:hover {
  background-color: #007a3d;
}

.button-container {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 2rem;
}

.next-button {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.next-button:hover {
  background-color: #007a3d;
}

.simulatiebutton {
  background-color: #009b4d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 20px;
}

.simulatiebutton:hover {
  background-color: #007a3d;
}
.simulatiebutton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  overflow: hidden;
}
.info-header {
  background-color: #6b4b7d;
  color: white;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header h3 {
  margin: 0;
  font-size: 18px;
}

.arrow {
  font-size: 24px;
}

.expanded .arrow {
  font-size: 24px;

  transform: rotate(180deg);
}

.info-content {
  background-color: #e9e9e9;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.distraction {
  position: absolute;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  pointer-events: auto;
  max-width: 300px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: scale(0.9);
  cursor: pointer;
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}

.fade-out {
  opacity: 0;
  transform: scale(0.8);
}
