#ct_app {
  margin: 5rem 0;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}
#ct_app #ct_app_lang_options,
#ct_app #ct_app_action_btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #003399;
  padding: 1rem;
}
#ct_app #ct_app_lang_options {
  color: white;
}
#ct_app #ct_app_lang_options #source_lang,
#ct_app #ct_app_lang_options #target_lang {
  display: flex;
  flex-direction: column;
}
#ct_app #ct_app_lang_options #source_lang span,
#ct_app #ct_app_lang_options #target_lang span {
  font-size: 0.7rem;
}
#ct_app #ct_app_lang_options #source_lang select,
#ct_app #ct_app_lang_options #target_lang select {
  background-color: #9FAEE5;
  border-radius: 6px;
  padding: 0.25rem;
  color: white;
  font-weight: 600;
  border: none;
  box-shadow: none;
  /* Removes native styling in most browsers */
  /* Safari */
  /* Firefox */
}
#ct_app #ct_app_lang_options #switch-languages {
  width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
#ct_app #ct_app_lang_options #switch-languages * {
  height: 100%;
  width: 100%;
  fill: white;
}
#ct_app #ct_app_action_btns {
  color: white;
  flex-direction: row;
  justify-content: space-between;
}
#ct_app #ct_app_action_btns #ct_app_mode {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#ct_app #ct_app_action_btns #ct_app_mode select {
  background-color: #9FAEE5;
  border-radius: 6px;
  padding: 0.25rem;
  color: white;
  font-weight: 600;
  border: none;
  box-shadow: none;
}
#ct_app #ct_app_action_btns #ct_app_mode .mode-description {
  color: lightgray;
  margin-left: 0.5rem;
  font-weight: 450;
  font-size: 0.8rem;
  font-family: "Noto Sans";
}
#ct_app #ct_app_action_btns #ct_app_actions {
  display: flex;
  flex-direction: row;
}
#ct_app #ct_app_action_btns #ct_app_actions .btn {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #9FAEE5;
  transition: all linear 100;
  border-radius: 6px;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #9FAEE5;
}
#ct_app #ct_app_action_btns #ct_app_actions .btn:hover {
  background-color: #0E6EB6;
}
#ct_app #ct_app_action_btns #ct_app_actions .btn * {
  fill: white;
  height: 1rem;
  width: 1rem;
}
#ct_app #ct_app_action_btns #ct_app_actions #check_text {
  background-color: #FFCC00;
  border-color: white;
}
#ct_app #ct_app_action_btns #ct_app_actions #check_text:hover {
  background-color: #0E6EB6;
}
#ct_app #ct_app_textarea {
  position: relative;
  padding: 1rem;
  background-color: white;
  border: 1px solid black;
  min-height: 33vh;
  resize: vertical;
  overflow: auto;
  line-height: 2.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
#ct_app #ct_app_textarea[contenteditable=false] * {
  cursor: default;
}
#ct_app #ct_app_textarea .token-group {
  background-color: #FFCC00;
  position: relative;
  z-index: 1;
}
#ct_app #ct_app_textarea .token-group.disabled {
  background-color: #d8d8d8;
  cursor: inherit;
}
#ct_app #ct_app_textarea .token-group.disabled strong {
  font-weight: inherit;
  border: 1px solid black;
  margin-left: -1px;
  margin-right: -1px;
}
#ct_app #ct_app_textarea .token-group .source-groups {
  position: absolute;
  right: 0;
  bottom: -14px;
  background-color: inherit;
  line-height: 1;
  font-size: 0.7rem;
  display: flex;
}
#ct_app #ct_app_textarea .token-group .source-groups .source-group {
  display: inline-block;
  font-size: inherit;
  border: 1px solid black;
  border-right: none;
  background-color: white;
  text-align: center;
  line-height: 0.8rem;
  aspect-ratio: 1;
  height: 0.9rem;
}
#ct_app #ct_app_textarea .token-group .source-groups .source-group:last-child {
  border-right: 1px solid black;
}
#ct_app #ct_app_textarea span {
  cursor: pointer;
}
#ct_app #ct_app_textarea:active {
  outline: none;
}
#ct_app #ct_app_textarea:focus {
  outline: none;
}
#ct_app #ct_app_textarea .notice-container {
  position: absolute;
  inset: 0;
  display: flex;
}
#ct_app #ct_app_textarea .notice-container .notice-wrapper {
  border: 1px solid gray;
  margin: auto;
  background-color: #eaeaea;
}
#ct_app #ct_app_textarea .notice-container .notice-wrapper .notice {
  padding: 1rem;
  padding-bottom: 0;
  color: gray;
  z-index: 2;
  color: black;
}
#ct_app #ct_app_textarea .notice-container .notice-wrapper .notice-timer {
  width: 100%;
  height: 2px;
  background-color: black;
  margin-top: 1rem;
}/*# sourceMappingURL=app.css.map */