body
{
    background-color: rgb(243, 232, 232);
}
h3
{
    color : cadetblue;
}
ul 
{
    list-style-type: none;
    padding: 0;
    background-color: white;
}
li 
{
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 1px;
    background-color: cadetblue;
    color: white;
    font-size: 1em;
    line-height: 1.5;
    cursor: pointer;
}
/*
* reducing opacity for all clickable entity when user hover mouse on it to have better user experience.
*/
li:hover
{
    opacity : 0.75;
}
.jumbotron,.forecast-card
{
    color: white;
    background-color: cadetblue;
    border-color: cadetblue;
}
#current-day-pane
{
    color : cadetblue;
    background-color: white;
    border-style: groove;
    padding-left: 20px;
}

.forcast-card
{
    padding: 10px;
    
}
.uvi
{
    padding:5px;
    border-style: ridge;
}
/*
* favorable, moderate and severe are used to display
* correct color code for uv index display.
*/
.favorable
{
    background-color: darkgreen;
    color: white;
    
}
.moderate
{
    background-color: yellow;
    color:black;
    
}
.severe
{
    background-color: red;
    color: black;
}
/*
* keeping weather image icon smaller size for future forecast pane.
*/
.forcast-card-image
{
    width : 50px;
}
/*
* used to hide any elemnt in the application.
*/
.hide
{
    display:none;
}