/* Weather Top Bar Widget */
.weather-topbar-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c3e50;
    padding: 8px 16px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.weather-topbar-icon {
    display: flex;
    align-items: center;
}

.weather-topbar-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.weather-topbar-temp {
    font-size: 16px;
    font-weight: 700;
}

.weather-topbar-location {
    font-size: 13px;
    opacity: 0.9;
}

.weather-topbar-error {
    color: #999;
    font-size: 12px;
    padding: 5px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .weather-topbar-location {
        display: none;
    }
}
