/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 5px;
  flex-wrap: wrap;
}

.pagination button,
.pagination span {
  background: #222;
  color: white;
  border: 1px solid #b00020;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.pagination button.active {
  background: #b00020;
  font-weight: bold;
}

.pagination button:disabled {
  background: #444;
  cursor: not-allowed;
}

.pagination span.ellipsis {
  background: transparent;
  border: none;
  cursor: default;
}

/* === Rating Bintang di Index === */
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: 5px 0;
  text-align: center;
}

.rating .star {
  font-size: 14px;
  color: #555; /* Default abu-abu */
}

.rating .star.filled {
  color: gold; /* Bintang terisi emas */
}

.rating.empty .star {
  color: #555; /* Kalau tidak ada rating sama sekali */
}

/* === Komik Grid === */
.komik-item {
  text-align: center;
}

.komik-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.2s;
}

.komik-item img:hover {
  transform: scale(1.05);
}

.komik-item h3 {
  font-size: 14px;
  color: white;
  margin: 5px 0;
}

.chapter-info {
  font-size: 12px;
  color: #bbb;
}

.update-info {
  font-size: 11px;
  color: #888;
}