html, body {
    margin: 0;
    padding: 0;
  }

#map {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
  }

/* Mobile view adjustments */
@media only screen and (max-width: 768px) {
   
    #map {
        margin-left: 0;
    }
       /* Styles for easy buttons on mobile */
       .leaflet-bar a, .leaflet-bar a:hover {
        width: 86px; /* Increase width */
        height: 86px; /* Increase height */
        line-height: 86px; /* Adjust line height for vertical alignment */
        font-size: 68px; /* Increase font size */
    }
}
#selectContainer {
    position: fixed;
    top: 0;
   
    z-index: 1000;
    width: 100%;
    padding: 11px 0;
  }
  
  #countrySelect {
    width: 200px;
    margin: 0 auto;
  }

  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 9999; /* Ensure it's on top of other content */
    display: flex;
    justify-content: center;
    align-items: center;
}


#content {
  opacity: 1;
  transition: opacity 0.5s ease; /* Add transition effect for smooth fade-in */
}
/* CSS for blurring the background */
.blur-background {
  filter: blur(5px); /* Adjust the blur amount as needed */
}


.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #007bff; /* Change color as needed */
  animation: spin 1s linear infinite; /* Animation properties */
}

@keyframes spin {
  to {
      transform: rotate(360deg); /* Rotate the spinner */
  }
}




/* Default button styles */
.leaflet-bar a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
}

.weathericonsize {
  width: 50px;
  height: 50px;
}

