.weather-header {
    background: rgb(52, 98, 187);
    background: linear-gradient(90deg, rgba(52, 98, 187, 1) 0%, rgba(42, 54, 132, 1) 54%, rgba(32, 9, 77, 1) 100%);
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: column;
}

.input-group-append {
    width: 100%;
}

#search-button {
    background-color: #5098E5;
    color: white;
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
}

#search-input {
    width: 300px;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid black;
}

.card-deck .card {
    background-color: #2D3E51;
    color: #fff;
    border: 1px solid black;
    border-radius: 0px;
}

.wide-card {
    width: 700px;
}

.card-deck .card p {
    font-size: 14px;
}

/* Today section border only when content is within it */
#today:not(:empty) {
    border: 1px solid black;
    padding: 20px;
}

.weather-title {
    display: flex;
}

.weather-icon {
    width: 70px;
    margin-top: -15px;
}