.forecast-widget {
    width: 100%;
}

.forecast-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forecast-slot {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Дата + время + метка */
.forecast-datetime {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
    flex-shrink: 0;
}

.forecast-date {
    font-size: 9pt;
    color: #888;
    white-space: nowrap;
}

.forecast-time {
    font-size: 14pt;
    font-weight: bold;
    line-height: 1.1;
}

.forecast-now-label {
    font-size: 8pt;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Иконка + температура */
.forecast-icon-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
}

.forecast-icon {
    width: 40px;
    height: 40px;
}

/* Температура */
.forecast-temp {
    font-size: 11pt;
    font-weight: bold;
    text-align: center;
}

/* Описание */
.forecast-desc {
    font-size: 9pt;
    color: #1e90ff;
    width: 70px;
    flex-shrink: 0;
    text-align: center;
}

/* Детали */
.forecast-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.forecast-detail {
    font-size: 9pt;
    color: #ccc;
    white-space: nowrap;
}

.forecast-loading,
.forecast-error {
    font-size: 12pt;
    color: #888;
    padding: 20px;
}
