/**
 * Facilitator Forms Styles
 * Styles for facilitator profile forms
 */

/* ===== Facilitator Profile Form ===== */
.nef-facilitator-profile-form-full {
	max-width: 900px;
	margin: 0 auto;
}

.nef-form-section {
	border: 1px solid #ddd;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 8px;
	background: #f9f9f9;
}

.nef-form-section legend {
	font-size: 20px;
	font-weight: bold;
	padding: 0 15px;
	color: #333;
}

.nef-info-box {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 20px;
}

.nef-info-box p {
	margin: 10px 0;
}

.nef-form-actions {
	text-align: center;
	margin-top: 30px;
}

.required {
	color: #d00;
}

/* ===== Scrollable Checkbox Container ===== */
.nef-checkbox-scroll-container {
	display: flex;
	flex-direction: column;
	max-height: 300px;
	overflow-y: auto;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
	gap: 8px;
}

.nef-checkbox-scroll-container .nef-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: white;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease;
	margin: 0;
}

.nef-checkbox-scroll-container .nef-checkbox:hover {
	transform: translateX(4px);
	border-color: #667eea;
}

.nef-checkbox-scroll-container .nef-checkbox input:checked + span {
	font-weight: 600;
	color: #667eea;
}

.nef-checkbox-scroll-container .nef-checkbox:has(input:checked) {
	border-color: #667eea;
	background: #f0f4ff;
}

/* Custom scrollbar */
.nef-checkbox-scroll-container::-webkit-scrollbar {
	width: 8px;
}

.nef-checkbox-scroll-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.nef-checkbox-scroll-container::-webkit-scrollbar-thumb {
	background: #667eea;
	border-radius: 4px;
}

.nef-checkbox-scroll-container::-webkit-scrollbar-thumb:hover {
	background: #5a6fd6;
}

/* ===== Modality Links ===== */
.nef-modality-links {
	display: inline;
}

.nef-modality-link {
	color: #667eea;
	text-decoration: none;
	transition: color 0.15s ease;
}

.nef-modality-link:hover {
	color: #764ba2;
	text-decoration: underline;
}

/* ===== Trusted Facilitator Badge ===== */
.nef-trusted-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-size: 13px;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.nef-trusted-badge svg {
	color: #fbbf24;
}


/* ===== TinyMCE Editor Button Styling ===== */
/* Change TinyMCE toolbar buttons to white background */
.mce-toolbar .mce-btn button,
.mce-toolbar .mce-btn-group .mce-btn button,
.mce-toolbar .mce-btn {
	background-color: #ffffff !important;
	border-color: #d1d5db !important;
}

.mce-toolbar .mce-btn:hover button,
.mce-toolbar .mce-btn-group .mce-btn:hover button {
	background-color: #f9fafb !important;
}

.mce-toolbar .mce-btn.mce-active button,
.mce-toolbar .mce-btn-group .mce-btn.mce-active button {
	background-color: #e5e7eb !important;
}
