body {
  display: flex;
  justify-content: center;
}

#root {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 840px;
  height: 100vh;
  max-height: 100vh;
  padding: 0.5rem 0.5rem 0 0.5rem;
}

#Translator {
  position: relative;
}
#Translator .loading-mask {
  background-color: rgba(255, 255, 255, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 2.875rem;
  left: 0;
  right: 0;
  z-index: 10;
}
#Translator[data-loading] .loading-mask {
  display: flex;
}
#Translator[data-loading] button[name=Send] {
  display: none;
}

#Content {
  resize: none;
}
#Content::-webkit-scrollbar {
  width: 8px;
}
#Content::-webkit-scrollbar-track {
  background-color: var(--bs-light);
  border-radius: 0 0.375rem 0.375rem 0;
}
#Content::-webkit-scrollbar-thumb {
  background-color: var(--bs-primary);
  border-radius: 0.375rem;
}

main {
  overflow-y: auto;
}
main::-webkit-scrollbar {
  width: 8px;
}
main::-webkit-scrollbar-track {
  background-color: var(--bs-light);
  border-radius: 0 0.375rem 0.375rem 0;
}
main::-webkit-scrollbar-thumb {
  background-color: var(--bs-primary);
  border-radius: 0.375rem;
}
main .card-header:focus {
  outline: none;
}
main .card-body {
  white-space: pre-line;
}

h2 {
  position: relative;
}
h2::after {
  color: var(--bs-gray-600);
  content: attr(data-model);
  font-size: 0.75rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */