/* Add this to your existing CSS file (style.css) */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  margin-left: auto; /* Pushes the search bar to the right */
}


.search-bar input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 14px;
  width: 33vw;
  background: #e3e3e3;
}



.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.search-bar button img {
  width: 20px;
  height: 20px;
}


@media (max-width: 480px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
}
.search-bar {
  display: flex
;
  align-items: center;
  margin-right: 6vw;
}

.search-bar input {
  
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 14px;
    width: 24vw;
    background: #e3e3e3;
}
}