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: 25px;
  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;
}