body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  background-color: #121212;
  color: #eee;
}

header {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

input, button, select {
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
}

input {
  flex: 1;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
}

#searchButton {
  background-color: #e50914;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
#searchButton:hover {
  background-color: #b00610;
}

#userSelect {
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #333;
}

h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: #e50914;
}

#resultsContainer, #watchlistContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.movie-card {
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 12px;
  width: 180px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.movie-card:hover {
  transform: scale(1.05);
}

.movie-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.movie-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}

.movie-card p {
  font-size: 13px;
  margin: 3px 0;
  color: #bbb;
}

.movie-card button {
  margin-top: 10px;
  padding: 6px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.movie-card button:hover {
  background-color: #b00610;
}
