#premium-pool {
	min-height: 400px;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.pagination-wrapper {
	margin: 2rem 0;
	text-align: center;
}

.pagination {
	display: inline-block;
}

.pagination ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 4px;
}

.pagination ul li {
	margin: 0 2px;
}

.pagination ul li a,
.pagination ul li span {
	display: block;
	padding: 8px 16px;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.pagination ul li a:hover {
	background-color: #f5f5f5;
}

.pagination ul li span.current {
	background-color: #007bff;
	color: #fff;
	border-color: #007bff;
}

.pagination .screen-reader-text {
	display: none;
}

@media (max-width: 768px) {
	.pagination ul li a,
	.pagination ul li span {
		padding: 6px 12px;
	}
}

/* premium */

.premium-box {
	max-width: 400px;
	margin: 20px auto;
	padding: 24px;
	font-family: system-ui, -apple-system, sans-serif;
}

.premium-title {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	background: var(--theme-box-color);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 24px;
}

.price {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 24px;
}

.order-info {
	text-align: center;
	font-size: 14px;
	margin-bottom: 12px;
}

.order-id {
	background: rgba(255, 255, 255, 0.1);
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	font-family: monospace;
	font-size: 18px;
	color: var(--theme-box-color);
	margin-bottom: 24px;
	filter: brightness(2);
}

.lightmode .order-id {
	background: brightness(1);
}

.email-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--theme-box-color);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s;
	margin-block-end: 1rem;
	cursor: pointer;
}

.email-button:hover {
	color: white;
	filter: brightness(90%);
}

.email-icon {
	width: 24px;
	height: 24px;
}

/* order-data */
.order-data {
	max-width: 400px;
	margin: 20px auto;
	padding: 24px;
	border-radius: 12px;
	display: none;
	font-family: system-ui, -apple-system, sans-serif;
}

.order-data.show {
	display: block;
	width: 100%;
}

.order-data h2 {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 24px 0;
}

#order-data-id {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

#order-data-id select {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: white;
	font-size: 16px;
	cursor: pointer;
	appearance: none;
	width: 100%;
	position: relative;
	transition: border-color 0.2s, background-color 0.2s;
}

#order-data-id select:hover,
#order-data-id select:focus {
	border-color: var(--theme-box-color);
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

#order-data-id {
	position: relative;
}

#order-data-id::after {
	content: '▼';
	font-size: 12px;
	color: var(--theme-box-color);
	position: absolute;
	right: 16px;
	top: 16px;
	pointer-events: none;
}

.lightmode #order-data-id::after {
	color: #1a1a1a;
}

.expired {
	background: rgba(255, 255, 255, 0.1);
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	font-family: monospace;
	font-size: 18px;
	color: var(--theme-box-color);
	margin-bottom: 24px;
}

.lightmode .expired {
	background: rgba(0, 0, 0, 0.1);
	color: #1a1a1a;
}

#premium-pool button {
	padding: 14px 24px;
	border-radius: 8px;
	border: none;
	background: var(--theme-box-color);
	color: white;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
	width: 100%;
}

#premium-pool button:hover {
	opacity: 0.9;
}

#premium-pool option {
	background: #2d2d2d;
	color: white;
	padding: 8px;
}
#premium-pool p {
	text-align: center;
}
