.movie-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  align-items: center;
}

.movie-card {
  display: flex;
  flex-direction: row;
  background-color: #d9d9d9;
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.movie-poster {
  flex: 0 0 50%;
  height: 100%;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.movie-info {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
}

.movie-info h2 {
  font-size: 1rem;
  margin: 0 0 5px 0;
}

.movie-info p {
  font-size: 0.75rem;
  margin: 3px 0;
  line-height: 1.2;
}

.btn-fav {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.9em;
  margin-top: 10px;
}

.btn-fav:hover {
  background-color: #2ecc71;
}

.btn-remove {
  background-color: #e74c3c;
}

.btn-remove:hover {
  background-color: #c0392b;
}

.fav-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.featured-section {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  border-radius: 8px;
}

.featured-title {
  font-size: 29px;
  margin-bottom: 20px;
}

.featured-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.no-featured {
  color: gray;
  text-align: center;
  font-style: italic;
  padding: 20px;
}
