*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  margin: 0;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
}

input, select {
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid gray;
  background-color: transparent;
  color: white;
  height: 30px;
  padding-left: 5px;
}

button {
  font-family: inherit;
  border: none;
  border-radius: 10px;
  background-color: #B5FF00;
  height: 30px;
  width: fit-content;
  cursor: pointer;
  padding: 0 10px 0 10px;
}

button:hover {
  background-color: #8FCC00;
}

button:active {
  background-color: #699900;
}

button.delete-button {
  background-color: crimson;
}

button.delete-button:hover {
  background-color: #b3001f;
}

button.delete-button:active {
  background-color: #800016;
}

button.small {
  border: 1px solid #23457c;
  background: #193768;
  color: white;
}

button.small:hover {
  background-color: #142b52;
}

button.small:active {
  background-color: #10213f;
}

button.transparent {
  background-color: transparent;
  color: grey;
}

button.transparent:hover {
  color: white;
}

button.transparent:active {
  color: white;
}

summary:hover {
  cursor: pointer;
}

hr {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #333;
  opacity: 0.6;
}

.selector {
  width: 250px;
  position: relative;
  cursor: pointer;
}
.selector__header {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid gray;
  color: white;
  height: 30px;
  align-content: center;
  padding: 0 5px 0 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}
.selector__selection-list {
  position: absolute;
  padding: 5px;
  transform: translateY(5px);
  display: flex;
  flex-direction: column;
  z-index: 999;
  max-height: 200px;
  border-radius: 10px;
  background-color: black;
  border: 1px solid gray;
  font-size: 14px;
  white-space: wrap;
  overflow-x: hidden;
  overflow-y: auto;
  width: calc(100vw - 35px);
  max-width: none;
}
@media (min-width: 600px) {
  .selector__selection-list {
    width: max-content;
    max-width: 500px;
  }
}
.selector__selection-list::-webkit-scrollbar {
  width: 8px;
}
.selector__selection-list::-webkit-scrollbar-track {
  background: transparent;
  margin: 5px;
}
.selector__selection-list::-webkit-scrollbar-thumb {
  background: whitesmoke;
  border: 1px solid gray;
  border-radius: 4px;
}
.selector__selection-list-item {
  padding: 5px 0 5px 5px;
  cursor: pointer;
}
.selector__selection-list-empty {
  padding: 5px 0 5px 5px;
  font-style: italic;
  opacity: 0.7;
}

.selector__selection-list-item:hover {
  background-color: #3a3a3c;
}

.page {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}
.header-row h4 {
  margin: 0;
  white-space: nowrap;
}
.header-row button {
  white-space: nowrap;
  margin-left: auto;
}

.header-row-secondary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}
.header-row-secondary p {
  white-space: nowrap;
  transform: translateY(12px);
  margin-left: auto;
}

.vertical {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.horizontal {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.spread-out {
  justify-content: space-between;
}

.link {
  cursor: pointer;
  color: skyblue;
}

.link:hover {
  text-decoration: underline;
}

.widget {
  border-radius: 15px;
  padding: 15px;
  background-color: #1c1c1e;
  width: 1000px;
  flex-shrink: 1;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .widget {
    width: 100%;
  }
}

.header {
  font-weight: bolder;
  font-size: 20px;
  margin: 10px 0 10px 0;
}

.day {
  margin: 10px 0 10px 0;
}
.day__activity, .day__activity__placeholder {
  font-style: italic;
  opacity: 0.7;
  width: 100%;
  cursor: pointer;
}
.day__activity__placeholder {
  cursor: default;
}

.day__activity:hover {
  text-decoration: underline;
}

.icon-button {
  font-size: 20px;
  font-weight: bold;
  padding: 3px 20px 3px 20px;
}

.details-text {
  font-size: 12px;
  opacity: 0.6;
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
  margin: 5px;
}

input[type=number]::after {
  content: " uur";
}

.view-selectors {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.view-selectors__selector {
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.view-selectors__selector__selected {
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  color: black;
  background-color: #b5ff00;
}

#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-message {
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 250px;
  transition: opacity 0.5s ease;
  animation: slideIn 0.3s ease-out;
}

/* Color Variants */
.toast-message.error {
  background-color: #ef4444;
  border-left: 5px solid #b91c1c;
}

.toast-message.warning {
  background-color: #f59e0b;
  border-left: 5px solid #b45309;
}

.toast-message.success {
  background-color: #10b981;
  border-left: 5px solid #047857;
}

@keyframes slideIn {
  from {
    transform: translateX(110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.field-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #1a1a1a;
  border: 1px solid gray;
  border-radius: 10px;
  padding: 0 8px;
  height: 30px;
  width: 65px;
}
.input-container .hour-input {
  background: transparent;
  border: none;
  color: white;
  width: 100%;
  outline: none;
  padding-right: 25px;
}
.input-container .hour-input::-webkit-inner-spin-button, .input-container .hour-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-container .unit {
  position: absolute;
  right: 8px;
  color: gray;
  font-size: 12px;
  pointer-events: none;
}

.clear-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.clear-btn:hover {
  opacity: 1;
}
.clear-btn img {
  width: 20px;
}

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