body {
  font-family: 'Nunito', 'Comic Sans MS', 'Apple SD Gothic Neo', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-synthesis: none;
}

h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.table-container {
  overflow-x: auto;
  border-radius: 20px;
  background: white;
  padding: 35px 12px 70px 12px;
  width: 85%;
  max-width: 1200px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

th, td {
  padding: 10px 8px;
  text-align: center;
  border: 2px solid; /* color defined in theme CSS */
  vertical-align: middle;
  font-size: 13px;
}

th {
  font-weight: bold;
  font-size: 14px;
}

tr:nth-child(even) {
  /* background-color defined in theme CSS */
}

tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody tr:hover {
  transform: scale(1.01);
  transition: all 0.2s ease;
  /* background-color defined in theme CSS */
}

.nowrap {
  white-space: nowrap;
}

.transcript {
  font-family: 'Nunito', 'Comic Sans MS', 'Apple SD Gothic Neo', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-style: italic;
  /* color defined in theme CSS */
}

.not-released {
  font-style: italic;
  color: #888;
  opacity: 0.9;
  display: block;
  padding: 6px 0;
  font-size: 13px;
}

.watch-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.2s, filter 0.2s;
}

.watch-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.poster-img {
  width: 60px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.2s;
}

.poster-img:hover {
  transform: scale(3);
}

.generation-header {
  font-weight: bold;
  font-size: 1.2em;
  padding: 10px;
  text-align: center;
  /* background-color and color defined in theme CSS */
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
    padding: 12px;
  }
  h1 {
    font-size: 1.5rem;
  }
  th, td {
    padding: 8px 6px;
    font-size: 12px;
  }
  .table-container {
    padding: 30px 8px 60px 8px;
  }
  .watch-icon {
    width: 24px;
    height: 24px;
  }
  .poster-img {
    width: 50px;
  }
}