body {
  font-family: sans-serif;
}

.header {
  background: #f5f5f5;
}

.header__title {
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.header__title-text {
  margin-left: 8px;
  font-size: 18px;
}

.header__account {
  display: flex;
  align-items: center;
  padding: 0 8px;
  margin-right: 8px;
}

.header__logout-button {
  display: flex;
  align-items: center;
  border: none;
  background: black;
  height: 100%;
  padding: 0 16px;
  cursor: pointer;
}
.header__logout-button:hover {
  opacity: 0.8;
}
.header__logout-button-icon {
  fill: white;
}
.header__logout-button-text {
  padding-left: 8px;
  color: white;
}


.content-outer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 24px 0px;
}
.content {
  width: 100%;
  max-width: 1160px;
  margin: 0 12px;
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: fit-content;
  height: fit-content;
  background: white;
  border: 1px solid #757575;
  border-radius: 4px;
  margin: auto;
  padding: 12px;
  z-index: 100;
}
.modal__close {
  display: flex;
  justify-content: flex-end;
}
.modal__content {
  margin-top: -18px;
  min-width: 200px;
}
.modal__close-button {
  height: 24px;
  width: 24px;
  margin-top: -8px;
  margin-right: -8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.modal__close-button:hover {
  opacity: 0.8;
}


#overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease-out;
}
#overlay.on {
  visibility: visible;
  opacity: 1;
}

@keyframes overlayFadeIn {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}
@keyframes overlayFadeOut {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.uneditable,
.notfound {
  font-size: 20px;
  text-align: center;
}
