/* * styles.css * * This file contains the CSS styles for the search feature. * It defines the look and feel of the search interface. */ /* Base styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f5f5f5; } .search-container { display: flex; justify-content: center; align-items: center; height: 100vh; width: 100%; } .input-box { width: 90%; max-width: 400px; padding: 12px; border-radius: 8px; border: 2px solid #ccc; box-shadow: 0px 2px 4px rgba(0,0,0,0.1); transition: box-shadow 0.3s ease, border 0.3s ease; } .input-box:focus { border-color: #007bff; box-shadow: 0px 2px 8px rgba(0,0,0,0.2); } .results-container { width: 90%; max-width: 400px; background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0px 2px 8px rgba(0,0,0,0.1); padding: 16px; } .result-item { padding: 12px; margin-bottom: 10px; border-bottom: 1px solid #eee; } .result-item:hover { background-color: #f9f9f9; }