body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
#map {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  left: 0%;
}
.select-container {
  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;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.3s ease;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Weather Modal Styling */
.weather-box {
  background: #f0f8ff; /* Light blue background */
  border-radius: 15px;
  padding: 1rem;
  color: #333;
}

.modal-header {
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header .fa-cloud-sun {
  color: #ffb74d;
}

.weather-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.weather-current i {
  font-size: 60px;
  margin-bottom: 10px;
  color: #4fc3f7; /* Weather icon color */
}

.forecast-container {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

.forecast-day {
  background: #e1f5fe;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  width: 80px;
}

.forecast-day i {
  font-size: 30px;
  margin-bottom: 5px;
  color: #29b6f6;
}

.forecast-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0288d1;
}
