.chapter-pagination {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
}
.chapter-loader {
	display: none; /* hidden by default */
	text-align: center;
	margin-top: 10px;
}
@media (prefers-reduced-motion: reduce) {
    *:not(.gd_loader) {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}
.gd_loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite !important;
}

@keyframes rotation {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Keep your original button styles */
.chapter-pagination .chapter-page-btn {
	padding: 0.5em 0.94em;
	color: #fff;
	/*  background: #333;*/
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.chapter-pagination .chapter-page-btn.active {
	background: #df5936;
}
