/* START - Frontend Light Theme */

html.light-mode .kol-site-updates-title {
	color: #1f2937;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px 0;
	padding: 0;
}

html.light-mode .kol-site-updates-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

html.light-mode .kol-update-card {
	background: #ffffff;
	border: 0px 0px 2px rgba(0, 0, 0, 0.1);
	padding: 4px;
	border-radius: 8px;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
	padding: 12px;
}

html.light-mode .widget-update-item {
	background: transparent;
	border: none;
	padding: 4px;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 15px;
}

html.light-mode .widget-update-date {
	color: #1f2937;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 0;
}

html.light-mode .widget-update-date .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	color: #6b7280;
}

html.light-mode .widget-update-lines {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
	color: #1f2937;
}

html.light-mode .widget-update-lines li {
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	line-height: 1.5;
}

html.light-mode .widget-update-lines li .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	color: #6b7280;
	flex-shrink: 0;
	margin-top: 2px;
}

html.light-mode .widget-update-lines li a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.2s ease;
}

html.light-mode .widget-update-lines li a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

html.light-mode .widget-update-view-all {
	border-top: none;
	padding-top: 12px;
	margin-top: 12px;
}

html.light-mode .widget-update-view-all a {
	display: inline-block;
	color: #374151;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	background: #e5e7eb;
	padding: 6px 14px;
	border-radius: 5px;
	transition: background 0.2s ease, color 0.2s ease;
}

html.light-mode .widget-update-view-all a:hover {
	background: #d1d5db;
	color: #1f2937;
	text-decoration: none;
}

html.light-mode .kol-site-updates-pagination {
	margin-top: 22px;
}

html.light-mode .kol-site-updates-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

html.light-mode .kol-site-updates-pagination a,
html.light-mode .kol-site-updates-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 7px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #ffffff;
	color: #1f2937;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

html.light-mode .kol-site-updates-pagination a:hover,
html.light-mode .kol-site-updates-pagination .current {
	border-color: #3b82f6;
	background: #3b82f6;
	color: #ffffff;
	text-decoration: none;
}


/* END - Frontend Light Theme */

/* START - Frontend Dark Theme */

html.dark-mode .kol-site-updates-title {
	color: #e0e0e0;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px 0;
	padding: 0;
}

html.dark-mode .kol-site-updates-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

html.dark-mode .kol-update-card {
	background: #1a1a1a;
	border: 0px 0px 2px rgba(0, 0, 0, 0.1);
	padding: 4px;
	border-radius: 8px;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
	padding: 12px;
}

html.dark-mode .widget-update-item {
	background: transparent;
	border: none;
	padding: 4px;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 15px;
}

html.dark-mode .widget-update-date {
	color: #e0e0e0;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 0;
}

html.dark-mode .widget-update-date .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	color: #9ca3af;
}

html.dark-mode .widget-update-lines {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
	color: #e0e0e0;
}

html.dark-mode .widget-update-lines li {
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	line-height: 1.5;
}

html.dark-mode .widget-update-lines li .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	color: #9ca3af;
	flex-shrink: 0;
	margin-top: 2px;
}

html.dark-mode .widget-update-lines li a {
	color: #60a5fa;
	text-decoration: none;
	transition: color 0.2s ease;
}

html.dark-mode .widget-update-lines li a:hover {
	color: #93c5fd;
	text-decoration: underline;
}

html.dark-mode .widget-update-view-all {
	border-top: none;
	padding-top: 12px;
	margin-top: 12px;
}

html.dark-mode .widget-update-view-all a {
	display: inline-block;
	color: #d1d5db;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	background: #374151;
	padding: 6px 14px;
	border-radius: 5px;
	transition: background 0.2s ease, color 0.2s ease;
}

html.dark-mode .widget-update-view-all a:hover {
	background: #4b5563;
	color: #f3f4f6;
	text-decoration: none;
}

html.dark-mode .kol-site-updates-pagination {
	margin-top: 22px;
}

html.dark-mode .kol-site-updates-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

html.dark-mode .kol-site-updates-pagination a,
html.dark-mode .kol-site-updates-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 7px 12px;
	border: 1px solid #4b5563;
	border-radius: 6px;
	background: #111827;
	color: #e5e7eb;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

html.dark-mode .kol-site-updates-pagination a:hover,
html.dark-mode .kol-site-updates-pagination .current {
	border-color: #60a5fa;
	background: #2563eb;
	color: #ffffff;
	text-decoration: none;
}


/* END - Frontend Dark Theme */
