body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 20px;
}
h1 {
  text-align: center;
}

h3 {
  text-align: center;
  color: #666;
}

#search-input {
  margin-bottom: 15px;
}

#root {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  /*padding: 20px;*/
  /*justify-content: center;*/
}
.episode-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  /*text-align: center;*/
}

.episode-title {
  text-align: center;
  border: 1x solid #999;
  padding: 8px;
  border-radius: 8px;
  /*font-size: 16;*/
  margin-bottom: 10px;
  font-weight: bold;
}
.episode-card img {
  width: 100%;
  /* it was max-width: 200px;*/
  /*margin: 10px o;*/
  border-radius: 6px;
}
.episode-summary {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}
footer {
  position: fixed;
  /*left: 0;*/
  bottom: 0;
  width: 100%;
  /*padding: 0px;*/
  font-size: 10x;
  text-align: center;
  color: #999;
}

.show-card {
  display: flex;
  flex-direction: row; /* Horizontal layout for show info */
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 20px;
  margin-bottom: 10px;
}

.show-image {
  width: 150px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.show-info {
  flex: 1; /* Takes up remaining space */
}

.show-name {
  margin-top: 0;
  color: #2d5a88;
  transition: color 0.2s;
}

.show-name:hover {
  color: #1a3a5a;
}

.show-meta {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two-column layout for metadata */
  gap: 10px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
}
.hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .show-card {
    flex-direction: column;
  }
  .show-image {
    width: 100%;
  }
  .show-meta {
    grid-template-columns: 1fr;
  }
}
.show-card:hover {
  border: 2px solid #2d5a88;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}
