
html, body {
  height: 100%;
  margin: 0;
}
#map {
  width: 100%;
  height: 100vh; 
}


#selectContainer {
  position: fixed;
  top: 10px;        
  left: 50%;
  transform: translateX(-50%); 
  z-index: 2000;     
  display: block;
  background: none;  
  padding: 0;
  border: 0;
}

#countrySelect {
  width: 220px;      
}


#weatherModal .card.bg-light { border-radius: .75rem; }
#weatherModal .card.text-center { border-radius: .75rem; }
#weatherModal img.weather-icon { width: 56px; height: 56px; }
#weatherModal .forecast-icon { width: 40px; height: 40px; }
#weatherModal .card-body { padding: .9rem; }
#weatherModal .forecast .card { box-shadow: 0 2px 8px rgba(0,0,0,.05); }


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





