/* Basic Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

#searchInput {
  width: 10%;
  padding: 10px;
  margin: 10px 5px 5px 20px;
  border: 1px solid #070303;
  border-radius: 5px;
}

.header-line {
  display: flex;
  align-items: center;
  gap: 10px; /* Optional spacing between title and season number */
  border: 1px solid #090808;
  border-radius: 10px;  
  padding: 10px; /* Adjust the value as needed */
  margin-bottom: 12px; /* Space between header and content */
}

.header-line h2,
.header-line h3 {
  margin: 0; /* Remove default spacing */
}


/* Container Layout */
#container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Card Styling */
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.episode-image {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.title {
  margin: 0 0 5px 0;
  color: #333;
}

.episode-code {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 0.9em;
}

.summary {
  color: #444;
  font-size: 0.95em;
}

footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9em;
  margin-top: 40px;
  border-top: 1px solid #eee;
}

footer a {
  color: #2277cc;
  text-decoration: none;
}