.widget {
    width: 240px;
    height: auto;
    background-color: #01AAED;
    border-radius: 6px;
    transition: 0.3s all;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.city-select {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 6px;
    border: none;
    font-size: 1.2em;
    font-weight: bolder;
    background-color: #01AAED;
    color: #FFFFFF;
}

.current-weather {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.qi {
    font-size: 40px;
    margin-right: 10px;
}

.current-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temperature-description {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.temperature {
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 10px;
}

.description {
    font-size: 1em;
    color: #fff;
}

.precipitation {
    font-size: 0.9em;
    color: #fff;
}

.forecast {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
}

.day {
    text-align: center;
}

.day span {
    display: block;
    margin-bottom: 2px;
}

.qi {
    font-size: 24px;
}

#icon-today, #icon-tomorrow, #icon-day-after-tomorrow {
    margin-bottom: 2px;
}
