body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333333;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.episode-list {
  padding: 16px;
}

.episode-item {
  background: white;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px #0000001a;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.episode-item:hover {
  background: #f0f0f0;
}

.episode-title {
  font-size: 16px;
  font-weight: 500;
}

.episode-view {
  position: relative;
}

.comic-page {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.episode-info {
  align-content: center;
  text-align: center;
  padding: 8px;
  font-size: 24px;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 8px;
  /*
  border-top-right-radius: 25%;
  border-top-left-radius: 25%;
  */
  background: #ffffff;
  z-index: 100;
}

.nav-button {
  align-items: center;
  border: none;
  cursor: pointer;
  background: none;
  display: flex;
  justify-content: center;
  transition-duration: 0.5s;
}

.nav-button:hover {
  scale: 1.2;
}

.nav-button:disabled:hover {
  scale: 1;
}

.nav-button img {
  height: 48px;
  width: auto;
}

.nav-button:disabled {
  cursor: not-allowed;
  opacity: 20%;
}

.footer {
  /*
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  */
  background: #ffffff;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #dddddd;
  z-index: 100;
}

.footer img {
  border-radius: 15%;
  height: 40px;
  margin: 4px;
  object-fit: contain;
  overflow: hidden;
  width: auto;
  transition-duration: 0.5s;
}

.footer img:hover {
  scale: 1.2;
}