﻿.weather-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none; /* hide scrollbar on Firefox */
}

.weather-strip::-webkit-scrollbar {
    display: none; /* hide scrollbar on Chrome */
}

.weather-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    font-family: sans-serif;
}

.weather-day .day {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.weather-day img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.25rem;
}

.weather-day img[src*="45.png"],
.weather-day img[src*="48.png"] {
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.35));
}

.temp-high {
    color: #d9534f; /* red */
    font-weight: bold;
}

.temp-low {
    color: #0275d8; /* blue */
}

.weather-meta {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    opacity: 0.8;
}

.uv-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    opacity: 0.9;
}

.weather h3 {
    color: skyblue;
    text-align: center;
}

.weather {
    color: lightslategray;
    padding-left: 0px;
    display: inline-block;
}

@media only screen and (max-width: 671px) {
    .weather {
        padding-left: 10px !important;
        overflow: auto;
        width: -moz-available !important;
        width: available !important;
        width: -webkit-fill-available !important;
        width: 100%;
    }
}

@media only screen and (min-width: 672px) and (max-width: 900px) {
    .weather {
        overflow: auto;
        width: -moz-available !important;
        width: available !important;
        width: -webkit-fill-available !important;
        width: 100%;
    }
}

@media only screen and (max-width: 540px) {
    .weather {
        padding-left: 10px !important;
        overflow: auto;
        width: -moz-available !important;
        width: available !important;
        width: -webkit-fill-available !important;
        width: 100%;
    }
}
