* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 30px;
}

.leaflet-control {
    font-size: 1.3em;
}

.easy-button .fa {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

#selectContainer {
    display: flex;
    justify-content: center;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    width: 300px;
    padding: 10px 0;
}
  
#countrySelect {
    z-index: 1000;
    width: 200px;
    margin: 0 10px;
}

#random-country-btn {
    z-index: 1000;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#random-country-btn:hover {
    background-color: #555;
}

#map {
    width: 100%;
    height: 100vh;
    position: fixed;
    padding: 0;
    z-index: 0;
}

.bg-gradient-blue {
  background: linear-gradient(to top, #1e3c72, #2a5298);
  color: white; 
}

.bg-gradient-grey {
  background: linear-gradient(to bottom, #bdc3c72c, #33383d28);
}

#flag-container {
    margin-top: 10px;
    margin: 10px;
}

#flag-container img {
    box-shadow: rgba(0, 0, 0, 0.397) 0px 3px 7px;
}

#country-info-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table {
  width: 300px;
}

#country-weather-modal img {
    width: 90px;
    height: auto;
}                         

.current-weather {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  width: 330px;
}

.forecast-day {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  width: 155px;
}

#country-news-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#country-article-modal .modal-body {
    padding: 20px 50px;
} 

.news-article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.news-article a {
    text-decoration: none;
    color: black;
}

.news-article img {
    width: 100%;
    height: auto;
}

/* loader */

.dots-container {
    position: fixed;
    background-color: #b3d4fc99;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  
  .dot {
    height: 20px;
    width: 20px;
    margin-right: 15px;
    border-radius: 10px;
    background-color: #b3d4fc;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .dot:last-child {
    margin-right: 0;
  }
  
  .dot:nth-child(1) {
    animation-delay: -0.3s;
  }
  
  .dot:nth-child(2) {
    animation-delay: -0.1s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.1s;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.8);
      background-color: #b3d4fc;
      box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
  
    50% {
      transform: scale(1.2);
      background-color: #6793fb;
      box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }
  
    100% {
      transform: scale(0.8);
      background-color: #b3d4fc;
      box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
  }