#movies-search-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

.movies-results-grid {
      display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 5px;
    margin-top: 5px;
}

.movie-search-card {
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s;
}

.movie-search-card:hover {
  transform: scale(1.03);
}

.movie-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.movie-info {
  padding: 10px;
  padding-top: 0;
}
.movie-info h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.movie-info p {
  font-size: 14px;
  color: #555;
}


#movies-search-results {
 position: absolute;
    width: 250px;
    overflow-y: scroll;
    background: white;
    height: auto;
}
.single-movie-card{
  display: flex;
}

.movie_poster {
    width: 49px;
    height: 55px;
}

.filter_search{
  display:flex;
  justify-content: space-between;
}

.movies-search-wrapper {
    width: 250px;
}