/* START KOL MPR Light Mode */
html.light-mode .kol-mpr-container {
	background: #f9f9f9;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #1f2937;
}

html.light-mode .kol-mpr-rating-section {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 32px;
}

html.light-mode .kol-mpr-rating-display {
	flex: 1;
	min-width: 200px;
}

html.light-mode .kol-mpr-average-rating {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
}

html.light-mode .kol-mpr-rating-value {
	font-size: 32px;
	font-weight: 700;
	color: #10da85;
}

html.light-mode .kol-mpr-rating-max {
	font-size: 14px;
	color: #6b7280;
}

html.light-mode .kol-mpr-rating-count {
	font-size: 12px;
	color: #9ca3af;
	margin-left: 8px;
}

html.light-mode .kol-mpr-rating-stars {
	margin-bottom: 16px;
}

html.light-mode .kol-mpr-stars-static {
	display: flex;
	gap: 4px;
	font-size: 20px;
}

html.light-mode .kol-mpr-star-full {
	color: #fbbf24;
}

html.light-mode .kol-mpr-star-half {
	color: #fbbf24;
}

html.light-mode .kol-mpr-star-empty {
	color: #e5e7eb;
}

html.light-mode .kol-mpr-rating-input {
	flex: 1;
	min-width: 300px;
}

html.light-mode .kol-mpr-rating-input label {
	display: block;
	font-weight: 600;
	margin-bottom: 12px;
	color: #111827;
}

html.light-mode .kol-mpr-stars-interactive {
	display: flex;
	gap: 8px;
	font-size: 24px;
	margin-bottom: 16px;
	cursor: pointer;
}

html.light-mode .kol-mpr-stars-interactive .kol-mpr-star {
	color: #d1d5db;
	cursor: pointer;
	transition: all 0.2s ease;
}

html.light-mode .kol-mpr-stars-interactive .kol-mpr-star:hover,
html.light-mode .kol-mpr-stars-interactive .kol-mpr-star.active {
	color: #10da85;
	transform: scale(1.15);
}

html.light-mode .kol-mpr-anonymous-option {
	margin: 16px 0;
	padding: 12px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
}

html.light-mode .kol-mpr-anonymous-option label {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
}

html.light-mode .kol-mpr-anonymous-option input[type="checkbox"] {
	cursor: pointer;
}

html.light-mode .kol-mpr-rating-action {
	margin-top: 16px;
}

html.light-mode .kol-mpr-delete-rating {
	background: #ef4444;
	color: white;
	border: none;
	padding: 10px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.2s ease;
}

html.light-mode .kol-mpr-delete-rating:hover {
	background: #dc2626;
}

html.light-mode .kol-mpr-comments-section {
	margin-bottom: 24px;
}

html.light-mode .kol-mpr-comments-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px 0;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 8px;
}

html.light-mode .kol-mpr-comment-count {
	font-size: 14px;
	font-weight: 400;
	color: #6b7280;
}

html.light-mode .kol-mpr-comment-form {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
}

html.light-mode .kol-mpr-comment-input {
	width: 100%;
	min-height: 100px;
	padding: 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	margin-bottom: 12px;
}

html.light-mode .kol-mpr-comment-input:focus {
	outline: none;
	border-color: #10da85;
	box-shadow: 0 0 0 3px rgba(16, 218, 133, 0.1);
}

html.light-mode .kol-mpr-comment-anon {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0;
	cursor: pointer;
	font-size: 14px;
}

html.light-mode .kol-mpr-post-comment {
	background: #10da85;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.2s ease;
}

html.light-mode .kol-mpr-post-comment:hover {
	background: #0db870;
}

html.light-mode .kol-mpr-comments-list {
	border-top: 1px solid #e5e7eb;
	padding-top: 24px;
}

html.light-mode .kol-mpr-comment {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}

html.light-mode .kol-mpr-comment-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 13px;
}

html.light-mode .kol-mpr-comment-author {
	font-weight: 600;
	color: #111827;
}

html.light-mode .kol-mpr-comment-time {
	color: #9ca3af;
}

html.light-mode .kol-mpr-comment-body {
	margin-bottom: 12px;
	line-height: 1.6;
	color: #374151;
}

html.light-mode .kol-mpr-comment-body p {
	margin: 0;
}

html.light-mode .kol-mpr-comment-actions {
	display: flex;
	gap: 12px;
	font-size: 12px;
}

html.light-mode .kol-mpr-reply-btn,
html.light-mode .kol-mpr-edit-comment,
html.light-mode .kol-mpr-delete-comment,
html.light-mode .kol-mpr-flag-comment {
	background: transparent;
	border: none;
	color: #10da85;
	cursor: pointer;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

html.light-mode .kol-mpr-reply-btn:hover,
html.light-mode .kol-mpr-edit-comment:hover,
html.light-mode .kol-mpr-delete-comment:hover {
	background: #f0fdf4;
	color: #0db870;
}

html.light-mode .kol-mpr-flag-comment:hover {
	background: #fef2f2;
	color: #ef4444;
}

html.light-mode .kol-mpr-replies {
	margin-top: 16px;
	margin-left: 24px;
	padding-left: 16px;
	border-left: 2px solid #e5e7eb;
}

html.light-mode .kol-mpr-privacy-notice {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e40af;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}

html.light-mode .kol-mpr-widget-photos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
}

html.light-mode .kol-mpr-widget-photo {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: white;
	border: 1px solid #e5e7eb;
}

html.light-mode .kol-mpr-widget-photo a {
	display: block;
	position: relative;
	overflow: hidden;
}

html.light-mode .kol-mpr-widget-photo img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.light-mode .kol-mpr-widget-photo:hover img {
	transform: scale(1.05);
}

html.light-mode .kol-mpr-widget-rating,
html.light-mode .kol-mpr-widget-count {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 6px 8px;
	font-size: 12px;
	font-weight: 500;
}

html.light-mode .kol-mpr-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

html.light-mode .kol-mpr-photo-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

html.light-mode .kol-mpr-photo-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

html.light-mode .kol-mpr-photo-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #f3f4f6;
}

html.light-mode .kol-mpr-photo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.light-mode .kol-mpr-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

html.light-mode .kol-mpr-badge-hot {
	background: #ef4444;
	color: white;
}

html.light-mode .kol-mpr-badge-favorite {
	background: #3b82f6;
	color: white;
}

html.light-mode .kol-mpr-photo-info {
	padding: 12px;
}

html.light-mode .kol-mpr-photo-info h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

html.light-mode .kol-mpr-photo-rating {
	font-size: 12px;
	color: #6b7280;
}

html.light-mode .kol-mpr-rating-count {
	margin-left: 4px;
}

html.light-mode .kol-mpr-loading {
	opacity: 0.6;
	pointer-events: none;
}

html.light-mode .kol-mpr-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 12px 0;
}

html.light-mode .kol-mpr-success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 12px 0;
}

html.light-mode .kol-mpr-gallery-page {
	margin: 30px 0;
}

html.light-mode .kol-mpr-gallery-header {
	margin-bottom: 40px;
	border-bottom: 2px solid #e5e7eb;
	padding-bottom: 20px;
}

html.light-mode .kol-mpr-gallery-header h2 {
	color: #111827;
	font-size: 28px;
	margin: 0 0 20px 0;
}

html.light-mode .kol-mpr-gallery-filters {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

html.light-mode .kol-mpr-filter-select {
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: white;
	color: #1f2937;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

html.light-mode .kol-mpr-filter-select:hover,
html.light-mode .kol-mpr-filter-select:focus {
	border-color: #10da85;
	outline: none;
}

html.light-mode .kol-mpr-gallery-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}

html.light-mode .kol-mpr-gallery-photo-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

html.light-mode .kol-mpr-gallery-photo-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-6px);
}

html.light-mode .kol-mpr-gallery-photo-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #f3f4f6;
	flex-grow: 1;
}

html.light-mode .kol-mpr-gallery-photo-image a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

html.light-mode .kol-mpr-gallery-photo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.light-mode .kol-mpr-gallery-photo-card:hover img {
	transform: scale(1.08);
}

html.light-mode .kol-mpr-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

html.light-mode .kol-mpr-gallery-photo-card:hover .kol-mpr-gallery-overlay {
	opacity: 1;
}

html.light-mode .kol-mpr-overlay-content {
	text-align: center;
	color: white;
}

html.light-mode .kol-mpr-overlay-rating {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

html.light-mode .kol-mpr-overlay-value {
	font-size: 18px;
	font-weight: 600;
}

html.light-mode .kol-mpr-stars-inline {
	display: flex;
	gap: 2px;
	font-size: 12px;
}

html.light-mode .kol-mpr-star-tiny {
	color: #fbbf24;
}

html.light-mode .kol-mpr-view-btn {
	background: #10da85;
	color: white;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s ease;
}

html.light-mode .kol-mpr-view-btn:hover {
	background: #0db870;
}

html.light-mode .kol-mpr-gallery-card-footer {
	padding: 16px;
}

html.light-mode .kol-mpr-gallery-card-footer h3 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

html.light-mode .kol-mpr-gallery-stats {
	display: flex;
	gap: 16px;
	font-size: 13px;
}

html.light-mode .kol-mpr-stat {
	color: #6b7280;
}

html.light-mode .kol-mpr-stat i {
	color: #10da85;
	margin-right: 4px;
}

html.light-mode .kol-mpr-user-ratings-page {
	margin: 30px 0;
}

html.light-mode .kol-mpr-user-ratings-page h2 {
	color: #111827;
	font-size: 28px;
	margin-bottom: 24px;
}

html.light-mode .kol-mpr-rating-stats {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
	display: flex;
	gap: 24px;
	font-size: 14px;
	color: #166534;
}

html.light-mode .kol-mpr-stat-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

html.light-mode .kol-mpr-user-ratings-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}

html.light-mode .kol-mpr-user-rating-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

html.light-mode .kol-mpr-user-rating-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

html.light-mode .kol-mpr-photo-link {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #f3f4f6;
}

html.light-mode .kol-mpr-photo-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.light-mode .kol-mpr-user-rating-card:hover .kol-mpr-photo-link img {
	transform: scale(1.05);
}

html.light-mode .kol-mpr-rating-card-info {
	padding: 16px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

html.light-mode .kol-mpr-rating-card-info h4 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

html.light-mode .kol-mpr-rating-value {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-weight: 600;
	color: #10da85;
}

html.light-mode .kol-mpr-rating-date {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 12px;
}

html.light-mode .kol-mpr-rating-actions {
	margin-top: auto;
}

html.light-mode .kol-mpr-view-photo-btn {
	display: inline-block;
	background: #10da85;
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	transition: background 0.2s ease;
}

html.light-mode .kol-mpr-view-photo-btn:hover {
	background: #0db870;
	text-decoration: none;
}

html.light-mode .kol-mpr-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

html.light-mode .kol-mpr-page-link {
	padding: 8px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	color: #10da85;
	text-decoration: none;
	transition: all 0.2s ease;
}

html.light-mode .kol-mpr-page-link:hover {
	background: #f0fdf4;
	border-color: #10da85;
}

html.light-mode .kol-mpr-page-current {
	padding: 8px 12px;
	background: #10da85;
	color: white;
	border-radius: 6px;
	font-weight: 600;
}

html.light-mode .kol-mpr-no-photos,
html.light-mode .kol-mpr-no-ratings {
	text-align: center;
	padding: 60px 20px;
	color: #6b7280;
}

html.light-mode .kol-mpr-login-prompt {
	text-align: center;
	padding: 40px 20px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 8px;
	color: #1e40af;
}

html.light-mode .kol-mpr-login-prompt a {
	color: #1e40af;
	font-weight: 600;
}
/* END KOL MPR Light Mode */

/* START KOL MPR Dark Mode */
html.dark-mode .kol-mpr-container {
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-rating-section {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid #333;
	padding-bottom: 32px;
}

html.dark-mode .kol-mpr-rating-display {
	flex: 1;
	min-width: 200px;
}

html.dark-mode .kol-mpr-average-rating {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
}

html.dark-mode .kol-mpr-rating-value {
	font-size: 32px;
	font-weight: 700;
	color: #10da85;
}

html.dark-mode .kol-mpr-rating-max {
	font-size: 14px;
	color: #999;
}

html.dark-mode .kol-mpr-rating-count {
	font-size: 12px;
	color: #777;
	margin-left: 8px;
}

html.dark-mode .kol-mpr-rating-stars {
	margin-bottom: 16px;
}

html.dark-mode .kol-mpr-stars-static {
	display: flex;
	gap: 4px;
	font-size: 20px;
}

html.dark-mode .kol-mpr-star-full {
	color: #fbbf24;
}

html.dark-mode .kol-mpr-star-half {
	color: #fbbf24;
}

html.dark-mode .kol-mpr-star-empty {
	color: #444;
}

html.dark-mode .kol-mpr-rating-input {
	flex: 1;
	min-width: 300px;
}

html.dark-mode .kol-mpr-rating-input label {
	display: block;
	font-weight: 600;
	margin-bottom: 12px;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-stars-interactive {
	display: flex;
	gap: 8px;
	font-size: 24px;
	margin-bottom: 16px;
	cursor: pointer;
}

html.dark-mode .kol-mpr-stars-interactive .kol-mpr-star {
	color: #555;
	cursor: pointer;
	transition: all 0.2s ease;
}

html.dark-mode .kol-mpr-stars-interactive .kol-mpr-star:hover,
html.dark-mode .kol-mpr-stars-interactive .kol-mpr-star.active {
	color: #10da85;
	transform: scale(1.15);
}

html.dark-mode .kol-mpr-anonymous-option {
	margin: 16px 0;
	padding: 12px;
	background: #0d2818;
	border: 1px solid #1a4d2e;
	border-radius: 8px;
}

html.dark-mode .kol-mpr-anonymous-option label {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
	color: #a3e4ca;
}

html.dark-mode .kol-mpr-anonymous-option input[type="checkbox"] {
	cursor: pointer;
}

html.dark-mode .kol-mpr-rating-action {
	margin-top: 16px;
}

html.dark-mode .kol-mpr-delete-rating {
	background: #7f1d1d;
	color: #fca5a5;
	border: none;
	padding: 10px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-mpr-delete-rating:hover {
	background: #991b1b;
	color: white;
}

html.dark-mode .kol-mpr-comments-section {
	margin-bottom: 24px;
}

html.dark-mode .kol-mpr-comments-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px 0;
	color: #e0e0e0;
	display: flex;
	align-items: center;
	gap: 8px;
}

html.dark-mode .kol-mpr-comment-count {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}

html.dark-mode .kol-mpr-comment-form {
	background: #252525;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
}

html.dark-mode .kol-mpr-comment-input {
	width: 100%;
	min-height: 100px;
	padding: 12px;
	border: 1px solid #444;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	margin-bottom: 12px;
	background: #1a1a1a;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-comment-input:focus {
	outline: none;
	border-color: #10da85;
	box-shadow: 0 0 0 3px rgba(16, 218, 133, 0.1);
}

html.dark-mode .kol-mpr-comment-anon {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0;
	cursor: pointer;
	font-size: 14px;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-post-comment {
	background: #10da85;
	color: #1a1a1a;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.2s ease;
}

html.dark-mode .kol-mpr-post-comment:hover {
	background: #0db870;
}

html.dark-mode .kol-mpr-comments-list {
	border-top: 1px solid #333;
	padding-top: 24px;
}

html.dark-mode .kol-mpr-comment {
	background: #252525;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}

html.dark-mode .kol-mpr-comment-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 13px;
}

html.dark-mode .kol-mpr-comment-author {
	font-weight: 600;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-comment-time {
	color: #999;
}

html.dark-mode .kol-mpr-comment-body {
	margin-bottom: 12px;
	line-height: 1.6;
	color: #c0c0c0;
}

html.dark-mode .kol-mpr-comment-body p {
	margin: 0;
}

html.dark-mode .kol-mpr-comment-actions {
	display: flex;
	gap: 12px;
	font-size: 12px;
}

html.dark-mode .kol-mpr-reply-btn,
html.dark-mode .kol-mpr-edit-comment,
html.dark-mode .kol-mpr-delete-comment,
html.dark-mode .kol-mpr-flag-comment {
	background: transparent;
	border: none;
	color: #10da85;
	cursor: pointer;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-mpr-reply-btn:hover,
html.dark-mode .kol-mpr-edit-comment:hover,
html.dark-mode .kol-mpr-delete-comment:hover {
	background: #0d2818;
	color: #10da85;
}

html.dark-mode .kol-mpr-flag-comment:hover {
	background: #3b1c1c;
	color: #ff6b6b;
}

html.dark-mode .kol-mpr-replies {
	margin-top: 16px;
	margin-left: 24px;
	padding-left: 16px;
	border-left: 2px solid #333;
}

html.dark-mode .kol-mpr-privacy-notice {
	background: #0f2744;
	border: 1px solid #164e63;
	color: #67e8f9;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}

html.dark-mode .kol-mpr-widget-photos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
}

html.dark-mode .kol-mpr-widget-photo {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #252525;
	border: 1px solid #333;
}

html.dark-mode .kol-mpr-widget-photo a {
	display: block;
	position: relative;
	overflow: hidden;
}

html.dark-mode .kol-mpr-widget-photo img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.dark-mode .kol-mpr-widget-photo:hover img {
	transform: scale(1.05);
}

html.dark-mode .kol-mpr-widget-rating,
html.dark-mode .kol-mpr-widget-count {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.85);
	color: #e0e0e0;
	padding: 6px 8px;
	font-size: 12px;
	font-weight: 500;
}

html.dark-mode .kol-mpr-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

html.dark-mode .kol-mpr-photo-card {
	background: #252525;
	border: 1px solid #333;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

html.dark-mode .kol-mpr-photo-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transform: translateY(-4px);
}

html.dark-mode .kol-mpr-photo-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #1a1a1a;
}

html.dark-mode .kol-mpr-photo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.dark-mode .kol-mpr-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

html.dark-mode .kol-mpr-badge-hot {
	background: #7f1d1d;
	color: #fca5a5;
}

html.dark-mode .kol-mpr-badge-favorite {
	background: #1e3a8a;
	color: #93c5fd;
}

html.dark-mode .kol-mpr-photo-info {
	padding: 12px;
}

html.dark-mode .kol-mpr-photo-info h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 600;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-photo-rating {
	font-size: 12px;
	color: #999;
}

html.dark-mode .kol-mpr-rating-count {
	margin-left: 4px;
}

html.dark-mode .kol-mpr-loading {
	opacity: 0.6;
	pointer-events: none;
}

html.dark-mode .kol-mpr-error {
	background: #3b1c1c;
	border: 1px solid #7f1d1d;
	color: #fca5a5;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 12px 0;
}

html.dark-mode .kol-mpr-success {
	background: #0d2818;
	border: 1px solid #1a4d2e;
	color: #a3e4ca;
	padding: 12px 16px;
	border-radius: 6px;
	margin: 12px 0;
}

html.dark-mode .kol-mpr-gallery-page {
	margin: 30px 0;
}

html.dark-mode .kol-mpr-gallery-header {
	margin-bottom: 40px;
	border-bottom: 2px solid #333;
	padding-bottom: 20px;
}

html.dark-mode .kol-mpr-gallery-header h2 {
	color: #e0e0e0;
	font-size: 28px;
	margin: 0 0 20px 0;
}

html.dark-mode .kol-mpr-gallery-filters {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

html.dark-mode .kol-mpr-filter-select {
	padding: 10px 12px;
	border: 1px solid #444;
	border-radius: 6px;
	background: #252525;
	color: #e0e0e0;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

html.dark-mode .kol-mpr-filter-select:hover,
html.dark-mode .kol-mpr-filter-select:focus {
	border-color: #10da85;
	outline: none;
}

html.dark-mode .kol-mpr-gallery-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}

html.dark-mode .kol-mpr-gallery-photo-card {
	background: #252525;
	border: 1px solid #333;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

html.dark-mode .kol-mpr-gallery-photo-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	transform: translateY(-6px);
}

html.dark-mode .kol-mpr-gallery-photo-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #1a1a1a;
	flex-grow: 1;
}

html.dark-mode .kol-mpr-gallery-photo-image a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

html.dark-mode .kol-mpr-gallery-photo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.dark-mode .kol-mpr-gallery-photo-card:hover img {
	transform: scale(1.08);
}

html.dark-mode .kol-mpr-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

html.dark-mode .kol-mpr-gallery-photo-card:hover .kol-mpr-gallery-overlay {
	opacity: 1;
}

html.dark-mode .kol-mpr-overlay-content {
	text-align: center;
	color: white;
}

html.dark-mode .kol-mpr-overlay-rating {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

html.dark-mode .kol-mpr-overlay-value {
	font-size: 18px;
	font-weight: 600;
}

html.dark-mode .kol-mpr-view-btn {
	background: #10da85;
	color: #1a1a1a;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s ease;
}

html.dark-mode .kol-mpr-view-btn:hover {
	background: #0db870;
}

html.dark-mode .kol-mpr-gallery-card-footer {
	padding: 16px;
}

html.dark-mode .kol-mpr-gallery-card-footer h3 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #e0e0e0;
	line-height: 1.4;
}

html.dark-mode .kol-mpr-gallery-stats {
	display: flex;
	gap: 16px;
	font-size: 13px;
}

html.dark-mode .kol-mpr-stat {
	color: #999;
}

html.dark-mode .kol-mpr-stat i {
	color: #10da85;
	margin-right: 4px;
}

html.dark-mode .kol-mpr-user-ratings-page {
	margin: 30px 0;
}

html.dark-mode .kol-mpr-user-ratings-page h2 {
	color: #e0e0e0;
	font-size: 28px;
	margin-bottom: 24px;
}

html.dark-mode .kol-mpr-rating-stats {
	background: #0d2818;
	border: 1px solid #1a4d2e;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
	display: flex;
	gap: 24px;
	font-size: 14px;
	color: #a3e4ca;
}

html.dark-mode .kol-mpr-stat-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

html.dark-mode .kol-mpr-user-ratings-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}

html.dark-mode .kol-mpr-user-rating-card {
	background: #252525;
	border: 1px solid #333;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

html.dark-mode .kol-mpr-user-rating-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	transform: translateY(-4px);
}

html.dark-mode .kol-mpr-photo-link {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #1a1a1a;
}

html.dark-mode .kol-mpr-photo-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

html.dark-mode .kol-mpr-user-rating-card:hover .kol-mpr-photo-link img {
	transform: scale(1.05);
}

html.dark-mode .kol-mpr-rating-card-info {
	padding: 16px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

html.dark-mode .kol-mpr-rating-card-info h4 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #e0e0e0;
}

html.dark-mode .kol-mpr-rating-value {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-weight: 600;
	color: #10da85;
}

html.dark-mode .kol-mpr-rating-date {
	font-size: 12px;
	color: #777;
	margin-bottom: 12px;
}

html.dark-mode .kol-mpr-rating-actions {
	margin-top: auto;
}

html.dark-mode .kol-mpr-view-photo-btn {
	display: inline-block;
	background: #10da85;
	color: #1a1a1a;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	transition: background 0.2s ease;
}

html.dark-mode .kol-mpr-view-photo-btn:hover {
	background: #0db870;
	text-decoration: none;
}

html.dark-mode .kol-mpr-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #333;
}

html.dark-mode .kol-mpr-page-link {
	padding: 8px 12px;
	border: 1px solid #444;
	border-radius: 6px;
	color: #10da85;
	text-decoration: none;
	transition: all 0.2s ease;
}

html.dark-mode .kol-mpr-page-link:hover {
	background: #0d2818;
	border-color: #10da85;
}

html.dark-mode .kol-mpr-page-current {
	padding: 8px 12px;
	background: #10da85;
	color: #1a1a1a;
	border-radius: 6px;
	font-weight: 600;
}

html.dark-mode .kol-mpr-no-photos,
html.dark-mode .kol-mpr-no-ratings {
	text-align: center;
	padding: 60px 20px;
	color: #777;
}

html.dark-mode .kol-mpr-login-prompt {
	text-align: center;
	padding: 40px 20px;
	background: #0f2744;
	border: 1px solid #164e63;
	border-radius: 8px;
	color: #67e8f9;
}

html.dark-mode .kol-mpr-login-prompt a {
	color: #67e8f9;
	font-weight: 600;
}
/* END KOL MPR Dark Mode */
