h1 {
    background-color: #333232;
    color: white;
}
  
.current-weather-conditions {
    list-style-type: none;
    padding: 0;
}

.col-md-3 {
    background-color: rgb(52, 116, 236);
}
  
.uv-low {
    background-color: green;
}
  
.uv-mod {
    background-color: yellow;
}
  
.uv-high {
    background-color: rgb(255, 115, 0);
}
  
.uv-very-high {
    background-color: #8610b4;
}
  
.uv-ext {
    background-color: rgb(243, 41, 6);
}
  
.uv-low,
.uv-very-high,
.uv-ext {
    color: white;
}

.forecast-card {
    width: 150px;
    background-color: #63bbee;
    color: white;
    margin-bottom: 1rem;
}
  
#citySearchBtn {
    background-color: #63bbee;
    transition: 250ms ease-in-out;
}
  
#citySearchBtn:hover {
    background-color: hsl(187, 97%, 71%);
}
  
#forecastHeader {
    margin: 0.5rem 0;
}

#searchResults {
    display: none;
}
  
#searchHistoryList li {
    cursor: pointer;
    color: black;
    background-color: rgb(124, 115, 115);
    transition: 300ms ease-in-out;
}
  
#searchHistoryList li:hover {
    background-color: #63bbee;
}