.forecast-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 10px;
}

.forecast-day {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    background: #f5f5f5;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.day-date {
    font-weight: bold;
    margin-bottom: 4px;
}

.day-icon {
    margin: 4px 0;
}

.day-temps {
    font-size: 13px;
}

.day-temps .max {
    color: #d9534f;
    font-weight: bold;
}

.day-temps .min {
    color: #0275d8;
    font-weight: bold;
}

