.movie-card {
  transition: transform 0.3s;
  margin-bottom: 20px;
}
.movie-card:hover {
  transform: translateY(-5px);
}
.movie-poster {
  height: 0;
  padding-bottom: 140%;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-bottom: 10px;
}
.movie-title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-actors {
  color: #6c757d;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-rating {
  color: #ffc107;
  font-weight: bold;
}
.breadcrumb {
  background-color: transparent;
  padding-left: 0;
}
.filter-section {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.filter-row {
  margin-bottom: 10px;
}
.filter-row span {
  width: 3rem;
}
