#widget-root {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #003862;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width:365px;
    max-width:650px;
    height: auto;
    box-sizing: border-box;
}
#weather-details {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    row-gap:10px;
    font-size: 14px;
    margin-top: 10px;
}

.weather-info{
    display: flex;
    flex-direction:row;
    align-items: center;
    gap: 10px;
}

.weather-info img{
    width:40px;
}

#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 10px;
}
#temperature {
    font-size: 48px;
    font-weight: bold;
    margin-right: 10px;
}
#info-container{
    display:flex;
    align-items:center;
    justify-content: space-evenly;
}

.title{
    padding-bottom: 0;
    padding-top:0;
    margin:0;
}

p{margin:0;}

@media only screen and (max-width: 380px) {
    #widget-root {
        min-width: unset;
        max-width: 100%;
        padding: 10px;
    }

    #temperature {
        font-size: 36px;
    }

    #weather-details {
        font-size: 12px;
    }

    #footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    #info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top:10px;
    }
}