/* START DARK THEME COLOR VARIABLES */
html.dark-mode {
	--bp-primary-bg: #1e1e1e;
	--bp-secondary-bg: #1a1a1a;
	--bp-text-primary: #ffffff;
	--bp-text-secondary: #e0e0e0;
	--bp-text-muted: #b0b0b0;
	--bp-border-default: #3a3a3a;
	--bp-border-emphasis: #4a4a4a;
	--bp-accent-primary: #4CAF50;
	--bp-accent-dark: #2e7d32;
	--bp-accent-gold: #FFD700;
}

html.light-mode {
	--bp-primary-bg: #ffffff;
	--bp-secondary-bg: #f5f5f5;
	--bp-text-primary: #333333;
	--bp-text-secondary: #666666;
	--bp-text-muted: #999999;
	--bp-border-default: #d0d0d0;
	--bp-border-emphasis: #c0c0c0;
	--bp-accent-primary: #4CAF50;
	--bp-accent-dark: #2e7d32;
	--bp-accent-gold: #FF8C00;
}
/* END DARK THEME COLOR VARIABLES */

/* START SEARCH WIDGET STYLES */
.menu-item .kol-search-widget-wrapper {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.menu-item.widget_kol_bp_search_widget,
.yspl_win_widget_nav.widget_kol_bp_search_widget {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

html.dark-mode .kol-search-widget-wrapper {
	padding-top: 20px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	vertical-align: middle !important;
	position: relative;
	width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: center !important;
}

html.light-mode .kol-search-widget-wrapper {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	position: relative;
	width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: center !important;
}

html.dark-mode .kol-search-container,
html.light-mode .kol-search-container {
	position: relative;
	width: 100% !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	max-width: 100% !important;
}

html.dark-mode .kol-search-form {
	display: flex;
	align-items: center;
	background: transparent;
	border: 1px solid #000000;
	border-radius: 23px;
	padding-left: 2px;
	padding-right: 17px;
	padding-top: 0px;
	transition: all 0.2s ease;
	height: auto;
	width: 100%;
	box-shadow: none;
}

html.light-mode .kol-search-form {
	display: flex;
	align-items: center;
	background: transparent;
	border: 1px solid #999999;
	border-radius: 23px;
	padding-left: 2px;
	padding-right: 17px;
	padding-top: 0px;
	transition: all 0.2s ease;
	height: auto;
	width: 100%;
	box-shadow: none;
}

html.dark-mode .kol-search-form:focus-within {
	background: rgba(224, 224, 224, 0.08);
	border-color: #000000;
}

html.light-mode .kol-search-form:focus-within {
	background: rgba(51, 51, 51, 0.05);
	border-color: #666666;
}

html.dark-mode .kol-search-icon {
	padding: 4px 6px 4px 6px;
	color: rgba(224, 224, 224, 0.7);
	font-size: 12px;
	pointer-events: none;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

html.light-mode .kol-search-icon {
	padding: 4px 6px 4px 6px;
	color: rgba(51, 51, 51, 0.7);
	font-size: 12px;
	pointer-events: none;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

html.dark-mode .kol-search-input {
	flex: 1;
	border: none !important;
	outline: none !important;
	background: transparent;
	font-size: 13px;
	color: rgba(224, 224, 224, 0.9);
	padding: 4px 6px 4px 0;
	font-weight: 400;
	min-width: 0;
	box-shadow: none !important;
}

html.light-mode .kol-search-input {
	flex: 1;
	border: none !important;
	outline: none !important;
	background: transparent;
	font-size: 13px;
	color: rgba(51, 51, 51, 0.9);
	padding: 4px 6px 4px 0;
	font-weight: 400;
	min-width: 0;
	box-shadow: none !important;
}

html.dark-mode .kol-search-input::placeholder {
	color: rgba(224, 224, 224, 0.5);
	font-weight: 400;
}

html.light-mode .kol-search-input::placeholder {
	color: rgba(51, 51, 51, 0.5);
	font-weight: 400;
}

html.dark-mode .kol-search-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	background: var(--bp-primary-bg);
	border: 1px solid var(--bp-border-default);
	border-radius: 11px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	animation: slideDownDropdown 0.3s ease forwards;
}

html.light-mode .kol-search-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	background: #f0f0f0;
	border: 1px solid var(--bp-border-default);
	border-radius: 11px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	animation: slideDownDropdown 0.3s ease forwards;
}

@keyframes slideDownDropdown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

html.dark-mode .kol-search-dropdown-inner,
html.light-mode .kol-search-dropdown-inner {
	padding: 8px 0;
}

html.dark-mode .kol-search-loading,
html.light-mode .kol-search-loading {
	padding: 16px;
	text-align: center;
	color: var(--bp-text-muted);
	font-size: 14px;
}

html.dark-mode .kol-search-result-item,
html.light-mode .kol-search-result-item {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	cursor: pointer;
	transition: background 0.2s ease;
	text-decoration: none;
	color: var(--bp-text-secondary);
}

html.dark-mode .kol-search-result-item:hover {
	background: #292929;
}

html.light-mode .kol-search-result-item:hover {
	background: #eeeeee;
}

html.dark-mode .kol-search-result-avatar,
html.light-mode .kol-search-result-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bp-accent-dark);
	margin-right: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--bp-accent-gold);
}

html.dark-mode .kol-search-result-avatar-img,
html.light-mode .kol-search-result-avatar-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-right: 12px;
	object-fit: cover;
	flex-shrink: 0;
}

html.dark-mode .kol-search-result-content,
html.light-mode .kol-search-result-content {
	flex: 1;
	min-width: 0;
}

html.dark-mode .kol-search-result-title,
html.light-mode .kol-search-result-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--bp-text-primary);
	margin: 0 0 2px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

html.dark-mode .kol-search-result-excerpt,
html.light-mode .kol-search-result-excerpt {
	font-size: 13px;
	color: var(--bp-text-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

html.dark-mode .kol-search-result-type,
html.light-mode .kol-search-result-type {
	font-size: 12px;
	color: var(--bp-text-muted);
	text-transform: capitalize;
	margin-left: 8px;
}

html.dark-mode .kol-search-no-results,
html.light-mode .kol-search-no-results {
	padding: 24px;
	text-align: center;
	color: var(--bp-text-muted);
	font-size: 14px;
}

html.dark-mode .kol-search-view-all {
	display: block;
	padding: 12px;
	text-align: center;
	color: var(--bp-accent-primary);
	font-size: 14px;
	font-weight: 500;
	border-top: 1px solid var(--bp-border-default);
	cursor: pointer;
	transition: background 0.2s ease;
}

html.dark-mode .kol-search-view-all:hover {
	background: #292929;
}

html.light-mode .kol-search-view-all {
	display: block;
	padding: 12px;
	text-align: center;
	color: var(--bp-accent-primary);
	font-size: 14px;
	font-weight: 500;
	border-top: 1px solid var(--bp-border-default);
	cursor: pointer;
	transition: background 0.2s ease;
}

html.light-mode .kol-search-view-all:hover {
	background: #f0f0f0;
}
/* END SEARCH WIDGET STYLES */

/* START SEARCH RESULTS PAGE LAYOUT */
html.dark-mode .kol-search-results-page,
html.light-mode .kol-search-results-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

html.dark-mode .kol-search-layout,
html.light-mode .kol-search-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 30px;
}

html.dark-mode .kol-search-sidebar,
html.light-mode .kol-search-sidebar {
	grid-column: 1;
}

html.dark-mode .kol-search-main,
html.light-mode .kol-search-main {
	grid-column: 2;
}

html.dark-mode .kol-search-header,
html.light-mode .kol-search-header {
	margin-bottom: 30px;
}

html.dark-mode .kol-search-header h1,
html.light-mode .kol-search-header h1 {
	font-size: 32px;
	font-weight: 700;
	color: var(--bp-text-primary);
	margin: 0 0 20px 0;
}

html.dark-mode .kol-search-form-large,
html.light-mode .kol-search-form-large {
	display: flex;
	align-items: center;
	background: var(--bp-primary-bg);
	border: 1px solid var(--bp-border-default);
	border-radius: 24px;
	padding: 10px 16px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	gap: 10px;
	width: 100%;
}

html.dark-mode .kol-search-input-large,
html.light-mode .kol-search-input-large {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 17px;
	color: var(--bp-text-secondary);
	padding: 6px 12px;
}

html.dark-mode .kol-search-input-large::placeholder,
html.light-mode .kol-search-input-large::placeholder {
	color: var(--bp-text-muted);
}

html.dark-mode .kol-search-button-large,
html.light-mode .kol-search-button-large {
	background: transparent;
	border: none;
	color: var(--bp-accent-primary);
	cursor: pointer;
	font-size: 18px;
	padding: 6px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

html.dark-mode .kol-search-button-large:hover,
html.light-mode .kol-search-button-large:hover {
	color: var(--bp-accent-gold);
}
/* END SEARCH RESULTS PAGE LAYOUT */

/* START SIDEBAR FILTERS */
html.dark-mode .kol-filter-section,
html.light-mode .kol-filter-section {
	background: var(--bp-primary-bg);
	border: 1px solid var(--bp-border-default);
	border-radius: 11px;
	overflow: hidden;
	margin-bottom: 20px;
}

html.dark-mode .kol-filter-section-title,
html.light-mode .kol-filter-section-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--bp-text-primary);
	padding: 16px;
	margin: 0;
	background: var(--bp-secondary-bg);
	border-bottom: 1px solid var(--bp-border-default);
	display: flex;
	align-items: center;
	gap: 10px;
}

html.dark-mode .kol-filter-section-title i,
html.light-mode .kol-filter-section-title i {
	font-size: 18px;
}

html.dark-mode .kol-filter-list,
html.light-mode .kol-filter-list {
	padding: 8px;
	display: flex;
	flex-direction: column;
}

html.dark-mode .kol-filter-item,
html.dark-mode .kol-people-filter-item,
html.light-mode .kol-filter-item,
html.light-mode .kol-people-filter-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	border-radius: 8px;
	color: var(--bp-text-secondary);
	font-size: 15px;
	font-weight: 500;
	text-align: left;
	width: 100%;
}

html.dark-mode .kol-filter-item i,
html.dark-mode .kol-people-filter-item i,
html.light-mode .kol-filter-item i,
html.light-mode .kol-people-filter-item i {
	font-size: 18px;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
}

html.dark-mode .kol-filter-item:hover,
html.dark-mode .kol-people-filter-item:hover {
	background: rgba(76, 175, 80, 0.1);
	color: var(--bp-accent-primary);
}

html.light-mode .kol-filter-item:hover,
html.light-mode .kol-people-filter-item:hover {
	background: rgba(76, 175, 80, 0.08);
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-filter-item.active,
html.dark-mode .kol-people-filter-item.active {
	background: var(--bp-accent-dark);
	color: var(--bp-accent-gold);
	border-left: 4px solid var(--bp-accent-primary);
	padding-left: 12px;
}

html.light-mode .kol-filter-item.active,
html.light-mode .kol-people-filter-item.active {
	background: #e8f5e9;
	color: var(--bp-accent-primary);
	border-left: 4px solid var(--bp-accent-primary);
	padding-left: 12px;
}

html.dark-mode .kol-filter-item.active i,
html.dark-mode .kol-people-filter-item.active i {
	color: var(--bp-accent-gold);
}

html.light-mode .kol-filter-item.active i,
html.light-mode .kol-people-filter-item.active i {
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-filter-label,
html.light-mode .kol-filter-label {
	flex: 1;
}

html.dark-mode .kol-people-filters,
html.light-mode .kol-people-filters {
	display: none !important;
}

html.dark-mode .kol-people-filters.show,
html.light-mode .kol-people-filters.show {
	display: block !important;
}

html.dark-mode .kol-people-filter-list,
html.light-mode .kol-people-filter-list {
	padding: 8px;
	display: flex;
	flex-direction: column;
}

/* START ACCORDION STYLES */
html.dark-mode .kol-accordion-btn {
	background-color: var(--bp-secondary-bg);
	color: var(--bp-text-secondary);
	cursor: pointer;
	padding: 16px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.3s ease;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--bp-border-default);
}

html.light-mode .kol-accordion-btn {
	background-color: var(--bp-secondary-bg);
	color: var(--bp-text-secondary);
	cursor: pointer;
	padding: 16px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.3s ease;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--bp-border-default);
}

html.dark-mode .kol-accordion-btn:hover {
	background-color: rgba(76, 175, 80, 0.1);
	color: var(--bp-accent-primary);
}

html.light-mode .kol-accordion-btn:hover {
	background-color: rgba(76, 175, 80, 0.08);
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-accordion-btn.active {
	background-color: var(--bp-accent-dark);
	color: var(--bp-accent-gold);
}

html.light-mode .kol-accordion-btn.active {
	background-color: #e8f5e9;
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-accordion-btn i,
html.light-mode .kol-accordion-btn i {
	font-size: 18px;
	width: 24px;
	flex-shrink: 0;
}

html.dark-mode .kol-accordion-panel {
	padding: 0;
	background-color: rgba(0, 0, 0, 0.2);
	display: none;
	overflow: hidden;
}

html.light-mode .kol-accordion-panel {
	padding: 0;
	background-color: rgba(76, 175, 80, 0.05);
	display: none;
	overflow: hidden;
}

html.dark-mode .kol-accordion-option {
	background: transparent;
	color: var(--bp-text-secondary);
	cursor: pointer;
	padding: 12px 16px 12px 48px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid rgba(58, 58, 58, 0.5);
}

html.light-mode .kol-accordion-option {
	background: transparent;
	color: var(--bp-text-secondary);
	cursor: pointer;
	padding: 12px 16px 12px 48px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid rgba(200, 200, 200, 0.5);
}

html.dark-mode .kol-accordion-option:hover {
	background-color: rgba(76, 175, 80, 0.15);
	color: var(--bp-accent-primary);
}

html.light-mode .kol-accordion-option:hover {
	background-color: rgba(76, 175, 80, 0.08);
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-accordion-option.active {
	background-color: var(--bp-accent-dark);
	color: var(--bp-accent-gold);
	border-left: 4px solid var(--bp-accent-primary);
	padding-left: 44px;
}

html.light-mode .kol-accordion-option.active {
	background-color: #e8f5e9;
	color: var(--bp-accent-primary);
	border-left: 4px solid var(--bp-accent-primary);
	padding-left: 44px;
}

html.dark-mode .kol-accordion-option i,
html.light-mode .kol-accordion-option i {
	font-size: 16px;
	width: 18px;
	flex-shrink: 0;
}

/* END ACCORDION STYLES */
/* END SIDEBAR FILTERS */

/* START SEARCH RESULTS CONTENT */
html.dark-mode .kol-search-results-container,
html.light-mode .kol-search-results-container {
	min-height: 300px;
}

html.dark-mode .kol-search-suggestion {
	background: var(--bp-accent-dark);
	border: 1px solid var(--bp-accent-primary);
	border-radius: 11px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	color: var(--bp-accent-gold);
}

html.light-mode .kol-search-suggestion {
	background: #e8f5e9;
	border: 1px solid var(--bp-accent-primary);
	border-radius: 11px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	color: var(--bp-accent-primary);
}

html.dark-mode .kol-search-suggestion a {
	color: var(--bp-accent-gold);
	text-decoration: none;
	font-weight: 500;
}

html.light-mode .kol-search-suggestion a {
	color: var(--bp-accent-primary);
	text-decoration: none;
	font-weight: 500;
}

html.dark-mode .kol-search-suggestion a:hover,
html.light-mode .kol-search-suggestion a:hover {
	text-decoration: underline;
}

html.dark-mode .kol-search-results-list,
html.light-mode .kol-search-results-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

html.dark-mode .kol-search-result-card,
html.light-mode .kol-search-result-card {
	background: var(--bp-primary-bg) !important;
	border: 1px solid var(--bp-border-default) !important;
	border-radius: 11px !important;
	padding: 16px !important;
	transition: none !important;
	overflow: hidden !important;
	transform: none !important;
	box-shadow: none !important;
}

html.dark-mode .kol-search-result-card:hover,
html.light-mode .kol-search-result-card:hover {
	background: var(--bp-primary-bg) !important;
	border: 1px solid var(--bp-border-default) !important;
	transform: none !important;
	box-shadow: none !important;
}

html.dark-mode .kol-search-result-card-header,
html.light-mode .kol-search-result-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	gap: 12px;
}

html.dark-mode .kol-search-result-card-avatar-link,
html.light-mode .kol-search-result-card-avatar-link {
	display: inline-block;
	flex-shrink: 0;
	cursor: pointer;
}

html.dark-mode .kol-search-result-card-avatar,
html.light-mode .kol-search-result-card-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bp-accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--bp-accent-gold);
	flex-shrink: 0;
}

html.dark-mode .kol-search-result-card-avatar-img,
html.light-mode .kol-search-result-card-avatar-img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

html.dark-mode .kol-search-result-card-info,
html.light-mode .kol-search-result-card-info {
	flex: 1;
}

html.dark-mode .kol-search-result-card-info h3,
html.light-mode .kol-search-result-card-info h3 {
	margin: 0 0 4px 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--bp-text-primary);
}

html.dark-mode .kol-search-result-card-username-link,
html.light-mode .kol-search-result-card-username-link {
	color: var(--bp-text-primary) !important;
	text-decoration: none;
	cursor: pointer;
}

html.dark-mode .kol-search-result-card-username-link:hover,
html.light-mode .kol-search-result-card-username-link:hover {
	text-decoration: underline;
	color: var(--bp-accent-gold) !important;
}

/* START FRIEND BADGE */
html.dark-mode .kol-friend-badge {
	display: inline-block;
	background: var(--bp-accent-dark);
	color: var(--bp-accent-gold);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

html.light-mode .kol-friend-badge {
	display: inline-block;
	background: #e8f5e9;
	color: var(--bp-accent-primary);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
/* END FRIEND BADGE */

html.dark-mode .kol-search-result-card-info p,
html.light-mode .kol-search-result-card-info p {
	margin: 0;
	font-size: 13px;
	color: var(--bp-text-muted);
}

html.dark-mode .kol-search-result-card-excerpt,
html.light-mode .kol-search-result-card-excerpt {
	font-size: 15px;
	line-height: 1.5;
	color: var(--bp-text-secondary);
	margin-bottom: 12px;
}

html.dark-mode .kol-search-result-card-footer,
html.light-mode .kol-search-result-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid var(--bp-border-default);
}

html.dark-mode .kol-search-result-card-footer span,
html.light-mode .kol-search-result-card-footer span {
	font-size: 12px;
	color: var(--bp-text-muted) !important;
}

html.dark-mode .kol-search-result-card-link,
html.light-mode .kol-search-result-card-link {
	color: var(--bp-accent-gold) !important;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

html.dark-mode .kol-search-result-card-link:hover {
	text-decoration: underline;
	color: var(--bp-text-primary) !important;
}

html.light-mode .kol-search-result-card-link {
	color: var(--bp-accent-primary) !important;
}

html.light-mode .kol-search-result-card-link:hover {
	text-decoration: underline;
	color: var(--bp-accent-dark) !important;
}

html.dark-mode mark {
	background: var(--bp-accent-gold);
	padding: 0 2px;
	border-radius: 2px;
	color: #000000;
	font-weight: 500;
}

html.light-mode mark {
	background: #FFE082;
	padding: 0 2px;
	border-radius: 2px;
	color: #333333;
	font-weight: 500;
}

html.dark-mode .kol-search-pagination,
html.light-mode .kol-search-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--bp-border-default);
}

html.dark-mode .kol-pagination-btn,
html.light-mode .kol-pagination-btn {
	background: var(--bp-primary-bg);
	border: 1px solid var(--bp-border-default);
	border-radius: 6px;
	padding: 8px 16px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: var(--bp-text-secondary);
	transition: all 0.2s ease;
}

html.dark-mode .kol-pagination-btn:hover {
	background: #292929;
}

html.light-mode .kol-pagination-btn:hover {
	background: #eeeeee;
}

html.dark-mode .kol-pagination-btn.active,
html.light-mode .kol-pagination-btn.active {
	background: var(--bp-accent-dark);
	color: var(--bp-accent-gold);
	border-color: var(--bp-accent-primary);
}

html.dark-mode .kol-pagination-btn:disabled,
html.light-mode .kol-pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

html.dark-mode .kol-search-version,
html.light-mode .kol-search-version {
	text-align: center;
	font-size: 12px;
	color: var(--bp-text-muted);
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--bp-border-default);
}
/* END SEARCH RESULTS CONTENT */

/* START RESPONSIVE */
@media (max-width: 1024px) {
	html.dark-mode .kol-search-layout,
	html.light-mode .kol-search-layout {
		grid-template-columns: 280px 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	html.dark-mode .kol-search-results-page,
	html.light-mode .kol-search-results-page {
		padding: 20px 10px;
	}
	
	html.dark-mode .kol-search-layout,
	html.light-mode .kol-search-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	html.dark-mode .kol-search-sidebar,
	html.light-mode .kol-search-sidebar {
		grid-column: 1;
	}
	
	html.dark-mode .kol-search-main,
	html.light-mode .kol-search-main {
		grid-column: 1;
	}
	
	html.dark-mode .kol-search-header h1,
	html.light-mode .kol-search-header h1 {
		font-size: 24px;
	}
	
	html.dark-mode .kol-filter-list,
	html.light-mode .kol-filter-list {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	html.dark-mode .kol-filter-item,
	html.dark-mode .kol-people-filter-item,
	html.light-mode .kol-filter-item,
	html.light-mode .kol-people-filter-item {
		flex: 1;
		min-width: 120px;
		justify-content: center;
	}
	
	html.dark-mode .kol-search-result-card,
	html.light-mode .kol-search-result-card {
		padding: 12px;
	}
	
	html.dark-mode .kol-search-result-card-header,
	html.light-mode .kol-search-result-card-header {
		flex-wrap: wrap;
	}
}
/* END RESPONSIVE */
