body,
#app,
div,
p,
span,
.badge {
  line-height: 1.3;
}

.bkg {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url("./images/background2small.jpeg");
}
.bkg:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

#app {
  color: white;
  font-size: large;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

label {
  font-size: medium;
}

.chat-container {
  max-width: 600px;
  width: 100%;
  margin: 25px auto;
  padding: 10px;
  padding-bottom: 70px;
  border-radius: 10px;
}

.chat-output {
  height: auto;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.chat-message {
  margin-bottom: 10px;
  text-wrap: pretty;
}

.prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px;
  background: #024a34;
}

.badge {
  white-space: pre-wrap;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-all;
  text-align: left;
}
.badge.source {
  background: rgba(0, 0, 0, 0) !important;
  font-size: small;
  padding-left: 25px;
  font-style: italic;
  font-weight: normal;
  margin-top: -10px;
}

.hidden {
  display: none;
}

.bg-primary,
.btn-primary {
  color: #fff !important;
  background-color: #023223 !important;
  border-color: black !important;
}

.bg-secondary {
  color: #fff !important;
  background-color: #059568 !important;
  border-color: black !important;
}

.examples {
  height: 200px;
  overflow: auto;
}
.examples a {
  display: block;
  font-size: small;
  padding: 5px;
  color: yellowgreen;
  cursor: pointer;
}

#intro {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 15px;
  font-size: medium;
}
#intro p {
  margin-bottom: 25px;
}

.text-right {
  text-align: right;
}

#settings {
  border-radius: 15px;
  padding: 35px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #024a34 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

body {
  margin-top: 100px;
}

/* Hide the 'Powered by Google' branding text */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

/* Fix the top bar shift */
body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

#google_translate_element {
  float: right !important;
  position: fixed;
  right: 5px;
  top: 75px;
  z-index: 99;
  padding: 5px 10px;
  background: white;
}
#google_translate_element * {
  border: none;
}

iframe {
  top: 75px !important;
}

.logo-background {
  width: 400px;
  margin: auto;
  margin-top: -70px;
  padding: 50px 100px;
  border-radius: 15px;
  /* Fades from blue in the center to transparent at the edges */
  background: radial-gradient(circle, white 1%, rgba(0, 0, 255, 0) 70%);
}
.logo-background img {
  height: 150px;
  width: auto;
}

.stacked *,
.stacked p {
  margin: 0 !important;
  padding: 5px;
  line-height: 1.2;
  vertical-align: middle;
}
.stacked span {
  font-weight: normal;
  font-size: 7px;
  font-family: monospace;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  vertical-align: middle;
}
.stacked i {
  font-size: 24px;
  display: inline-block;
}

.explaination {
  margin-top: -50px;
  font-size: small;
  font-style: italic;
  line-height: 1;
}

.text-rotator {
  display: block;
  min-height: 80px;
  position: relative;
}
.text-rotator p {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-link {
  cursor: none;
  position: relative;
  margin-right: 15px;
}
.nav-link,
.nav-link * {
  vertical-align: middle;
}
.nav-link i {
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  display: inline-block;
}
@media (min-width: 768px) {
  .nav-link {
    height: 55px;
  }
  .nav-link span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    vertical-align: middle;
    font-size: 8px;
    font-family: monospace;
  }
}

.text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: small;
  background: transparent !important;
}