/* Global Reset */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* DOH! NetworkHeader - Fixed to top */
.doh-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 2px solid #006ede;
  z-index: 100000;
  box-sizing: border-box;
}

.doh-header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.doh-header a:hover {
  color: #006ede;
}

/* Layout Helpers */
.spacer {
  flex-grow: 1;
}

.powered-by {
  font-size: 11px !important;
  opacity: 0.6;
  font-weight: normal !important;
}

/* The Map & Shadow DOM Variable Fix */
#map-container,
#app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Internal BlueMap variable to help offset UI buttons */
  --ui-top-margin: 60px;
}

/* Fallback padding for the container */
#map-container {
  padding-top: 50px;
  box-sizing: border-box;
}

/* Force 3D Canvas to fill area */
canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* bluemap nav position fix */
.control-bar {
  top: 50px;
}
