.root-view {
  margin-top: 50px !important;
}

#toolbar {
  background: #202124;
  border-bottom: 1px solid #4a4c50;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 50;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  right: 0;
}

.toolbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-item.logo img {
  height: 26px;
  margin: 0 2rem;
}

#body-overlay {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  z-index: 70;
  top: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

#open-menu {
  z-index: 60;
  position: relative;
  background-color: #292a2d;
  height: unset;
}

.real-menu {
  position: fixed;
  top: 0;
  left: -500px;
  z-index: 100;
  width: 500px;
  height: 100%;
  padding: 1rem 1.5rem;
  box-shadow: 0 6px 12px rgba(107, 82, 82, 0.3);
  background-color: #292a2d;
  box-sizing: border-box;
  transition: ease 0.2s all;
}

.real-menu .heading {
  padding: 0px 0px 6px;
  border-bottom: var(--legacy-divider-border);
  font-size: 18px;
  font-weight: normal;
  margin: 1rem 0;

  box-shadow: 0px 0px 20px 20px #292a2d;
  position: sticky;
  top: 0;
  background: #292a2d;
}

.menu-open #body-overlay {
  display: block;
}

.menu-open .real-menu {
  left: 0;
  box-shadow: 0 6px 12px 3px rgb(0 0 0 / 61%);
  background-color: #292a2d;
  overflow-y: auto;
}

.settings-block {
  display: block;
  padding-bottom: 9px;
  /* width: 500px; */
  break-inside: avoid;
  margin-left: 20px;
}

.settings-section-title {
  font-size: 120%;
  text-align: left;
  margin-left: -20px;
  color: var(--color-text-secondary);
}

.settings-checkbox label {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.settings-checkbox input {
  min-height: 12px;
  min-width: 12px;
}
.settings-checkbox input[type="checkbox"] {
  width: 12px;
  height: 12px;
  accent-color: var(--color-checkbox-accent-color);
}

.settings-input {
  display: grid;
  align-items: center;
  padding-right: 8px;
  padding-bottom: 8px;
  margin: 12px 0px;
}

.settings-input label {
  padding-right: 8px;
  padding-bottom: 8px;
}

.settings-input input,
textarea {
  width: 90%;
  margin-left: 10px;
}

.real-menu .settings-select {
  align-items: center;
  display: grid;
  margin: 12px 0px;
}

.settings-select label {
  padding-right: 8px;
  padding-bottom: 8px;
}

.settings-select select {
  margin-left: 10px;
  width: 90%;
}

#fixed-launch {
  position: sticky;
  bottom: 0;
}
#launch {
  box-shadow: 0px 0px 20px 20px #292a2d;
}

.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
}
.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";

  /* This is how textarea text behaves */
  white-space: pre-wrap;

  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}
.grow-wrap > textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;

  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
}
.grow-wrap > textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  padding: 3px 6px;
  border: 1px solid var(--sys-color-neutral-outline);
  border-radius: 4px;
  background-color: var(--sys-color-cdt-base-container);
  font: inherit;

  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}

.harmony-textarea {
}
