/* Stile per il contenitore del widget */
.meteo-assisi-widget-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-content: stretch;
    align-items: stretch;    
    background: linear-gradient(135deg, #29a9fd 0%, #a0d9fe 100%);
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    aspect-ratio: 4/3;
    min-height: 235px;
}

/* Stile per la previsione attuale */
.current-forecast {
    padding: 0px 10px 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.current-forecast h1 {
    margin: 0;
    color: #FFF;
    margin-top: -15px;
}

.current-forecast img {
    width: 70px;
    height: 70px;
}

.current-forecast small {
	color: #FFF;
}

/* Stile per la temperatura corrente */
.current-temperature {
    font-size: 2em;
    font-weight: 800;
    color: #FFF;
}

/* Stile per il widget del meteo */
.meteo-assisi-widget-1, .meteo-assisi-widget-2 {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.meteo-assisi-widget-1 {
    margin-top: -8px;
}

.meteo-assisi-widget-1 p {
	text-align: center;
}

.meteo-assisi-widget-1 p, .meteo-assisi-widget-2 p {
	display: flex;
	flex-direction: column;
    font-size: 16px;
    color: #FFF;
    margin-bottom:0!important;
}

/* Stile per le colonne */
.left-column, .right-column {
    width: 45%;
}

.left-column {
    text-align: right;
}

.right-column {
    text-align: left;
}

/* Stile per il blocco delle previsioni giornaliere */
.daily-forecast {
    width: 100%; /* Adatta la larghezza come necessario */
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 8px;
    padding-top: 0!important;
}

/* Stile per ogni previsione giornaliera */
.daily-forecast-item {
    display: inline-block;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 10px;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    width: 12%;
    font-size: 9px!important;
    color: #FFF;
    margin: 2px;
}

/* Stile per le icone delle previsioni giornaliere */
.daily-forecast-item img {
    max-width: 30px;
    width: 40px;
    height: 40px;
}

/* Stile per le temperature minime e massime */
.temp-min, .temp-max {
    font-size: 10px
}

.copy-txt {
	font-size: 9px;
	color: #FFF;
	text-align: center;
	margin-bottom: 3px
}

.copy-txt a {
	color: #FFF!important;
	text-decoration: none!important;
}