#dashboard-header {
    color: white;
    background-color: #343a40;
    height: 75px;
    padding: 10px;
}

/* Styles for the search aside */
#search-label {
    font-size: larger;
    font-weight: bold;
}

#search-button {
    padding: 10px;
}

#aside-row {
    width: 325px;
    padding-bottom: 10px;
    position: fixed;
    background-color: #f8f9fa;
}

.past-search {
    background-color: white;
    border: solid;
    width: 100%;
    height: 40px;
    padding-left: 11px;
    border-width: 1px;
    border-color: lightgrey;
    text-align: left;
}

/* Styles for the current weather */
#weather-details {
    position: relative;
    margin-top: 15px;
    margin-left: 350px;
    border: solid;
    border-width: 1px;
    border-color: lightgrey;
}

#city-name {
    margin: 20px 0px 20px 5px;
}

.results-line {
    margin: 0px 0px 12px 5px;
}

#uv-index {
    margin-bottom: 35px;
}

#uv-num {
    padding: 7px;
}


/* Styles for the 5 day forecast */
#five-day {
    position: relative;
    margin-top: 15px;
    margin-left: 350px;
}

#five-day-title {
    padding-left: 0px;
}

.forecast-box {
     height: 175px;
     width: 130px;
     background-color: #007bff;
     margin: 10px 25px 0px 0px;
}

.forecast-date {
    color: white;
    margin: 10px 0px 10px 15px;
}

.forecast-details {
    color: white;
    font-size: 95%;
    margin: 10px 0px 0px 10px;

}