

main {
  margin-top: 100px;
  display: block !important;
}

h1 {
  color: var(--theme-heading-color);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 2.5rem;
}

h3 {
  margin-bottom: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.dag {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

input, select {
  margin-top: 0.5rem;
  border: 1px solid #dddddd;
  padding: 5px;
}

input[type="checkbox"] {
  width: 25px;
  height: 25px;
}

input[type="checkbox"]:hover:not(:disabled) {
  cursor: pointer;
}

input[type="checkbox"]:hover:disabled {
  cursor: not-allowed;
 }

label {
  display: flex;
  flex-direction: column;
}

input[type="submit"] {
  background-color: #3C3C3B;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  border-radius: 0.25rem;
  width: fit-content;
  margin-top: 1.5rem;
}

input[type="submit"]:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  background: var(--secondary-color);
  cursor: pointer;
}

#aanmelding-grid {
  display: grid; 
  grid-template-columns: 120px 1fr 1fr 1fr 1fr;
  background-color: rgb(231, 231, 231);
  overflow: auto;
}

#aanmelding-grid > div {
  background-color: #898989; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}

#aanmelding-grid h3 {
  margin: 0;
}
#aanmelding-grid h4 {
  margin: 0;
  font-size: 1.5rem;
}
#aanmelding-grid > h3 {
  text-align: center;
  background-color: #898989;
  padding: 16px 0px;
}

#aanmelding-grid label {
  padding: 15px;
}

#aanmelding-grid label input {
  display: none;
}

#aanmelding-grid svg {
  height: 150px;
  fill: darkgray;
}

#aanmelding-grid svg:hover {
  fill: #898989;
  cursor: pointer;
}

#aanmelding-grid label svg.selected {
  fill: rgb(68, 149, 68);
}

#aanmelding-grid label.filled {
  pointer-events: none;
}

#aanmelding-grid label.filled svg {
  fill: rgb(220, 42, 42);
}

#aanmelding-grid label.filled svg:hover {
  cursor: default;
}

#aanmelding-grid p{
  text-align: center;
  padding: 15px;
  height: fit-content;
  margin: auto;
}
