html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  background-image: url(https://walzr.com/gridnew.png);
  background-size: 80px 80px;
  background-color: #7f9c68;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: monospace;
    font-size: 12px;
    font-weight: bold;
    color: #7f9c68;
    z-index: 1001;
    padding: 8px 8px 8px 8px;
  }

  .nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0px 20px 0px 20px;
  }

  .dropdown {
    position: relative;
  }

.dropdown-content {
  display: none;
  cursor: pointer;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  background: #000;
  opacity: 0.65;
  border: 1px solid #7f9c68;
  line-height: 14px;
  padding: 5px;
  z-index: 2000;
  min-width: 160px;
}

.dropdown.open .dropdown-content {
  display: block;
}

.station {
  padding: 5px 10px;
  cursor: pointer;
  color: #7f9c68;
  background-color: transparent;
  transition: background 0.2s;
}

.station:hover,
.station.current {
  background-color: #7f9c68;
  color: #000;
}


.popup-box {
  display: none;
  position: fixed;
  top: 50px;
  left: 10%;
  background: #000;
  border: 2px solid #7f9c68; 
  opacity: 0.65;
  color: #7f9c68;
  padding: 5px 5px 0px 5px;
  z-index: 3;
  font-family: monospace;
  line-height: 16px;
  font-size: 12px;
  width: 300px; 
  min-width: 150px; 
  white-space: normal;
  word-wrap: break-word;
  cursor: default;
}


  .popup-box button {
    background: #000;
    color: #7f9c68;
    border: 1px;
    font-weight: bold;
    cursor: pointer;
    float: right;
  }

.popup-box {
  cursor: default;
}

.popup-header {
  cursor: move;       
  display: flex;
  justify-content: flex-end; 
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #7f9c68;
}



.marquee-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
}


.marquee-wrapper {
  width: 65%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 1em; 
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 400px) {
  .marquee-wrapper {
    display: none;
  }
}


  @keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
