.hc-tabbed-pager {
	width: 100%;
}

.hc-tabbed-pager__content {
	width: 100%;
}

.hc-tabbed-pager__pane {
	display: none;
}

.hc-tabbed-pager__pane.is-active {
	display: block;
}

.hc-tabbed-pager__empty {
	padding: 20px;
	border: 1px dashed #d1d5db;
	border-radius: 6px;
	text-align: center;
	color: #6b7280;
	background: #f9fafb;
}

.hc-tabbed-pager__nav-wrap {
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

.hc-tabbed-pager__nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.hc-tabbed-pager__nav-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hc-tabbed-pager__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: #ffffff;
	color: #374151;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: none;
	outline: none;
}

.hc-tabbed-pager__nav-btn:hover {
	border-color: #2563eb;
	color: #2563eb;
}

.hc-tabbed-pager__nav-btn.is-active {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
}

.hc-tabbed-pager__nav-btn.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}