/*!
 *      __  ____  
 *     / / |___ \ 
 *    / /    __) |
 *   < <    |_ Wetter-Puls
 *    \ \   ___) |
 *     \_\ |____/ 
 *
 *  (c) 2025-2026 Daniel Frey | https://wetter-puls.de
 *  Author:  Daniel Frey <daniel@dan.jetzt>
 *  License: Proprietary & Confidential - All Rights Reserved
 */

.forecast10d-widget {
    background: transparent;
}

.forecast10d-day-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 8px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.forecast10d-day-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 242, 254, 0.3);
}

.forecast10d-day-card.today {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.4);
}

.forecast10d-span1-card {
    min-width: 65px;
    flex-shrink: 0;
    text-align: center;
    padding: 6px 4px;
}

.forecast10d-temp-bar-bg {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.forecast10d-temp-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #38bdf8 0%, #fbbf24 60%, #ef4444 100%);
    position: absolute;
}

#forecast10dContainer {
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

#forecast10dContainer::-webkit-scrollbar {
    width: 4px;
}

#forecast10dContainer::-webkit-scrollbar-track {
    background: transparent;
}

#forecast10dContainer::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
