body {
  font-family: Koodak, sans-serif;
  direction: rtl;
  background-color: #111;
  color: #fff;
  padding: 20px;
  font-size: 25px;
}

h1 {
  text-align: center;
}

#searchInput {
  display: block;
  margin: 0 auto 20px auto;
  padding: 10px;
  width: 80%;
  max-width: 500px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  font-family: Koodak, sans-serif;
}

.movie-card {
  display: flex;
  background: #222;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  flex-direction: row;
}

.movie-card:hover {
  background: #333;
}

.movie-card img {
  max-height: 150px;
  object-fit: contain;
}

.movie-info {
  padding: 10px;
  flex: 1;
}

.part-buttons {
  margin-top: 10px;
}

.part-buttons button {
  margin: 3px;
  padding: 5px 10px;
  font-size: 14px;
  background: #444;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.part-buttons button:hover {
  background: #666;
}

#playerContainer {
  margin-top: 30px;
  text-align: center;
}

#videoPlayer {
  width: 100%;
  max-width: 720px;
  height: auto;
  border: none;
  outline: none;
  border-radius: 12px;
}
