html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
#map {
  width: 100%;
  height: 100vh;
}
#selectContainer {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: 1000;
}
.neon-list li {
  padding: 4px 0;
  border-bottom: 1px solid #333;
}
.neon-list li:last-child {
  border-bottom: none;
}
#forecast-list .card {
  background: #131313;
  border: 1px solid #0ff;
  color: #eee;
  margin: 0.25rem;
  width: 5rem;
  text-align: center;
}
#forecast-list .card p {
  margin: 0.25rem 0;
}
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}
#preloader::before {
  content: "";
  width: 60px; height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#weather-preload {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  opacity: 0.8;
  z-index: 1050;
}
#weather-preload:before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  margin: -30px;
  border: 6px solid #f2f2f2;
  border-top: 6px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
