/* START PAGE COMMENTS SECTION */

html.dark-mode .kol-pec-page-section {
	background-color: #1e1e1e;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 30px 20px;
	margin: 40px 0;
}

html.light-mode .kol-pec-page-section {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px 20px;
	margin: 40px 0;
}

html.dark-mode .kol-pec-section-title {
	color: #e0e0e0;
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 30px 0;
	text-align: center;
	border-bottom: 2px solid #4CAF50;
	padding-bottom: 15px;
}

html.light-mode .kol-pec-section-title {
	color: #333333;
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 30px 0;
	text-align: center;
	border-bottom: 2px solid #2e7d32;
	padding-bottom: 15px;
}

html.dark-mode .kol-pec-page-no-comments {
	text-align: center;
	color: #888;
	font-size: 14px;
	padding: 40px 20px;
}

html.light-mode .kol-pec-page-no-comments {
	text-align: center;
	color: #999999;
	font-size: 14px;
	padding: 40px 20px;
}

html.dark-mode .kol-pec-page-comments-list,
html.light-mode .kol-pec-page-comments-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 30px;
}

html.dark-mode .kol-pec-page-comment {
	background-color: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 6px;
	padding: 20px;
}

html.light-mode .kol-pec-page-comment {
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 20px;
}

html.dark-mode .kol-pec-page-comment-header,
html.light-mode .kol-pec-page-comment-header {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-page-comment-avatar,
html.light-mode .kol-pec-page-comment-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-page-comment-info,
html.light-mode .kol-pec-page-comment-info {
	flex: 1;
}

html.dark-mode .kol-pec-page-comment-author {
	color: #e0e0e0;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

html.light-mode .kol-pec-page-comment-author {
	color: #333333;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

html.dark-mode .kol-pec-page-comment-author:hover {
	color: #4CAF50;
}

html.light-mode .kol-pec-page-comment-author:hover {
	color: #2e7d32;
}

html.dark-mode .kol-pec-page-comment-date {
	color: #888;
	font-size: 12px;
	margin-top: 3px;
}

html.light-mode .kol-pec-page-comment-date {
	color: #999999;
	font-size: 12px;
	margin-top: 3px;
}

html.dark-mode .kol-pec-page-comment-delete {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 15px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.light-mode .kol-pec-page-comment-delete {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 15px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-page-comment-delete:hover {
	background: #343434;
}

html.light-mode .kol-pec-page-comment-delete:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-page-comment-delete:active,
html.light-mode .kol-pec-page-comment-delete:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-page-comment-content {
	color: #e0e0e0;
	font-size: 14px;
	line-height: 1.6;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 12px;
}

html.light-mode .kol-pec-page-comment-content {
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 12px;
}

html.dark-mode .kol-pec-page-comment-actions,
html.light-mode .kol-pec-page-comment-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	font-size: 12px;
}

html.dark-mode .kol-pec-page-comment-reply-btn {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-page-comment-reply-btn {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-page-comment-reply-btn:hover {
	background: #343434;
}

html.light-mode .kol-pec-page-comment-reply-btn:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-page-comment-reply-btn:active,
html.light-mode .kol-pec-page-comment-reply-btn:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-page-replies {
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 25px;
	border-top: 1px solid #2a2a2a;
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
}

html.light-mode .kol-pec-page-replies {
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 25px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
}

html.dark-mode .kol-pec-page-replies::before {
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	width: 25px;
	height: 20px;
	border: 2px solid #4CAF50;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 25px;
}

html.light-mode .kol-pec-page-replies::before {
	content: '';
	position: absolute;
	left: 0;
	top: -20px;
	width: 25px;
	height: 20px;
	border: 2px solid #2e7d32;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 25px;
}

html.dark-mode .kol-pec-page-reply {
	background-color: #161616;
	border-left: 3px solid #4CAF50;
	border-radius: 4px;
	padding: 12px;
	width: 95%;
}

html.light-mode .kol-pec-page-reply {
	background-color: #f5f5f5;
	border-left: 3px solid #2e7d32;
	border-radius: 4px;
	padding: 12px;
	width: 95%;
}

html.dark-mode .kol-pec-page-reply-header,
html.light-mode .kol-pec-page-reply-header {
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-page-reply-avatar,
html.light-mode .kol-pec-page-reply-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-page-reply-info,
html.light-mode .kol-pec-page-reply-info {
	flex: 1;
}

html.dark-mode .kol-pec-page-reply-author {
	color: #e0e0e0;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

html.light-mode .kol-pec-page-reply-author {
	color: #333333;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

html.dark-mode .kol-pec-page-reply-author:hover {
	color: #4CAF50;
}

html.light-mode .kol-pec-page-reply-author:hover {
	color: #2e7d32;
}

html.dark-mode .kol-pec-page-reply-date {
	color: #888;
	font-size: 10px;
	margin-top: 2px;
}

html.light-mode .kol-pec-page-reply-date {
	color: #999999;
	font-size: 10px;
	margin-top: 2px;
}

html.dark-mode .kol-pec-page-reply-content {
	color: #e0e0e0;
	font-size: 12px;
	line-height: 1.5;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 8px;
}

html.light-mode .kol-pec-page-reply-content {
	color: #333333;
	font-size: 12px;
	line-height: 1.5;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 8px;
}

html.dark-mode .kol-pec-page-reply-actions,
html.light-mode .kol-pec-page-reply-actions {
	display: flex;
	gap: 8px;
	margin-top: 6px;
	font-size: 10px;
}

html.dark-mode .kol-pec-page-reply-form {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-page-reply-form {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-page-reply-form-wrapper,
html.light-mode .kol-pec-page-reply-form-wrapper {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-page-reply-form-content,
html.light-mode .kol-pec-page-reply-form-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

html.dark-mode .kol-pec-page-reply-textarea {
	width: 100%;
	padding: 10px;
	background-color: #161616;
	border: 1px solid #4CAF50;
	border-radius: 4px;
	color: #e0e0e0;
	font-family: inherit;
	font-size: 13px;
	resize: vertical;
	min-height: 70px;
	max-height: 150px;
	box-sizing: border-box;
}

html.light-mode .kol-pec-page-reply-textarea {
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	border: 1px solid #2e7d32;
	border-radius: 4px;
	color: #333333;
	font-family: inherit;
	font-size: 13px;
	resize: vertical;
	min-height: 70px;
	max-height: 150px;
	box-sizing: border-box;
}

html.dark-mode .kol-pec-page-reply-textarea::placeholder {
	color: #999999;
}

html.light-mode .kol-pec-page-reply-textarea::placeholder {
	color: #cccccc;
}

html.dark-mode .kol-pec-page-reply-textarea:focus {
	outline: none;
	border-color: #56ab2f;
	background-color: #0f0f0f;
}

html.light-mode .kol-pec-page-reply-textarea:focus {
	outline: none;
	border-color: #1b5e20;
	background-color: #f9f9f9;
}

html.dark-mode .kol-pec-page-reply-form-buttons,
html.light-mode .kol-pec-page-reply-form-buttons {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 11px;
}

html.dark-mode .kol-pec-page-reply-submit {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-page-reply-submit {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-page-reply-submit:hover {
	background: #343434;
}

html.light-mode .kol-pec-page-reply-submit:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-page-reply-submit:active,
html.light-mode .kol-pec-page-reply-submit:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-page-reply-cancel {
	display: inline-flex;
	width: fit-content;
	background: #2a2a2a;
	color: #e0e0e0;
	border: 1px solid #202020;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-page-reply-cancel {
	display: inline-flex;
	width: fit-content;
	background: #e8e8e8;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-page-reply-cancel:hover {
	background: #333333;
}

html.light-mode .kol-pec-page-reply-cancel:hover {
	background: #d0d0d0;
}

html.dark-mode .kol-pec-page-reply-cancel:active,
html.light-mode .kol-pec-page-reply-cancel:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-page-reply-char-count {
	color: #888;
	font-size: 10px;
}

html.light-mode .kol-pec-page-reply-char-count {
	color: #999999;
	font-size: 10px;
}

html.dark-mode .kol-pec-page-comments-footer,
html.light-mode .kol-pec-page-comments-footer {
	text-align: center;
	margin: 30px 0;
}

html.dark-mode .kol-pec-view-all-comments {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.light-mode .kol-pec-view-all-comments {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.dark-mode .kol-pec-view-all-comments:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
	text-decoration: none;
}

html.light-mode .kol-pec-view-all-comments:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
	text-decoration: none;
}

html.dark-mode .kol-pec-page-add-comment {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-page-add-comment {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-page-comment-form-wrapper,
html.light-mode .kol-pec-page-comment-form-wrapper {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-page-form-avatar,
html.light-mode .kol-pec-page-form-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	margin-top: 0;
}

html.dark-mode .kol-pec-page-form,
html.light-mode .kol-pec-page-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

html.dark-mode .kol-pec-page-comment-textarea {
	width: 100%;
	padding: 12px;
	background-color: #1a1a1a;
	border: 1px solid #4CAF50;
	border-radius: 4px;
	color: #e0e0e0;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	min-height: 100px;
	max-height: 250px;
	box-sizing: border-box;
}

html.light-mode .kol-pec-page-comment-textarea {
	width: 100%;
	padding: 12px;
	background-color: #ffffff;
	border: 1px solid #2e7d32;
	border-radius: 4px;
	color: #333333;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	min-height: 100px;
	max-height: 250px;
	box-sizing: border-box;
}

html.dark-mode .kol-pec-page-comment-textarea::placeholder {
	color: #999999;
}

html.light-mode .kol-pec-page-comment-textarea::placeholder {
	color: #cccccc;
}

html.dark-mode .kol-pec-page-comment-textarea:focus {
	outline: none;
	border-color: #56ab2f;
	background-color: #161616;
}

html.light-mode .kol-pec-page-comment-textarea:focus {
	outline: none;
	border-color: #1b5e20;
	background-color: #f9f9f9;
}

html.dark-mode .kol-pec-page-form-buttons,
html.light-mode .kol-pec-page-form-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}

html.dark-mode .kol-pec-page-comment-submit {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-page-comment-submit {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-page-comment-submit:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
}

html.light-mode .kol-pec-page-comment-submit:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
}

html.dark-mode .kol-pec-page-comment-submit:active,
html.light-mode .kol-pec-page-comment-submit:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-page-char-count {
	font-size: 12px;
	color: #888;
}

html.light-mode .kol-pec-page-char-count {
	font-size: 12px;
	color: #999999;
}

html.dark-mode .kol-pec-page-login-prompt {
	background-color: #1a1a1a;
	border-radius: 6px;
	padding: 30px;
	text-align: center;
	border: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-page-login-prompt {
	background-color: #f9f9f9;
	border-radius: 6px;
	padding: 30px;
	text-align: center;
	border: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-page-login-prompt p {
	color: #e0e0e0;
	font-size: 14px;
	margin: 0 0 15px 0;
}

html.light-mode .kol-pec-page-login-prompt p {
	color: #333333;
	font-size: 14px;
	margin: 0 0 15px 0;
}

html.dark-mode .kol-pec-page-login-btn {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.light-mode .kol-pec-page-login-btn {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.dark-mode .kol-pec-page-login-btn:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
	text-decoration: none;
}

html.light-mode .kol-pec-page-login-btn:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
	text-decoration: none;
}

/* END PAGE COMMENTS SECTION */
