.weather-container {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.day-box {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.flex-double {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

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

.hour-row {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.hour-row span {
    flex: 1;
    text-align: center;
}

.hour-row span:nth-child(1) {
    flex: 0 0 60px; /* Fixed width for time */
}

.hour-row img {
    flex: 0 0 40px; /* Fixed size for icons */
    height: auto;
}

/* Background colors */
.hour-row.overlay {
    background-color: #00274d; /* Darker for before sunrise/after sunset */
    color: white;
}

.hour-row.lighter-overlay {
    background-color: #005bb5; /* Lighter for sunrise/sunset hours */
    color: white;
}

.hour-row.daylight {
    background-color: #d9faff; /* Lightest during daytime */
    color: black;
}


.weather-icon {
    width:35px;
}
.hour-row img {
    width:35px;
}