/* This is a style.css file for the search application. It contains CSS styles for the UI elements. */ body { margin: 0; font-family: Arial, sans-serif; } .header { background-color: #333; color: white; padding: 10px 20px; text-align: center; } .search-container { display: flex; justify-content: center; align-items: center; height: 100vh; } .search-input { width: 80%; padding: 10px; font-size: 16px; } .results { margin-top: 20px; } .result-item { background-color: #f0f0f0; border-radius: 5px; padding: 10px; margin-bottom: 10px; max-width: 400px; } .result-item h4 { margin-top: 0; } .result-item p { margin-top: 5px; } .footer { background-color: #222; color: white; text-align: center; padding: 10px; }