 body {
    background-color: #f8f9fa;
}

.form-select {
    font-size: 1rem;
    padding: 10px;
}
.btn {
    font-size: 1rem;
    padding: 10px;
}

.map {
    height: 100vh;
}


.choose-a-country {
  position: fixed;
  top: 10px;
  z-index: 1000;
  width: 100%;
}

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



/*.choose-a-country {
    background-color: #2bc8ec;
} */

.modal-header {
    background-color: aqua;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    display: flex; /* Ensures it's using flexbox for centering */
  }

  .leaflet-control-layers {
    text-align: left !important;
  }
  
  .custom-icon {
    font-size: 1.2rem;
  }

  .weather-card {
    background-color: #edebeb;
    padding: 10px;
     p {
        margin-bottom: 5px;
     }

     h5 {
        text-decoration: underline;
     }
  }

  .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* .leaflet-control-layers-expanded {
  background-color: bisque;
  font-size: 1rem;
} */

.custom-icon-color {
  color: blue !important;
}

.custom-icon-blue {
  color: blue !important;
}

.custom-icon-orange {
  color: orange !important;
}

.custom-icon-green {
  color: green !important;
}

.custom-icon-pulrple {
  color: purple !important;
}

.custom-icon-yellow {
  color: yellow !important;
}

.custom-icon-red {
  color: red !important;
}

.custom-icon-cyan {
  color: cyan !important;
}

.custom-icon-gray {
  color: gray !important;
}

.custom-icon-brown {
  color: brown !important;
}

/* Pre loader */

#pre-load {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#pre-load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #2D8E5D ;
    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);
    }
}

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}