/**
 * Chapter Access Control Styles
 * Styles for login-required chapters feature
 */

/* Lock icon in chapter list */
.chapter-lock-icon {
	margin-left: 5px;
	font-size: 0.9em;
	color: #999;
	opacity: 0.8;
}

/* Locked chapter item styling */
.wp-manga-chapter.chapter-locked {
	position: relative;
}

.wp-manga-chapter.chapter-locked:not(:hover) a {
	opacity: 0.7;
}

.wp-manga-chapter.chapter-locked:hover .chapter-lock-icon {
	color: #666;
}

/* Chapter login required block in admin modal */
.wp-manga-modal-login-required {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.wp-manga-modal-login-required .input-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px;
	cursor: pointer;
}

.wp-manga-modal-login-required .input-label input[type="checkbox"] {
	margin: 0;
	cursor: pointer;
}

.wp-manga-modal-login-required .description {
	margin: 5px 0 0 0;
	font-size: 13px;
	color: #666;
	font-style: italic;
}

/* Chapter list - locked chapter badge */
.wp-manga-chapter.chapter-locked::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 70%;
	background: #f0ad4e;
	border-radius: 2px;
	opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.chapter-lock-icon {
		font-size: 0.85em;
	}

	.wp-manga-chapter.chapter-locked::before {
		height: 60%;
	}
}
