html, body {
  margin: 0;
  padding: 0;
}

#preloader{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:white;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader-spinner{
  width:50px;
  height:50px;
  border:5px solid #ddd;
  border-top:5px solid #0d6efd;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  0%{ transform:rotate(0deg);}
  100%{ transform:rotate(360deg);}
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#selectContainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 0;
}

#countrySelect {
  width: 200px;
  margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 600px) {
  #countrySelect {
    width: 90%;
  }
}

.leaflet-bar button {
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}

/* Mobile icon size adjustment */
@media (max-width: 600px) {
  .leaflet-bar button {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}

.leaflet-control-easyButton {
  margin-bottom: 5px;
} 

.weather-icon-small {
  width: 60px;
  margin-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
} 

.airport-icon i{
  color: red;
  font-size: 20px;
}

.stadium-icon i{
  color: green;
  font-size: 20px;
}

.capital-marker{
  width:32px;
  height:32px;
  background:#0d6efd;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 0 4px rgba(0,0,0,0.4);
}

.capital-marker i{
  color:white;
  font-size:16px;
}

.hospital-icon i{
  color: red;
  font-size: 20px;
}

.police-icon i{
  color: blue;
  font-size: 20px;
}

.marker-circle{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  box-shadow:0 0 5px rgba(0,0,0,0.5);
}

.marker-circle i{
  font-size:16px;
}

/* SPECIFIC MARKER COLORS */

.airport-marker{
  background:#0d6efd;
}

.stadium-marker{
  background:#28a745;
}

.capital-marker{
  background:#0dcaf0;
}

.hospital-marker{
  background:#dc3545;
}

.police-marker{
  background:#343a40;
}