/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #333;
}

/* Search Page Styles */
#search-form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#input {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  margin-left: 10px;
}

.search-btn:hover {
  background-color: #0056b3;
}

#show_data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#poster {
  width: 100%;
  height: auto;
}

h6 {
  font-size: 16px;
  margin: 10px;
}

.channel {
  font-size: 14px;
  color: #555;
  margin: 0 10px 10px;
}

/* Video Page Styles */
#video-container {
  text-align: center;
  margin: 20px auto;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: #007bff;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
