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

#cursor {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path d='M5,5 L20,20 M5,20 L20,5' stroke='white' stroke-width='2'/><path d='M5,2 L2,15 L8,9 L15,11 L9,5 Z' fill='black'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

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

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

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

.tabs {
  margin-bottom: 20px;
  display: flex;
  background-color: #e6f7ea;
  max-width: fit-content;
  padding: 0.5rem 0rem;
  border-radius: 5px;
}

.tab {
  padding: 4px 14px;
  border-radius: 5px;
  cursor: pointer;
}

.tab:hover {
  background-color: #c8e6c9;
  color: #005700;
  transition: background-color 0.3s ease;
}

.tab.active {
  background-color: #009b4d;
  color: white;
}

.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;
}

.form-section h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.form-instruction {
  background-color: #e8f5e9;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.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;
}

.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;
}

.hide-cursor * {
  cursor: none !important;
}
