body {
  margin: 0;
  font-family: sans-serif;
}

label {
  border: 1px solid white;
  padding: 1px 5px;
  text-align: center;
  text-decoration: none;
  font-size: 1.1rem;
  background-color: #2b5986;
  color: white;
  cursor: pointer;
}


.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  padding: 2px;
  top: 0;
  width: 100%;
  background: #2b5986;
}

.header_right {
  display: flex;
}

.version {
  color: white;
}

.main {
  margin: 40px 5px 5px 5px;
}

.main_header {
  display: flex;
  justify-content: space-between;
  padding: 8px 8px;
  border: solid 1px lightgrey;
}

.main_body {
  display: flex;
  border-style: none solid none solid;
  border-width: 1px;
  border-color: lightgrey;
}

.main_footer {
  display: flex;
  border-style: none solid solid solid;
  border-width: 1px;
  border-color: lightgrey;
}

.main_footer_left {
  flex: 1;
  display: flex;
  border-style: none none none none;
  border-width: 1px;
  border-color: lightgrey;
  justify-content: space-between;
  resize: both;
}

.main_footer_left_menu {
  padding: 5px;
  color: grey;
}

.main_footer_left_counter {
  padding: 5px;
  color: grey;
}

.main_footer_right {
  display: flex;
  flex: 1;
  border-style: none none none solid;
  border-width: 1px;
  border-color: lightgrey;
  resize: both;
}

.main_source {
  flex: 1;
  display: flex;
  border-style: none none none none;
  border-width: 1px;
  border-color: lightgrey;
  resize: both;
}

.main_target {
  display: flex;
  flex: 1;
  border-style: none none none solid;
  border-width: 1px;
  border-color: lightgrey;
  resize: both;
}

.options-panel {
  flex: 0;
  padding: 2px;
}

.general_button {
  border: 1px solid white;
  padding: 1px 5px;
  color: dimgrey;
  background-color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  cursor: pointer;
}

.general_button:hover {
  background-color: #f2f2f2;
  border: 1px solid darkgrey;
}

.source_text_input {
  padding: 5px 10px 5px;
  width: 100%;
  min-height: 200px;
  outline: 0px solid transparent;
  font-size: 1.2rem;
}

.source_text_input:empty:not(:focus):before {
  content: attr(data-text);
  color: lightgrey;
}

.target_text_input {
  padding: 5px 10px 5px;
  width: 100%;
  min-height: 200px;
  outline: 0px solid transparent;
  font-size: 1.2rem;
}

.menu_button {
  border: none;
  color: white;
  background-color: #2b5986;
  padding: 3px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
}

.wrong {
  color: red;
}

.transcript_select {
  background-color: white;
  border: 1px solid white;
  color: dimgrey;
  cursor: pointer;
  font-size: 1.2rem;
  min-width: 150px;
}

.transcript_select:hover {
  background-color: #f2f2f2;
  border: 1px solid darkgrey;
}

.sanskrit {
  color: blue;
}

.number {
  color: green;
}


.footer {
  position: fixed;
  bottom: 0;
  color: grey;
  width: 100%;
  text-align: center;
  padding: 5px;
}

.copyright {
  font-size: 0.5em;
}
