html, body, #cesiumContainer {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
}
#aircraftDetails {
position: absolute;
top: 100px;
right: 10px;
background: rgba(0, 0, 0, 0.6);
color: white;
padding: 8px 12px;
border-radius: 5px;
z-index: 1000;
max-width: 200px;
display: none;
font-family: sans-serif;
pointer-events: none; /* <== prevents blocking mouse events */
}

#controls {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: rgba(42, 42, 42, 0.8);
  color: white;
  padding: 10px;
  border-radius: 8px;
}
#mouseLocation {
  position: absolute;
  bottom: 100px;
  right: 10px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 5px;
  font-family: monospace;
  font-size: 13px;
}

#footerNote {
  position: absolute;
  display: flex;
  bottom: 50px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-family: sans-serif;
  border-radius: 5px;
  align-items: center;
  gap:8px;
  
}

#manyaLogo {
  height: 32px;
  width: auto;
  display: inline-block;
}

#miniMap {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 200px;
  height: 150px;
  z-index: 1000;
  border: 2px solid #ccc;
  border-radius: 5px;
}

#aircraftTooltip {
  position: absolute;
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  border: 1px solid #aaa;
  border-radius: 4px;
  pointer-events: none;
  display: none;
  z-index: 1000;
  white-space: normal;
  max-width: 180px;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
  line-height: 1.4;
}