/* Weather Widget Styles - Simple Inline Design with QWeather Icons */
.weather-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px; /* Ensure minimum touch target for mobile */
}

/* Loading State */
.weather-loading {
    color: #666666;
    font-size: 16px;
    min-height: 24px;
}

/* Main Weather Content */
.weather-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px; /* Ensure minimum touch target for mobile */
}

.weather-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px; /* Ensure minimum size for mobile */
}

.weather-icon i {
    font-size: 32px;
    color: #FFB800;
    line-height: 1;
}

.weather-temperature {
    font-size: 18px;
    color: #000000;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
}

/* Error State */
.weather-error {
    color: #cc0000;
    font-size: 16px;
    min-height: 24px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .weather-widget {
        gap: 12px;
        min-height: 48px;
    }
    
    .weather-content {
        gap: 12px;
        min-height: 48px;
    }
    
    .weather-icon {
        min-width: 40px;
    }
    
    .weather-icon i {
        font-size: 40px;
    }
    
    .weather-temperature {
        font-size: 20px;
        font-weight: 600;
    }
    
    .weather-loading,
    .weather-error {
        font-size: 18px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .weather-widget {
        gap: 10px;
        min-height: 44px;
    }
    
    .weather-content {
        gap: 10px;
        min-height: 44px;
    }
    
    .weather-icon {
        min-width: 36px;
    }
    
    .weather-icon i {
        font-size: 36px;
    }
    
    .weather-temperature {
        font-size: 18px;
        font-weight: 600;
    }
}

/* Ensure visibility in all contexts */
.weather-widget,
.weather-content,
.weather-icon,
.weather-temperature {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix for potential flex issues on mobile */
@media (max-width: 600px) {
    .weather-widget {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
}

 