Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --hover-color: #1557b0;
+ --shadow-color: rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ min-height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .search-container {
+ width: 90%;
+ max-width: 600px;
+ padding: 20px;
+ }
+
+ .search-box {
+ display: flex;
+ align-items: center;
+ background: white;
+ border-radius: 30px;
+ box-shadow: 0 4px 6px var(--shadow-color);
+ padding: 10px 20px;
+ transition: all 0.3s ease;
+ }
+
+ .search-box:hover {
+ box-shadow: 0 6px 12px var(--shadow-color);
+ }
+
+ #search-input {
+ flex: 1;
+ border: none;
+ outline: none;
+ font-size: 18px;
+ padding: 10px;
+ background: transparent;
+ }
+
+ #search-button {
+ background: var(--primary-color);
+ border: none;
+ border-radius: 50%;
+ width: 40px;
+ height: 40px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ #search-button:hover {
+ background: var(--hover-color);
+ }
+
+ #search-button svg {
+ fill: white;
+ width: 20px;
+ height: 20px;
+ }
+
+ @media (max-width: 480px) {
+ #search-input {
+ font-size: 16px;
+ }
+
+ .search-box {
+ padding: 8px 16px;
+ }
+ }