/**
 * OD Content Access Styles
 * Styling for locked content and supporter-only indicators
 */

/* Locked Content Display */
.od-content-locked {
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	text-align: center;
	max-width: 600px;
	margin: 2rem auto;
	background: rgba(0, 0, 0, 0.3);
}

.od-content-locked h2 {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #ff9800;
	font-size: 1.5rem;
}

.od-content-locked p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Patreon Button */
.od-patreon-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	background: #ff424d;
	color: #fff;
	transition: background-color 0.2s ease;
}

.od-patreon-button:hover {
	background: #e53843;
	color: #fff;
	text-decoration: none;
}

.od-patreon-note {
	margin-top: 0.75rem;
	opacity: 0.8;
	font-size: 0.9rem;
}

/* Menu Lock Icon */
.mdm-lock-icon {
	font-size: 0.85em;
	opacity: 0.9;
	margin-left: 0.25em;
}

/* Menu Item with Supporter-Only Class */
.mdm-supporters-only {
	position: relative;
}

.mdm-supporters-only a {
	opacity: 0.85;
}

/* Optional: Add a subtle badge/indicator for supporter content in menus */
.mdm-supporters-only::after {
	content: '';
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: #ff9800;
	border-radius: 50%;
	opacity: 0.6;
}

/* Admin Meta Box Styling */
.od-content-access-meta-box label {
	cursor: pointer;
	padding: 4px 0;
}

.od-content-access-meta-box input[type="radio"] {
	margin-right: 6px;
	cursor: pointer;
}

.od-content-access-meta-box p {
	margin-bottom: 8px;
}
