#weather {
    resize: none !important;
}

#weather-icon {
    padding-top: 10px;
    margin-left: 15px;
    width: 50px !important;
    height: 50px !important;
    stroke: rgb(var(--text-color, 255, 255, 255)) !important;
}

#weather-container p {
    color: var(--text-color, white);
    text-align: left;
    font-size: 1.2rem;
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#location-container {
    padding: 0;
    margin: 0;
    height: 23px;
    margin-top: 5px;
    margin-bottom: 30px;
}

#first-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-self: left;
}

#modify-location {
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
    transition: 0.1s ease-in-out;
}

#modify-location img {
    width: 35px;
    height: 35px;
    aspect-ratio: 1/1;
}

#modify-location:hover {
    transform: scale(1.1);
}

#modify-location:active {
    transform: scale(0.9);
}