/* START FAQ CONTAINER */

html.light-mode .kol-faq-single-wrapper {
	background-color: #ffffff;
	color: #1f2937;
	padding: 20px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	box-shadow: 0px 0px 6px 0px #d1d5db;
}

html.dark-mode .kol-faq-single-wrapper {
	background-color: #1a1a1a;
	color: #e0e0e0;
	padding: 20px;
	border-radius: 6px;
	border: 1px solid #333;
	box-shadow: 0px 0px 6px 0px #2a2a2a;
}

html.light-mode .kol-faq-header {
	margin-bottom: 20px;
	border-bottom: 2px solid #059669;
	padding-bottom: 15px;
}

html.dark-mode .kol-faq-header {
	margin-bottom: 20px;
	border-bottom: 2px solid #4CAF50;
	padding-bottom: 15px;
}

html.light-mode .kol-faq-header h1 {
	margin: 0 0 10px 0;
	color: #059669;
	font-size: 28px;
}

html.dark-mode .kol-faq-header h1 {
	margin: 0 0 10px 0;
	color: #4CAF50;
	font-size: 28px;
}

html.light-mode .kol-faq-meta {
	display: flex;
	gap: 15px;
	font-size: 12px;
	color: #6b7280;
}

html.dark-mode .kol-faq-meta {
	display: flex;
	gap: 15px;
	font-size: 12px;
	color: #999;
}

.kol-faq-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* END FAQ CONTAINER */

/* START FAQ CONTENT */

.kol-faq-content {
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 15px;
}

html.light-mode .kol-faq-content p {
	margin: 10px 0;
	color: #1f2937;
}

html.dark-mode .kol-faq-content p {
	margin: 10px 0;
	color: #e0e0e0;
}

html.light-mode .kol-faq-content h2,
html.light-mode .kol-faq-content h3,
html.light-mode .kol-faq-content h4 {
	color: #059669;
	margin: 20px 0 10px 0;
}

html.dark-mode .kol-faq-content h2,
html.dark-mode .kol-faq-content h3,
html.dark-mode .kol-faq-content h4 {
	color: #4CAF50;
	margin: 20px 0 10px 0;
}

html.light-mode .kol-faq-content ul,
html.light-mode .kol-faq-content ol {
	margin: 10px 0 10px 20px;
	color: #1f2937;
}

html.dark-mode .kol-faq-content ul,
html.dark-mode .kol-faq-content ol {
	margin: 10px 0 10px 20px;
	color: #e0e0e0;
}

.kol-faq-content li {
	margin: 5px 0;
}

html.light-mode .kol-faq-content a {
	color: #059669;
	text-decoration: none;
	border-bottom: 1px solid #059669;
}

html.light-mode .kol-faq-content a:hover {
	color: #047857;
}

html.dark-mode .kol-faq-content a {
	color: #4CAF50;
	text-decoration: none;
	border-bottom: 1px solid #4CAF50;
}

html.dark-mode .kol-faq-content a:hover {
	color: #56ab2f;
}

/* END FAQ CONTENT */

/* START POINT BUTTONS */

html.light-mode .kol-faq-point-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	padding: 15px;
	background-color: #f3f4f6;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
}

html.dark-mode .kol-faq-point-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	padding: 15px;
	background-color: #1a1a1a;
	border-radius: 6px;
	border: 1px solid #333;
}

html.light-mode .kol-faq-point-button,
html.dark-mode .kol-faq-point-button {
	height: 32px;
	padding: 0 15px;
	border-top: 1px solid #3d9d3d;
	border-left: 1px solid #3d9d3d;
	border-right: 1px solid #1a4d1a;
	border-bottom: 1px solid #1a4d1a;
	border-radius: 6px;
	background: linear-gradient(#2d7c2d, #1f5f1f);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
	color: #fff;
	cursor: pointer;
	flex: 1;
	min-width: 120px;
	font-size: 13px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
}

html.light-mode .kol-faq-point-button:hover,
html.light-mode .kol-faq-point-button:focus,
html.dark-mode .kol-faq-point-button:hover,
html.dark-mode .kol-faq-point-button:focus {
	color: #fff;
}

html.light-mode .kol-faq-point-button.claimed {
	background: linear-gradient(#e2e2e2, #d4d4d4);
	border-top: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #b0b0b0;
	border-bottom: 1px solid #b0b0b0;
	color: #2d2d2d;
	cursor: not-allowed;
}

html.dark-mode .kol-faq-point-button.claimed {
	background: linear-gradient(#383838, #343434);
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	border-right: 1px solid #282828;
	border-bottom: 1px solid #282828;
	color: #fff;
	cursor: not-allowed;
}

html.light-mode .kol-faq-button-response {
	font-size: 12px;
	color: #059669;
	margin-top: 5px;
	text-align: center;
	min-height: 15px;
}

html.dark-mode .kol-faq-button-response {
	font-size: 12px;
	color: #4CAF50;
	margin-top: 5px;
	text-align: center;
	min-height: 15px;
}

/* END POINT BUTTONS */

/* START PROGRESS GAUGE */

html.light-mode .kol-faq-gauge-container {
	text-align: center;
	padding: 25px;
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

html.dark-mode .kol-faq-gauge-container {
	text-align: center;
	padding: 25px;
	background-color: #1a1a1a;
	border-radius: 8px;
	border: 1px solid #333;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

html.light-mode .kol-faq-category-progress {
	text-align: center;
	padding: 25px;
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

html.dark-mode .kol-faq-category-progress {
	text-align: center;
	padding: 25px;
	background-color: #1a1a1a;
	border-radius: 8px;
	border: 1px solid #333;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

html.light-mode .kol-faq-category-progress h3 {
	margin-top: 0;
	color: #059669;
	margin-bottom: 20px;
}

html.dark-mode .kol-faq-category-progress h3 {
	margin-top: 0;
	color: #4CAF50;
	margin-bottom: 20px;
}

.kol-faq-gauge-wrapper {
	max-width: 200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.kol-faq-gauge {
	position: relative;
	width: 180px;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.kol-faq-gauge svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

html.light-mode .kol-faq-gauge svg circle:first-child {
	stroke: #e5e7eb;
}

html.dark-mode .kol-faq-gauge svg circle:first-child {
	stroke: #333;
}

html.light-mode .kol-faq-gauge svg .kol-faq-gauge-progress {
	stroke: #059669 !important;
}

html.dark-mode .kol-faq-gauge svg .kol-faq-gauge-progress {
	stroke: #4CAF50 !important;
}

.kol-faq-gauge-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	z-index: 2;
}

html.light-mode .kol-faq-percentage {
	font-size: 32px;
	font-weight: bold;
	color: #059669;
	margin: 0;
}

html.dark-mode .kol-faq-percentage {
	font-size: 32px;
	font-weight: bold;
	color: #4CAF50;
	margin: 0;
}

html.light-mode .kol-faq-stats {
	font-size: 12px;
	color: #6b7280;
	margin-top: 5px;
}

html.dark-mode .kol-faq-stats {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

/* END PROGRESS GAUGE */

/* START FAQ LIST */

.kol-faq-list {
	margin-top: 20px;
	list-style: none;
	padding: 0;
}

html.light-mode .kol-faq-item {
	padding: 12px 0;
	border-bottom: 1px solid #e5e7eb;
}

html.light-mode .kol-faq-item:last-child {
	border-bottom: none;
}

html.dark-mode .kol-faq-item {
	padding: 12px 0;
	border-bottom: 1px solid #333;
}

html.dark-mode .kol-faq-item:last-child {
	border-bottom: none;
}

html.light-mode .kol-faq-item h3 {
	margin: 0;
	color: #1f2937;
	font-size: 15px;
	font-weight: 500;
}

html.dark-mode .kol-faq-item h3 {
	margin: 0;
	color: #e0e0e0;
	font-size: 15px;
	font-weight: 500;
}

html.light-mode .kol-faq-item h3 a {
	color: #059669;
	text-decoration: none;
}

html.light-mode .kol-faq-item h3 a:hover {
	color: #047857;
	text-decoration: underline;
}

html.dark-mode .kol-faq-item h3 a {
	color: #4CAF50;
	text-decoration: none;
}

html.dark-mode .kol-faq-item h3 a:hover {
	color: #56ab2f;
	text-decoration: underline;
}

html.light-mode .kol-faq-item-category,
html.light-mode .kol-faq-item-type {
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
	color: #6b7280;
}

html.dark-mode .kol-faq-item-category,
html.dark-mode .kol-faq-item-type {
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
	color: #999;
}

/* END FAQ LIST */

/* START ARCHIVE PAGE */

html.light-mode .archive-kol_faq {
	background-color: #ffffff;
}

html.dark-mode .archive-kol_faq {
	background-color: #1e1e1e;
}

html.light-mode .post-type-archive-kol_faq .kol-faq-archive-header {
	background-color: #f9fafb;
	padding: 30px;
	border-bottom: 2px solid #059669;
	margin-bottom: 30px;
	border-radius: 6px;
}

html.dark-mode .post-type-archive-kol_faq .kol-faq-archive-header {
	background-color: #1a1a1a;
	padding: 30px;
	border-bottom: 2px solid #4CAF50;
	margin-bottom: 30px;
	border-radius: 6px;
}

html.light-mode .post-type-archive-kol_faq .kol-faq-archive-header h1 {
	color: #059669;
	margin: 0 0 10px 0;
}

html.dark-mode .post-type-archive-kol_faq .kol-faq-archive-header h1 {
	color: #4CAF50;
	margin: 0 0 10px 0;
}

html.light-mode .post-type-archive-kol_faq .kol-faq-archive-header p {
	color: #6b7280;
	margin: 0;
}

html.dark-mode .post-type-archive-kol_faq .kol-faq-archive-header p {
	color: #999;
	margin: 0;
}

/* END ARCHIVE PAGE */

/* START METABOX STYLES */

html.light-mode .kol-faq-metabox-wrapper {
	background-color: #f9fafb;
	color: #1f2937;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
}

html.dark-mode .kol-faq-metabox-wrapper {
	background-color: #1e1e1e;
	color: #e0e0e0;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #333;
}

html.light-mode .kol-faq-field {
	margin-bottom: 20px;
}

html.dark-mode .kol-faq-field {
	margin-bottom: 20px;
}

html.light-mode .kol-faq-label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #1f2937;
}

html.dark-mode .kol-faq-label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #e0e0e0;
}

html.light-mode .kol-faq-checkbox-label {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

html.dark-mode .kol-faq-checkbox-label {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

html.light-mode .kol-faq-checkbox {
	margin-right: 10px;
}

html.dark-mode .kol-faq-checkbox {
	margin-right: 10px;
}

html.light-mode .kol-faq-input {
	width: 100%;
	padding: 8px;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	color: #1f2937;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
}

html.dark-mode .kol-faq-input {
	width: 100%;
	padding: 8px;
	background-color: #2a2a2a;
	border: 1px solid #444;
	color: #e0e0e0;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
}

html.light-mode .kol-faq-input:focus {
	border-color: #059669;
	outline: none;
	box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.1);
}

html.dark-mode .kol-faq-input:focus {
	border-color: #4CAF50;
	outline: none;
	box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

html.light-mode .kol-faq-help-text {
	display: block;
	color: #6b7280;
	font-size: 13px;
	margin-top: 4px;
}

html.dark-mode .kol-faq-help-text {
	display: block;
	color: #999;
	font-size: 13px;
	margin-top: 4px;
}

html.light-mode .kol-faq-nested-wrapper {
	background-color: #ffffff;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
}

html.dark-mode .kol-faq-nested-wrapper {
	background-color: #1a1a1a;
	padding: 12px;
	border-radius: 4px;
	border: 1px solid #333;
}

html.light-mode .kol-faq-subtitle {
	margin-top: 0;
	color: #059669;
	font-size: 16px;
}

html.dark-mode .kol-faq-subtitle {
	margin-top: 0;
	color: #4CAF50;
	font-size: 16px;
}

html.light-mode .kol-faq-button-item {
	background-color: #f3f4f6;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	border-left: 3px solid #059669;
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 8px;
	align-items: center;
}

html.dark-mode .kol-faq-button-item {
	background-color: #252525;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	border-left: 3px solid #4CAF50;
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 8px;
	align-items: center;
}

html.light-mode .kol-faq-button-label-input {
	grid-column: 1;
}

html.light-mode .kol-faq-button-points-input {
	grid-column: 2;
}

html.dark-mode .kol-faq-button-label-input {
	grid-column: 1;
}

html.dark-mode .kol-faq-button-points-input {
	grid-column: 2;
}

/* END METABOX STYLES */

/* START HELP / BBCODE */

html.light-mode .kol-faq-archive-page {
	background: #f3f4f6;
	color: #1f2937;
}

html.dark-mode .kol-faq-archive-page {
	background: #1a1a1a;
	color: #e0e0e0;
}

html.light-mode .kol-faq-archive-inner,
html.dark-mode .kol-faq-archive-inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px 0;
}

.kol-faq-admin-help .kol-faq-help-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 18px 0;
}

.kol-faq-admin-help .kol-faq-help-card {
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 16px;
}

.kol-faq-admin-help code {
	user-select: all;
}

.kol-faq-category-list {
	column-width: 260px;
}

html.light-mode .kol-faq-help-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 15px;
	border: 2px solid #00cc99;
	border-radius: 6px;
	background: linear-gradient(#ccfff6, #99ffe8);
	box-shadow: 0 0 0 3px rgba(0, 204, 153, 0.15), 0 4px 8px rgba(0, 204, 153, 0.2);
	color: #007755;
	font-weight: 700;
	line-height: 32px;
	text-decoration: none;
}

html.dark-mode .kol-faq-help-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 15px;
	border: 2px solid #00cc99;
	border-radius: 6px;
	background: linear-gradient(#ccfff6, #99ffe8);
	box-shadow: 0 0 0 3px rgba(0, 204, 153, 0.15), 0 4px 8px rgba(0, 204, 153, 0.2);
	color: #007755;
	font-weight: 700;
	line-height: 32px;
	text-decoration: none;
}

html.light-mode .kol-faq-help-button:hover,
html.light-mode .kol-faq-help-button:focus,
html.dark-mode .kol-faq-help-button:hover,
html.dark-mode .kol-faq-help-button:focus {
	color: #007755;
	text-decoration: none;
}

html.light-mode .kol-faq-home {
	display: grid;
	grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	color: #1f2937;
	height: 600px;
	overflow: hidden;
}

html.dark-mode .kol-faq-home {
	display: grid;
	grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	color: #e0e0e0;
	height: 600px;
	overflow: hidden;
}

html.light-mode .kol-faq-layout {
	display: grid;
	grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	color: #1f2937;
	height: 600px;
	overflow: hidden;
}

html.dark-mode .kol-faq-layout {
	display: grid;
	grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	color: #e0e0e0;
	height: 600px;
	overflow: hidden;
}

html.light-mode .kol-faq-layout-content,
html.dark-mode .kol-faq-layout-content {
	min-width: 0;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 8px;
	scrollbar-width: thin;
}

html.light-mode .kol-faq-home-menu {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 10px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
}

html.dark-mode .kol-faq-home-menu {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 10px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
}

html.light-mode .kol-faq-home-menu h2 {
	margin: 0 0 10px;
	color: #1f2937;
	font-size: 16px;
	line-height: 1.25;
}

html.dark-mode .kol-faq-home-menu h2 {
	margin: 0 0 10px;
	color: #e0e0e0;
	font-size: 16px;
	line-height: 1.25;
}

html.light-mode .kol-faq-home-menu nav,
html.dark-mode .kol-faq-home-menu nav {
	display: grid;
	gap: 8px;
}

html.light-mode .kol-faq-home-menu-link {
	display: flex;
	align-items: center;
	min-height: 32px;
	padding: 0 15px;
	border-top: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #b0b0b0;
	border-bottom: 1px solid #b0b0b0;
	border-radius: 6px;
	background: linear-gradient(#e2e2e2, #d4d4d4);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
	color: #2d2d2d;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
}

html.dark-mode .kol-faq-home-menu-link {
	display: flex;
	align-items: center;
	min-height: 32px;
	padding: 0 15px;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	border-right: 1px solid #282828;
	border-bottom: 1px solid #282828;
	border-radius: 6px;
	background: linear-gradient(#383838, #343434);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
}

html.light-mode .kol-faq-home-menu-link:hover,
html.light-mode .kol-faq-home-menu-link:focus {
	color: #2d2d2d;
	text-decoration: none;
}

html.dark-mode .kol-faq-home-menu-link:hover,
html.dark-mode .kol-faq-home-menu-link:focus {
	color: #fff;
	text-decoration: none;
}

html.light-mode .kol-faq-home-content,
html.dark-mode .kol-faq-home-content {
	display: grid;
	gap: 16px;
	min-width: 0;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 8px;
	scrollbar-width: thin;
}

html.light-mode .kol-faq-home-menu,
html.light-mode .kol-faq-home-content,
html.light-mode .kol-faq-layout-content {
	scrollbar-color: #b0b0b0 #f3f4f6;
}

html.dark-mode .kol-faq-home-menu,
html.dark-mode .kol-faq-home-content,
html.dark-mode .kol-faq-layout-content {
	scrollbar-color: #555 #2a2a2a;
}

html.light-mode .kol-faq-home-menu::-webkit-scrollbar,
html.light-mode .kol-faq-home-content::-webkit-scrollbar,
html.light-mode .kol-faq-layout-content::-webkit-scrollbar,
html.dark-mode .kol-faq-home-menu::-webkit-scrollbar,
html.dark-mode .kol-faq-home-content::-webkit-scrollbar,
html.dark-mode .kol-faq-layout-content::-webkit-scrollbar {
	width: 10px;
}

html.light-mode .kol-faq-home-menu::-webkit-scrollbar-track,
html.light-mode .kol-faq-home-content::-webkit-scrollbar-track,
html.light-mode .kol-faq-layout-content::-webkit-scrollbar-track {
	background: #f3f4f6;
	border-radius: 6px;
}

html.dark-mode .kol-faq-home-menu::-webkit-scrollbar-track,
html.dark-mode .kol-faq-home-content::-webkit-scrollbar-track,
html.dark-mode .kol-faq-layout-content::-webkit-scrollbar-track {
	background: #2a2a2a;
	border-radius: 6px;
}

html.light-mode .kol-faq-home-menu::-webkit-scrollbar-thumb,
html.light-mode .kol-faq-home-content::-webkit-scrollbar-thumb,
html.light-mode .kol-faq-layout-content::-webkit-scrollbar-thumb {
	background: #b0b0b0;
	border: 2px solid #f3f4f6;
	border-radius: 6px;
}

html.dark-mode .kol-faq-home-menu::-webkit-scrollbar-thumb,
html.dark-mode .kol-faq-home-content::-webkit-scrollbar-thumb,
html.dark-mode .kol-faq-layout-content::-webkit-scrollbar-thumb {
	background: #555;
	border: 2px solid #2a2a2a;
	border-radius: 6px;
}

html.light-mode .kol-faq-home-section {
	scroll-margin-top: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 14px;
}

html.dark-mode .kol-faq-home-section {
	scroll-margin-top: 16px;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 14px;
}

html.light-mode .kol-faq-home-section-header,
html.dark-mode .kol-faq-home-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

html.light-mode .kol-faq-home-section-header h2 {
	margin: 0;
	color: #1f2937;
	font-size: 20px;
	line-height: 1.2;
}

html.dark-mode .kol-faq-home-section-header h2 {
	margin: 0;
	color: #e0e0e0;
	font-size: 20px;
	line-height: 1.2;
}

html.light-mode .kol-faq-home-section-header span {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 15px;
	border-top: 1px solid #3d9d3d;
	border-left: 1px solid #3d9d3d;
	border-right: 1px solid #1a4d1a;
	border-bottom: 1px solid #1a4d1a;
	border-radius: 6px;
	background: linear-gradient(#2d7c2d, #1f5f1f);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

html.dark-mode .kol-faq-home-section-header span {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 15px;
	border-top: 1px solid #3d9d3d;
	border-left: 1px solid #3d9d3d;
	border-right: 1px solid #1a4d1a;
	border-bottom: 1px solid #1a4d1a;
	border-radius: 6px;
	background: linear-gradient(#2d7c2d, #1f5f1f);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

html.light-mode .kol-faq-home-items,
html.dark-mode .kol-faq-home-items {
	display: grid;
	gap: 10px;
}

html.light-mode .kol-faq-home-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
}

html.dark-mode .kol-faq-home-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	background: #2a2a2a;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 12px;
}

html.light-mode .kol-faq-home-item h3,
html.dark-mode .kol-faq-home-item h3 {
	margin: 0 0 5px;
	font-size: 16px;
	line-height: 1.3;
}

html.light-mode .kol-faq-home-item h3 a {
	color: #1f2937;
	text-decoration: none;
}

html.dark-mode .kol-faq-home-item h3 a {
	color: #e0e0e0;
	text-decoration: none;
}

html.light-mode .kol-faq-home-item p {
	margin: 0;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.45;
}

html.dark-mode .kol-faq-home-item p {
	margin: 0;
	color: #c7c7c7;
	font-size: 14px;
	line-height: 1.45;
}

html.light-mode .kol-faq-home-read-button,
html.dark-mode .kol-faq-home-read-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 15px;
	border-top: 1px solid #3d9d3d;
	border-left: 1px solid #3d9d3d;
	border-right: 1px solid #1a4d1a;
	border-bottom: 1px solid #1a4d1a;
	border-radius: 6px;
	background: linear-gradient(#2d7c2d, #1f5f1f);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
	color: #fff;
	font-weight: 700;
	line-height: 32px;
	text-decoration: none;
	white-space: nowrap;
}

html.light-mode .kol-faq-home-read-button:hover,
html.light-mode .kol-faq-home-read-button:focus,
html.dark-mode .kol-faq-home-read-button:hover,
html.dark-mode .kol-faq-home-read-button:focus {
	color: #fff;
	text-decoration: none;
}

html.light-mode .kol-faq-home-empty {
	margin: 0;
	color: #4b5563;
}

html.dark-mode .kol-faq-home-empty {
	margin: 0;
	color: #c7c7c7;
}

html.light-mode .kol-faq-single-tax {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	color: #1f2937;
}

html.dark-mode .kol-faq-single-tax {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #333;
	color: #e0e0e0;
}

html.light-mode .kol-faq-single-tax a {
	color: #059669;
	text-decoration: none;
}

html.dark-mode .kol-faq-single-tax a {
	color: #4CAF50;
	text-decoration: none;
}

html.light-mode .kol-faq-single-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid #e5e7eb;
}

html.dark-mode .kol-faq-single-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid #333;
}

html.light-mode .kol-faq-single-nav div:last-child,
html.dark-mode .kol-faq-single-nav div:last-child {
	text-align: right;
}

html.light-mode .kol-faq-single-nav a,
html.dark-mode .kol-faq-single-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 15px;
	border-top: 1px solid #3d9d3d;
	border-left: 1px solid #3d9d3d;
	border-right: 1px solid #1a4d1a;
	border-bottom: 1px solid #1a4d1a;
	border-radius: 6px;
	background: linear-gradient(#2d7c2d, #1f5f1f);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
	color: #fff;
	font-weight: 700;
	line-height: 32px;
	text-decoration: none;
}

/* END HELP / BBCODE */

/* START RESPONSIVE */

@media (max-width: 768px) {
	html.light-mode .kol-faq-home,
	html.dark-mode .kol-faq-home,
	html.light-mode .kol-faq-layout,
	html.dark-mode .kol-faq-layout {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
		overflow: visible;
	}

	html.light-mode .kol-faq-home-menu,
	html.dark-mode .kol-faq-home-menu {
		position: static;
		max-height: 280px;
	}

	html.light-mode .kol-faq-home-content,
	html.dark-mode .kol-faq-home-content,
	html.light-mode .kol-faq-layout-content,
	html.dark-mode .kol-faq-layout-content {
		height: auto;
		overflow: visible;
		padding-right: 0;
	}

	html.light-mode .kol-faq-home-item,
	html.dark-mode .kol-faq-home-item {
		grid-template-columns: 1fr;
	}

	html.light-mode .kol-faq-home-read-button,
	html.dark-mode .kol-faq-home-read-button {
		width: max-content;
	}

	html.light-mode .kol-faq-single-nav,
	html.dark-mode .kol-faq-single-nav {
		grid-template-columns: 1fr;
	}

	html.light-mode .kol-faq-single-nav div:last-child,
	html.dark-mode .kol-faq-single-nav div:last-child {
		text-align: left;
	}

	.kol-faq-admin-help .kol-faq-help-grid {
		grid-template-columns: 1fr;
	}

	.kol-faq-list {
		grid-template-columns: 1fr;
	}
	
	.kol-faq-point-buttons {
		flex-direction: column;
	}
	
	.kol-faq-point-button {
		min-width: auto;
	}
	
	.kol-faq-header h1 {
		font-size: 22px;
	}
	
	.kol-faq-meta {
		flex-wrap: wrap;
	}
	
	.kol-faq-button-item {
		grid-template-columns: 1fr;
	}
	
	.kol-faq-button-label-input {
		grid-column: 1;
	}
	
	.kol-faq-button-points-input {
		grid-column: 1;
	}
}

/* END RESPONSIVE */
