html {
  height: 100%;
}

body {
  font-family: "Fira Sans", "Times New Roman", "Trebuchet MS", Verdana, sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
}

.content-title {
    display: block;
    font-size: larger;
}

.content-content {
    display: block;
    /* padding: 25px; */
    height: fit-content;
    max-height: 85%;
    overflow-y: auto;
}
.navbar-container,
.content-title,
.content-content
 {
    padding: 0;
}

.navbar-container,
.navbar-status-container {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: rgb(90, 150, 125);
    color: white;
    max-height: 48px;
    gap: 4px;
}
.navbar-status-container{
    padding: 13px;
}

.navbar-title {
    padding: 13px;
    font-size: large;
    font-weight: bold;
    font-style: italic;
}
.utc_date_time{
    font-family: 'Fira Code', 'Consolas', 'Courier New', Courier, monospace;
    padding: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
}

.navbar-links a,
.dropdown.container,
.dropdown.main,
.dropdown.item {
    display: inline-flex;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    z-index: 500;
    flex-wrap: nowrap;
}
.navbar-links a.active,
.dropdown.main.active,
.dropdown.item.active {
    background-color: #3a3939;
}
.navbar-links a:hover,
.dropdown.main:hover,
.dropdown.item:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
}
.navbar-links a.hidden {
    color: black;
    border-radius: 5px;
    border: 2 px solid black;
}
.navbar-links a.hidden:hover {
    color: purple;
    background-color: rgb(106, 106, 253);
    border-radius: 5px;
    border: 2 px solid rgb(166, 61, 175);
}
.navbar-links a.hidden.active {
    color: rgb(77, 0, 77);
    border-radius: 5px;
    border: 2 px solid rgb(166, 61, 175);
}
.navbar-links a.alert{
    animation: navbar_alert 1s infinite alternate;
}

@keyframes navbar_alert {
    from {
         color: #f2f2f2;
    }
    to {
        color: #ff54e3;
    }
}

.login_status {
    display: inline-flex;
    font-size: smaller;
}
.login_status:hover{
    color: rgb(157, 238, 238);

}

#register-form,
#login-form-container {
    padding-left: 25%;
    padding-right: 25%;
}

.navbar-notifications {
    overflow-x: hidden;
    overflow-y: hidden;
    vertical-align: top;
    max-height: 100%;
    flex-grow: 2;
}
.body-container {
    margin-top: 24px;
    margin-bottom: 24px;
}
.body-container.full-height {
    height: 100%;
}
.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.front {
    z-index: 1000;
}
.popup {
    padding: 15%;
    background-color: white;
    border: 1px solid grey;
}
.dropdown.container {
    padding: 0;
}
.dropdown.content {
    display: flex;
    flex-direction: column !important;
    transform: translateY(45px);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    min-width: 160px;
    z-index: -100;
    visibility: hidden;
    border-bottom-style: solid;
    border-bottom-width: 0px;
    top: 2px;
    /* top: 3px;  for retina?*/
}
.dropdown.container:hover .dropdown.content,
.dropdown.main:hover .dropdown.content {
    display: block;
}
.dropdown.container:hover > .dropdown.content {
    visibility: visible;
    z-index: 1;
}
.dropdown.content > a {
    display: block;
    text-align: left;
}

.table-container {
    border: solid 1px black;
    padding: 8px;
    background-color: #ebeced;
    max-width: 85%;
    margin-bottom: 15px;
}

.draggable {
    position: absolute;
}
.draggable.drag {
    box-shadow: rgba(34, 34, 37, 0.7) 0px 7px 29px 0px;
}

.notification {
    display: block;
    font-size: smaller;
}
form#drt-chat {
    display: inline-block;
    width: 85%;
}

h2 {
  font-size: 18px;
}
h3 {
  font-size: 15px;
}

.mainContent {
  background-color: beige;
  padding: 0px;
  z-index: -1;
}

.toolbar {
  color: black;
  padding: 3px;
  font-size: 13px;
  margin: 0px;
  display: table-cell;
  width: 250px;
  height: 90vh;
}

.map {
  height: 125%;
  margin: 0px;

  display: table-cell;
  width: 100%;
  vertical-align: top;
}

.viewer {
  height: 125%;
  margin: 0px;
  padding-left: 10px;
  margin: 0px;

  display: table-cell;
  width: 80%;
  vertical-align: top;
}

.tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  display: none;
  pointer-events: none;
  font: 11px/1.5 "Consolas", monospace;
}

.browseNotes {
  font-size: 13px;
}

.browseListing {
  font-size: 13px;
  font-family: 'Consolas', Courier, monospace;
}

a.qat.plotall{
  font-variant-caps: small-caps;
  color: #00F;
}
span.key_download{
  color: blue;
  font-variant-caps: small-caps;
}

.leaflet-image-layer {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.leaflet-container .leaflet-control-mouseposition {
  background-color:rgba(255,255,255,.7);
  box-shadow:0 0 5px #bbb;
  padding:0 5px;
  margin:0;
  color:#333;
  font: 11px/1.5 "Consolas", monospace;
}


:root {
  --color-bg: #000000;
  --color-fg: #ffffff;
}
@media (prefers-color-scheme: light) {
  :root {
    --color-bg: #ffffff;
    --color-fg: #000000;
  }
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  /* background-color: antiquewhite; */
  background-color: var(--color-bg);
  color: var(--color-fg);
}

h2 {
  font-size: 18px;
  line-height: 1;
  justify-self: center;
  
}
h3 {
  font-size: 14px;
}
p {
  font-size: 11px;
}
button {
  font-size: 11px;
  font-weight: bold;
  margin-right: 5px;
  margin-bottom: 5px;
  font-family: Arial, Helvetica, sans-serif;
}
input[type="text"] {
  font-family: Verdana, sans-serif;
  font-size: 11px;
  vertical-align: middle;
}
input[type="number"] {
  font-family: Verdana, sans-serif;
  font-size: 11px;
  vertical-align: middle;
}
input[type="radio"] {
  margin-top: -1px;
  font-size: 11px;
  vertical-align: middle;
}
select {
  font-family: Verdana, sans-serif;
  font-size: 11px;
  vertical-align: middle;
}

label {
  font-size: 11px;
}
label.navigation {
  width: 20px;
  text-align: left;
}
label.query {
  width: 125px;
  display: inline-block;
  text-align: left;
}
label.visualization {
  width: 125px;
  display: inline-block;
  text-align: left;
}
label.tsplot {
  width: 45px;
  display: inline-block;
  text-align: left;
}

img {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    /* image-rendering: -webkit-optimize-contrast; */
}
ul.noBullets {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }

#header {
  margin: 0;
  border: 0;
  padding: 3px 2px 1px 8px;  /* top right bottom left */
  height: 25px;
  background-color:rgb(32, 133, 211);
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 2px 3px 3px rgba(0,0,0,0.2);
  font-family:'Times New Roman', Times, serif;
  font-weight: bold;
}
#eleafLogo {
  margin: 0;
  border: 0;
  border: 0;
  float: right;
  position: relative;
  image-rendering: unset;
}

.mainContent {
  width: 100%;
  background: none;
  margin: 0;
}
.footerContainer {
  width: 100%;
  height: 40px;
  background: none;
  margin: 10px auto;
}

.map {
  width: 100%;
  /* height: 850px; */
  padding: 0;
  border: 0;
  margin: 0;
  float: left;
}
.dataControl {
  margin-left: 5px;
  padding-left: 5px;
  width: 400px;
  float: left;
}
.responseHeaders {
  width: 400px;
  min-height: 200px;
  height: 100%;
  float: left;
}

.plot {
  margin-top: 0px;
  border: 0;
  width: 400px;
  height: 850px;
  float: left;
}

.messages {
  border: 0;
  width: 580px;
  margin-top: 640px;
  padding: 10px;
}

.messageText {
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  background-color: #f9f9f9;
  color:black;
  font-size: 12px;
  font-style: normal;
}
.loading-div {
  text-align: center;
}
.loading {
  font-size: 13px;
  font-weight: bold;
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  animation: color-change 2s infinite;
}
@keyframes color-change {
  0% { color: black; }
  50% { color: green; }
  100% { color: black; }
}
.leaflet-control-mouseposition {
    background-color:aquamarine;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
}
.slider {
  width: 140px;
  height: 7px;
  opacity: 0.7;
}

/* Query selector tabs */
.tab {
  overflow: hidden;
  border-bottom: solid 0px black;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 8px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}
