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

.grecaptcha-badge {
  opacity: 0;
}

button:focus {
  outline-color: transparent;
  outline-style: none;
  outline: none;
}

body {
  overflow-x: hidden;
  color: #2e2e2e;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  height: 100dvh;
}

p, a, li {
  color: #2e2e2e;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 300;
}

p {
  margin-bottom: 15px;
}

a {
  color: #2e2e2e;
  text-decoration: underline;
}
a:hover {
  color: #2e2e2e;
}
a:active {
  color: #2e2e2e;
}

a:focus {
  color: #2e2e2e;
  outline: none;
}

*:focus {
  outline: none;
}

.form__control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.image__fluid {
  max-width: 100%;
  height: auto;
}

h1 {
  font-family: "Roboto", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 3rem;
  text-align: left;
}

h2 {
  font-family: "Roboto", sans-serif;
  color: black;
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: left;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  container-type: inline-size;
  container-name: app;
}

.night-mode {
  background: black;
  color: black;
}
.night-mode .app {
  display: none;
}

h1, h2 {
  margin: 0;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date__name {
  color: #adadad;
}

h2 {
  font-size: 3rem;
}

.header-row {
  flex-shrink: 0;
  padding: 1rem;
  background: black;
  color: white;
}

.activation_overlay {
  position: fixed;
  inset: 0;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
}

.no-events {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  color: #ffa421;
  font-weight: 600;
  align-items: center;
  inset: 0;
  height: 100%;
}

.main {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: white;
  color: black;
}

.footer {
  flex-shrink: 0;
  padding: 1rem;
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer button {
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  background: #f4f202;
  color: black;
  border: none;
  cursor: pointer;
}

.event {
  display: grid;
  grid-template-columns: 150px 1fr 100px;
  align-items: center;
  padding: 30px;
  cursor: pointer;
  font-size: 3rem;
  justify-content: space-between;
  border-bottom: solid 5px black;
  font-weight: 600;
}
.event__title {
  display: flex;
  flex-direction: column;
}
.event__time {
  color: #adadad;
}
.event__initials {
  border-radius: 999px;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.event.klaarmaken .event__initials {
  background-color: #e3b066;
  color: white;
}
.event.appointment.faded .event__icon svg {
  color: #adadad;
  font-size: 5rem;
}
.event.appointment.faded .event__initials {
  background-color: #adadad;
  color: white;
}
.event.appointment .event__initials {
  background-color: #ffa421;
  color: white;
}

.event__icon {
  font-size: 5rem;
}
.event__icon.routine svg {
  color: #adadad;
  font-size: 5rem;
}
.event__icon.appointment svg {
  color: #ffa421;
  font-size: 5rem;
}
.event__icon.klaarmaken svg {
  color: #e3b066;
  font-size: 5rem;
}

.event.active {
  background-color: #1b4c9b;
  color: white;
  font-weight: 600;
}
.event.active .event__icon svg {
  color: white;
}

.event.faded {
  opacity: 0.3;
}

.section-title {
  font-weight: bold;
  font-size: 2rem;
  color: #f4f202;
}

time {
  font-family: "Roboto", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 3rem;
  text-align: left;
}

button {
  margin-left: 1rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  background: #1b4c9b;
  color: white;
  border: none;
  cursor: pointer;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@container app (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  time {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .header-row {
    padding: 10px;
  }
  .footer {
    padding: 10px;
  }
  .no-events {
    font-size: 1.5rem;
  }
  .event {
    grid-template-columns: 50px 1fr 50px;
    padding: 10px;
    font-size: 1.5rem;
    border-bottom: solid 2px black;
  }
  .event.appointment.faded .event__icon svg {
    color: #adadad;
    font-size: 2rem;
  }
  .event__icon {
    font-size: 2rem;
  }
  .event__icon.routine svg {
    color: #adadad;
    font-size: 2rem;
  }
  .event__icon.appointment svg {
    color: #ffa421;
    font-size: 2rem;
  }
  .event__icon.klaarmaken svg {
    color: #e3b066;
    font-size: 2rem;
  }
}

/*# sourceMappingURL=all.css.map */
