/* Mobile-first styles */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  color: #007bff;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0069d9;
}

#episode-info {
  margin-top: 20px;
  text-align: left;
  display: none;
}

#episode-info h2 {
  color: #007bff;
}

#episode-info p {
  margin-bottom: 10px;
}

#episode-info a {
  color: #007bff;
}

/* Media queries for smaller devices */
@media only screen and (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}
