        .marquee {
            display: flex;
            overflow: hidden;
            position: relative;
            width: 100vw;
            background: black;
            /* background: linear-gradient(to right, #006994, #0096c7); */
            color: white;
            padding: 6px 0;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        .marquee-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .weather-item {
            display: flex;
            align-items: center;
            margin: 0 15px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            min-width: fit-content;
        }

        .weather-item object {
            width: 40px;
            height: 40px;
            margin: 0 6px;
        }

        /* ➖ Séparateur entre les villes */
        .city-separator {
            margin: 0 30px;
            font-size: 16px;
            font-weight: bold;
        }

        /* 📱 Ajustements Responsive */
        @media (max-width: 768px) {
            .weather-item {
                font-size: 12px; 
                margin: 0 10px;
            }
            .weather-item object {
                width: 35px;
                height: 35px;
            }
            .city-separator {
                margin: 0 20px;
                font-size: 14px;
            }
            .marquee {
                padding: 4px 0;
            }
        }

        @media (max-width: 480px) {
            .weather-item {
                font-size: 11px;
                margin: 0 8px;
            }
            .weather-item object {
                width: 30px;
                height: 30px;
            }
            .city-separator {
                margin: 0 15px;
                font-size: 13px;
            }
        }