body {
  font-family: Calibri, sans-serif;
  background: #404040;
  margin: 0;
  height: auto;
}

h1,
h2 {
  color: #ffffff;
  margin: 2px;
  padding: 5px;
}

.top-bar {
  font-size: 15px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}

.model-viewer {
  flex: 2;
  background: #202020;
  border: 1px solid black;
  padding: 5px;
  margin: 5px;
  min-width: 300px;
}

.asset-info {
  flex: 1;
  background: #202020;
  border: 1px solid black;
  padding: 5px;
  margin: 5px;
}

.top-bar {
  display: flex;
}

.item3 {
  margin-left: auto;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

.qrscanner {
  display: none;
  max-width: 400px;
  background: grey;
}

#livedatastrings {
  display: none;
}

.model-viewer p {
  color: black;
  background: #909090;
}

.asset-info p {
  color: white;
}

model-viewer {
  width: 100%;
  height: 600px;
  background-color: rgb(43, 43, 43);
}

ul.navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: #333;
  padding: 10px;
}

ul.navigation li {
  flex: 1;
  text-align: center;
}

ul.navigation li a {
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
  font-size: 18px;
  font-weight: bold;
}

ul.navigation li a.active,
ul.navigation li a:focus {
  background-color: #00b2a2;
}

ul.navigation li a:hover {
  background-color: #111;
}

/* Model Viewer Styles */

:not(:defined) > * {
  display: none;
}

.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5),
    0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: rgba(255, 255, 255, 0.9);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}

.annotation {
  background-color: #00b2a2;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  transform: translate(10px, 10px);
  border-radius: 6px;
  padding: 6px 16px;
}

#ar-button {
  background-image: url(imgs/ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 16px;
  padding: 0px 16px 0px 40px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #4285f4;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  border: 1px solid #dadce0;
}

#ar-button:active {
  background-color: #e8eaed;
}

#ar-button:focus {
  outline: none;
}

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }

  to {
    transform: translateX(-100px);
  }
}

model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

/* Button Syles */
#livedatabutton {
  appearance: none;
  background-color: #00b2a2;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
}

#siteoverviewbutton {
  appearance: none;
  background-color: #00b2a2;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: absolute;
  transform: translate(10px, 10px);
  top: 5px;
}

.qr-code-button {
  background-color: inherit;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 0px 0;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100%;
}

.qr-code-button .material-symbols-outlined {
  font-size: 44px;
}

.qr-code-button:hover {
  background-color: #111;
}

#sensor-section table {
  width: 60%; 
  margin: 0 auto;
  margin-top: 30px;
  border-collapse: collapse; 
  color: white; 
}

#sensor-section th, #sensor-section td {
  border: 1px solid #ddd; 
  text-align: left; 
  padding: 8px; 
}

#sensor-section th {
  background-color: #f2f2f2;
  color: black; 
}

