html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to bottom right, #002b7f, #3a7bd5);
}
 
.history-title {
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    color: white;
}

#current-weather {
    padding: 5px 0;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
    padding-left: 25px;
    padding-bottom: 15px;
    width: 100%;
}

#top-header {
    height: 75px;
    text-align: center;
    font-size: 32px;
    font-weight: bolder;
    color: white;
    margin-bottom: 2rem;
}

#top-header > div {
    padding-top: 15px;
}

#side-panel {
    margin: 15px;
}

#weather-dashboard {
    margin: 15px 0;
}

.card-background {
    background: linear-gradient(180deg,
                rgba(0, 145, 255, 0.9) 0%,
                rgba(0, 102, 204, 0.9) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: none;
    color: white;
}

.custom-card {
    width: 12rem;
    color: white;
    line-height: 2rem;
    border: 0;
    margin: 4px 0 4px 16px;
    padding: 5px 0 10px 10px;
    border-radius: 10px;
}

.weekly-title {
    color: white;
}

.custom-btn {
    margin-bottom: 10px;
    border: none;
}

.custom-btn:hover {
    background-color: darkgreen;
}

form {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.info {
    line-height: 2.25rem;
}

.uvi {
    padding: 5px 15px 5px 15px;
    border-radius: 5px;
    color: white;
    text-align: center;
}

.green {
    background-color: green;
}

.yellow {
    background-color: yellow;
    color: black;
}

.orange {
    background-color: orange;
}

.red {
    background-color: red;
}

.purple {
    background-color: purple;
}

.custom-icon-sm {
    width: 10%;
}

.custom-icon-lg {
    width: 25%;
}