.search-bar {
margin: 20px 0 10px 0;
display: flex;
justify-content: flex-start;
}
.search-bar input {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 70vw;
  transition: border 0.2s;
}
.search-bar input:focus {
  border-color: #0d6efd;
  outline: none;
}

@keyframes loaderFade {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

@media (max-width: 600px) {
    .search-bar {
      justify-content: center;
      margin: 10px 0;
    }
    .search-bar input {
      width: 100%;
      max-width: 100vw;
      box-sizing: border-box;
    }
  }