#root {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

body {
  margin: 0;
  padding: 2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f5f5f5;
}

#searchInput {
  top: 2rem;
  left: 2rem;
  z-index: 10;
  display: block;
  padding: 8px 16px;
  border-radius: 18px;
  width: 10%;
  max-width: 400px;
  background: url('data:image/svg+xml;utf8,<svg fill="gray" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99a1 1 0 001.41-1.41l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>')
    no-repeat 10px center;
  padding-left: 36px;
  background-color: rgb(231, 236, 239);
  color: #222;
  border: 2px solid #2196f3;
}

#display {
  top: 5rem;
}

#episodeSelector {
  top: 8rem;
  left: 2rem;
  z-index: 10;
  display: block;
  padding: 8px 16px;
  border-radius: 18px;
  width: 13%;
  max-width: 400px;
  color: #222;
  border: 2px solid #2196f3;
  background-color: rgb(231, 236, 239);
}

#episodes-controls {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
  max-width: 420px;
}

#searchInput,
#episodeSelector {
  width: 100%;
  max-width: 420px;
}

#showAllBtn {
  top: 10.5rem;
  left: 2rem;
  z-index: 10;
}

#showSelector {
  top: 13rem;
  left: 2rem;
  z-index: 10;
  display: block;
  padding: 8px 16px;
  border-radius: 18px;
  width: 13%;
  max-width: 400px;
  color: #222;
  border: 2px solid #2196f3;
  background-color: rgb(231, 236, 239);
}

#tvmaze-credit {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

#status {
  margin-bottom: 1rem;
  font-weight: 600;
}

#retryBtn {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid #2196f3;
  background-color: #e7ecef;
  cursor: pointer;
}

#episodes-view nav {
  margin-bottom: 1rem;
}
#backToShows {
  display: inline-block;
  margin-bottom: 1rem;
}

/* One episode card */
.episode {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Title */
.episode h2 {
  margin: 0;
  padding: 0.9rem 1.2rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid #000000;
  border-radius: 15px;
  background-color: #ffffff;
}

.episode img {
  width: 260px;
  max-width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.episode-content {
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.episode-content div {
  max-width: 300px;
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.4;
}
