diff --git a/public/css/search.css b/public/css/search.css
index c6da220f3f92a985d2e2f9f5034f4de0767483df..7f365fd1a6aa065cdde7303c8e468bc6440d63ec 100644
--- a/public/css/search.css
+++ b/public/css/search.css
@@ -86,42 +86,3 @@ body {
   .button:hover {
     background-color: #005bb5;
   }
-  .search-container {
-    display: flex;
-    align-items: center;
-    width: 100%;
-    max-width: 400px;
-    border: 2px solid #007BFF;
-    border-radius: 25px;
-    overflow: hidden;
-    background: white;
-  }
-  
-  .search-container input {
-    flex: 1;
-    padding: 10px 15px;
-    border: none;
-    outline: none;
-    font-size: 16px;
-  }
-  
-  .search-container button {
-    background-color: #007BFF;
-    color: white;
-    border: none;
-    padding: 10px 20px;
-    font-size: 16px;
-    cursor: pointer;
-    transition: background-color 0.3s ease, transform 0.2s ease;
-  }
-  
-  .search-container button:hover {
-    background-color: #0056b3;
-    transform: scale(1.05);
-  }
-  
-  .search-container button:active {
-    background-color: #004494;
-    transform: scale(0.98);
-  }
-  
\ No newline at end of file
diff --git a/public/css/styles.css b/public/css/styles.css
index 355dcd9cb462805f5c14fa8a93c62856c9a383a2..ed5b7a58d439a738660d5107a7fd5e32368dc0c9 100644
--- a/public/css/styles.css
+++ b/public/css/styles.css
@@ -158,3 +158,42 @@ footer {
   color: white;
   margin-top: 30px;
 }
+
+.search-container {
+  display: flex;
+  align-items: center;
+  width: 100%;
+  max-width: 400px;
+  border: 2px solid #007BFF;
+  border-radius: 25px;
+  overflow: hidden;
+  background: white;
+}
+
+.search-container input {
+  flex: 1;
+  padding: 10px 15px;
+  border: none;
+  outline: none;
+  font-size: 16px;
+}
+
+.search-container button {
+  background-color: #007BFF;
+  color: white;
+  border: none;
+  padding: 10px 20px;
+  font-size: 16px;
+  cursor: pointer;
+  transition: background-color 0.3s ease, transform 0.2s ease;
+}
+
+.search-container button:hover {
+  background-color: #0056b3;
+  transform: scale(1.05);
+}
+
+.search-container button:active {
+  background-color: #004494;
+  transform: scale(0.98);
+}