| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| #searchInput { | |
| box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |
| transition: box-shadow 0.3s ease; | |
| } | |
| #searchInput:focus { | |
| box-shadow: 0 3px 10px rgba(66, 153, 225, 0.3); | |
| } | |
| .search-result:hover { | |
| background-color: rgba(243, 244, 246, 0.5); | |
| } |