html, body {
  margin: 0;
  padding: 0;
}

#preloader {
  background: #ffffff url("../src/Ripple.gif") no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 99999;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#selectContainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 0;
}

#countrySelect {
  width: 250px;
  margin: 0 auto;
}

.visually-hidden { /* For accessibility purposes */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}





/*=====================weather modal display styles============================*/
.weather-city {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  
}

.weather-temp-large {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.weather-icon {
  font-size: 3.5rem;
  color: #f8c146;
}

.weather-meta span {
  font-size: 0.85rem;
  color: #6c757d;
}

.forecast-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.forecast-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
}

.forecast-icon {
    font-size: 1.5rem;
    margin: 4px 0;
    color: #6c757d;
}

.forecast-temp {
    font-weight: 600;
    font-size: 0.9rem;
}



@media (max-width: 768px) { /* Hide Leaflet attribution on small screens */
  .leaflet-control-attribution {
    display: none;
  }
}

