/* Weather icons using emoji/unicode */
.weather-icon.sunny::after { content: "☀️"; }
.weather-icon.cloudy::after { content: "☁️"; }
.weather-icon.partly-cloudy::after { content: "⛅"; }
.weather-icon.rainy::after { content: "🌧️"; }
.weather-icon.snowy::after { content: "❄️"; }
.weather-icon.stormy::after { content: "⛈️"; }
.weather-icon.foggy::after { content: "🌫️"; }
.weather-icon.default::after { content: "🌈"; }
