html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-family: "Exo 2", Arial, sans-serif;
  overflow: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(255, 140, 0, 0.9);
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.logo {
  height: 40px;
}

#map {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
}

#controls {
  position: absolute;
  right: 0.5em;
  top: 4em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  z-index: 1100;
}

#controls button {
  background: #ff8800;
  color: #000;
  font-size: 1.2em;
  border: none;
  border-radius: 8px;
  padding: 1em;
  cursor: pointer;
  width: 60px;
}

#controls button:active {
  background: #ffa600;
}

#route-options {
  position: absolute;
  left: 0.5em;
  top: 4em;
  width: 10%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  z-index: 1100;
}

.route-box {
  background: rgba(34, 34, 34, 0.8);
  border: 2px solid #ff8800;
  padding: 0.5em;
  border-radius: 6px;
  text-align: center;
}
