body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
}

header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
  background: #eee;
  border-bottom: 1px solid #ccc;
}

header input,
header select {
  padding: 6px;
}

.hidden {
  display: none;
}

#showsView,
#episodesView {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showCard {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 25px;
}

.showCard img {
  width: 180px;
  border-radius: 6px;
}

.showTitle {
  font-size: 32px;
  margin: 0 0 10px 0;
}

.showInfoBox {
  background: #fafafa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.6;
}

#episodesView .episodeCard {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.episodeCard img {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
}
