body {
  font-family: "Space Mono", sans-serif;
  margin: 0;
  justify-content: center;
  align-items: center;
  color: #ffe8bc;
  background-color: #121212;
}

.container {
  text-align: left;
  padding: 40px;
  height: 100%;
}

#result-container {
  text-align: left;
}

.input-text {
  width: 100%;
  height: 25vh;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  background: linear-gradient(to bottom, #ffe8bc 70%, rgba(255, 232, 188, 0.7) 98%);
  color: #121212;
  box-sizing: border-box;
  resize: none;
  outline: none;
  font-family: "Space Mono", sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.input-text::-webkit-scrollbar {
  display: none;
}


.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: line-through #fff wavy;
  opacity: 0.7;
}

.tooltip-text {
  visibility: hidden;
  width: auto;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%; /* Arrow at the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip-container:hover {
  text-decoration: none;
  opacity: 1;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.button {
  appearance: button;
  background-color: #67635e;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #121212;
  cursor: pointer;
  display: inline-block;
  font-family: din-round, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter 0.2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.button:after {
  background-clip: padding-box;
  background-color: #ffe8bc;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button,
.button:focus {
  user-select: auto;
}

.button:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.button:disabled {
  cursor: auto;
}

.button:active {
  border-width: 4px 0 0;
  background: none;
}

.bar {
  background: #ffe8bc;
  z-index: 1;
}
