#stateselction{
    text-align: center;
    font-size: 26px;
}

/* Style for the container div of city AQI widgets */
#multiple-city-aqi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Style for city AQI widget */
.city-aqi-widget {
    width: 250px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #f9f9f9;
    text-align: center;
}

/* Style for city AQI widget title */
.city-aqi-widget h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

/* Style for city AQI widget details */
.city-aqi-widget p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}

h1{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Style for the container div of city AQI widgets */
select{
  width: 400px;
  max-width: 100%;
  overflow-y: auto;
  cursor: pointer;
  padding: 15px 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  border-radius: 12px;
  color: #444;
  font-size: 18px;
  box-shadow: -3px 3px 5px 0px rgba(0,0,0,0.10);
}

/* Style for city AQI widget */
select option{
  padding: 10px 20px;
  margin-bottom: 8px;
  border-radius: 12px;
  background-color: rgb(238, 238, 238);
  white-space: pre-wrap;
  cursor: pointer;
}

select option:hover{
  background-color: rgb(223, 223, 223);
}

select option:checked{
  box-shadow: 0 0 10px 100px #595959 inset;
}

select::-webkit-scrollbar-track {
	background-color: #F5F5F5;
	border-radius: 12px;
}

select::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}

/* Handle */
select::-webkit-scrollbar-thumb {
	background-color: rgb(225, 225, 225);
	border-radius: 12px;
	background-image: -webkit-linear-gradient(90deg,
      rgba(160, 160, 160, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(160, 160, 160, 0.2) 50%,
      rgba(160, 160, 160, 0.2) 75%,
      transparent 75%,
      transparent)
}

/* Handle on hover */
select.fadeIn {
  animation: fadeInDown 0.2s;
}

select.fadeOut{
  animation: fadeInUp 0.2s;
}
