/* ──────────────────────────────────────────────────────────────────
 * SEOPress shared UI primitives
 *
 * Imported once by `ui/index.js`. Each shared admin page picks up the
 * styles transitively through its `import` of any UI primitive.
 *
 * Conventions:
 *   - all classes prefixed with `seopress-ui-`
 *   - colors come from CSS custom properties (design system tokens)
 *   - "strong" text-on-tinted-background variants are derived via
 *     color-mix() from the existing tokens so they track the brand
 *     palette automatically (and any future dark-mode swap just needs
 *     to update the source token)
 *   - state modifiers use `is-*` (e.g. `is-active`, `is-warning`)
 * ────────────────────────────────────────────────────────────────── */

:root {
	/* Darkened text variants derived from the brand tones so a single
	 * token swap (e.g. dark mode) propagates everywhere. */
	--seopress-ui-color-success-text: color-mix( in srgb, var(--colorSuccess, #4ab866) 55%, #000 );
	--seopress-ui-color-warning-text: color-mix( in srgb, var(--colorWarning, #ffba00) 35%, #000 );

	/* Interaction accent for shared interactive primitives (tabs
	 * underline, inline links, focus rings). Owned by the SEOPress
	 * brand so every React admin page renders interactions in the
	 * same purple, regardless of the user's WP admin color scheme.
	 *
	 * Wrapping `--primaryColor` in a single semantic token keeps the
	 * usage sites readable and lets us swap later (e.g. follow the
	 * admin theme color) without touching every consumer.
	 */
	--seopress-ui-color-interaction: var( --primaryColor, #4E21E7 );
}

/* ── Badge ── */

.seopress-ui-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	background: var(--backgroundSecondary, #F2EFFB);
	color: var(--primaryColor, #4E21E7);
	white-space: nowrap;
}

.seopress-ui-badge--pill {
	border-radius: 999px;
	padding: 2px 10px;
}

.seopress-ui-badge--uppercase {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.seopress-ui-badge.is-success {
	background: rgba( 74, 184, 102, 0.15 );
	color: var(--seopress-ui-color-success-text);
}

.seopress-ui-badge.is-warning {
	background: rgba( 255, 186, 0, 0.15 );
	color: var(--seopress-ui-color-warning-text);
}

.seopress-ui-badge.is-low-alert {
	background: rgba( 227, 159, 72, 0.18 );
	color: var(--colorLowAlert, #e39f48);
}

.seopress-ui-badge.is-alert {
	background: rgba( 235, 15, 0, 0.10 );
	color: var(--colorAlert, #eb0f00);
}

.seopress-ui-badge.is-primary {
	background: var(--backgroundSecondary, #F2EFFB);
	color: var(--primaryColor, #4E21E7);
}

.seopress-ui-badge.is-muted {
	background: var(--backgroundSecondary, #F2EFFB);
	color: var(--color, #757575);
}

.seopress-ui-badge.is-neutral {
	background: var(--borderColor, #E6E6E8);
	color: var(--colorDark, #1e1e1e);
}

/* Solid variants used as full-color "tag" badges (white text on a solid
 * background). Useful for "DEPRECATED", "REQUIRED", small status chips
 * inside template/schema cards. */
.seopress-ui-badge--solid.is-low-alert {
	background: var(--colorLowAlert, #e39f48);
	color: var(--colorWhite, #fff);
}

.seopress-ui-badge--solid.is-alert {
	background: var(--colorAlert, #eb0f00);
	color: var(--colorWhite, #fff);
}

.seopress-ui-badge--solid.is-warning {
	background: var(--colorWarning, #ffba00);
	color: var(--colorDark, #1e1e1e);
}

/* ── Link (cell title) ──
 * Inline / cell-title links are admin-standard interactions, so they
 * follow `--seopress-ui-color-interaction` (= the WP user's chosen
 * admin theme color) instead of the SEOPress brand purple. Branded
 * surfaces (KPI scores, badges, promo CTAs) stay on `--primaryColor`. */

.seopress-ui-link {
	color: var(--seopress-ui-color-interaction);
	text-decoration: none;
	font-weight: 600;
}

.seopress-ui-link:hover,
.seopress-ui-link:focus {
	color: var(--seopress-ui-color-interaction);
	text-decoration: underline;
}

.seopress-ui-link--truncate {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}

.seopress-ui-link--muted {
	color: var(--colorDark, #1e1e1e);
	font-weight: 500;
}

.seopress-ui-link--muted:hover,
.seopress-ui-link--muted:focus {
	color: var(--seopress-ui-color-interaction);
	text-decoration: underline;
}

/* ── Loading spinner ── */

.seopress-ui-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
}

.seopress-ui-loading--inline {
	padding: 16px 0;
}

.seopress-ui-loading--small {
	padding: 8px 0;
}

/* ── Progress bar ── */

.seopress-ui-progress {
	width: 100%;
	height: 8px;
	background: var(--backgroundSecondary, #F2EFFB);
	border-radius: 4px;
	overflow: hidden;
}

.seopress-ui-progress--thin {
	height: 6px;
	border-radius: 999px;
}

.seopress-ui-progress__fill {
	height: 100%;
	background: var(--primaryColor, #4E21E7);
	border-radius: inherit;
	transition: width 0.3s ease;
}

.seopress-ui-progress__label {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--colorDark, #1e1e1e);
}

.seopress-ui-progress__hint {
	margin: 4px 0 0;
	font-size: 12px;
	color: var(--color, #757575);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ── Empty state ── */

.seopress-ui-empty-state {
	width: 100%;
	margin: 16px 0;
	padding: 48px 24px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--borderColor, #E6E6E8);
	border-radius: 6px;
}

.seopress-ui-empty-state__title {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--colorDark, #1e1e1e);
}

.seopress-ui-empty-state__desc {
	margin: 0 auto 16px;
	max-width: 480px;
	color: var(--color, #757575);
	font-size: 14px;
}

/* ── DataView page wrapper ── */

.seopress-ui-dataview-wrapper {
	margin: 20px 20px 20px 0;
}

/* ── Editor toggle field (header "enabled" toggle) ── */

.seopress-ui-editor-toggle {
	margin: 0 !important;
	padding: 0 8px !important;
	border-right: 1px solid var(--borderColor, #E6E6E8);
}

.seopress-ui-editor-toggle .components-toggle-control__label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

@media screen and ( max-width: 600px ) {
	.seopress-ui-editor-toggle {
		padding-left: 0 !important;
	}
}

/* ── Dirty badge (modified state) ── */

.seopress-ui-dirty-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--colorWarning, #ffba00);
	color: var(--colorDark, #1e1e1e);
	letter-spacing: 0.3px;
}

/* ── Tabs (lightweight tablist) ──
 * Visual parity with `@wordpress/components` `<TabPanel>` so the shared
 * shell tabs (Site Audit) match the WP-native tabs used by other admin
 * pages (Redirections, etc.). The underline lives on a `::after` ribbon
 * that grows from 0 to 1.5px on the active tab — same mechanic as WP
 * core, recoloured with the SEOPress brand token. */

.seopress-ui-tabs {
	display: flex;
	align-items: stretch;
	flex-direction: row;
	margin-bottom: 20px;
}

.seopress-ui-tabs__tab {
	position: relative;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	height: 48px;
	margin: 0;
	padding: 3px 16px;
	font: inherit;
	font-weight: 400;
	color: var(--colorDark, #1e1e1e);
	cursor: pointer;
	transition: color 0.1s linear;
}

.seopress-ui-tabs__tab:hover {
	color: var(--seopress-ui-color-interaction);
	background: transparent;
}

.seopress-ui-tabs__tab::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	background: var(--seopress-ui-color-interaction);
	height: 0;
	transition: height 0.1s linear;
}

.seopress-ui-tabs__tab.is-active {
	color: var(--seopress-ui-color-interaction);
	font-weight: 500;
}

.seopress-ui-tabs__tab.is-active::after {
	height: 1.5px;
}

.seopress-ui-tabs__tab:focus-visible {
	outline: 2px solid var(--seopress-ui-color-interaction);
	outline-offset: -2px;
}

/* ── Modal action footer (flex-end) ── */

.seopress-ui-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 16px;
}

/* ──────────────────────────────────────────────────────────────────
 * Shared styles for SEOPress PRO DataViews admin pages
 * (schemas, redirections, broken links).
 *
 * Each page imports this stylesheet at the top of its own styles.css.
 * Page-specific styles (badges, sidebars, modals…) stay in the per-page
 * file with the page-prefixed selectors.
 * ──────────────────────────────────────────────────────────────────── */

/* ── License notice positioning override ──
 * `.seopress-notice` (rendered above the page wrap by Free) ships with
 * `position: relative; top: 85px; left: 25px;` — a legacy offset designed
 * to overlay the old jQuery admin header. On the React DataViews pages
 * that offset pushes the notice down into the sticky page header, leaving
 * the notice and the breadcrumb panel visually overlapping. Reset the
 * offset whenever a DataViews page is on screen so the notice flows
 * normally above the wrap. */

.seopress-notice {
	top: 0;
	left: 0;
	width: auto;
	margin: 16px 20px;
}

/* ── Page Header (sticky) ── */

.seopress-dataviews-page-header {
	position: sticky;
	top: 32px; /* WP admin bar height */
	z-index: 50;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	padding: 12px 16px;
	margin-bottom: 20px;
	background: #fff;
	border: 1px solid var(--borderColor, #E6E6E8);
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.04 );
}

@media screen and (max-width: 782px) {
	.seopress-dataviews-page-header {
		top: 46px; /* Mobile WP admin bar is taller */
	}
}

body:not(.admin-bar) .seopress-dataviews-page-header {
	top: 0;
}

/* ── Breadcrumb ── */

.seopress-dataviews-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex: 1 1 240px;
	min-width: 0;
	font-size: 14px;
	color: var(--color, #757575);
	overflow: hidden;
}

.seopress-dataviews-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
}

.seopress-dataviews-breadcrumb__item:not(:last-child) {
	flex-shrink: 0;
}

.seopress-dataviews-breadcrumb__item:last-child {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.seopress-dataviews-breadcrumb__link {
	color: var(--primaryColor, #4E21E7);
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}

.seopress-dataviews-breadcrumb__link:hover {
	text-decoration: underline;
}

.seopress-dataviews-breadcrumb__current {
	display: block;
	color: var(--colorDark, #1e1e1e);
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
	max-width: 100%;
}

.seopress-dataviews-breadcrumb__separator {
	color: var(--borderColor, #E6E6E8);
	margin: 0 2px;
	flex-shrink: 0;
}

.seopress-dataviews-page-header__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	flex: 0 1 auto;
	justify-content: flex-end;
}

@media screen and (max-width: 600px) {
	.seopress-dataviews-breadcrumb {
		flex: 1 1 100%;
	}

	.seopress-dataviews-page-header__actions {
		flex: 1 1 100%;
		justify-content: flex-start;
	}
}

/* ── Snackbar list (portal to body, fixed bottom-right) ──
 *
 * WordPress core sets .components-snackbar-list { position: absolute; width: 100%; }
 * which would otherwise stretch the container across the screen and push
 * notices over the admin sidebar. Re-pin it bottom-right with explicit
 * width: auto so the toast hugs its content.
 *
 * Bottom offset is exposed as a CSS variable so the value tracks any
 * future change (taller chat widget, mobile breakpoint, etc.) from a
 * single place. Default 100px clears a typical bottom-right chat
 * widget (~60-80px tall when collapsed) while keeping the toast in the
 * eye-line near the save action.
 */
:root {
	--seopress-ui-snackbar-bottom-offset: 100px;
}

.components-snackbar-list.seopress-dataviews-snackbar-list {
	position: fixed !important;
	bottom: var( --seopress-ui-snackbar-bottom-offset, 100px ) !important;
	right: 24px !important;
	left: auto !important;
	top: auto !important;
	width: auto !important;
	max-width: calc( 100vw - 48px );
	z-index: 100000 !important;
}

.components-snackbar-list.seopress-dataviews-snackbar-list .components-snackbar {
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.15 );
}

/* ── Delete confirmation modal ── */

.seopress-dataviews-delete-modal p {
	margin: 0 0 16px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.seopress-dataviews-delete-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 8px;
}

/* ── Row actions dropdown cursor ──
 *
 * The DataViews row-actions dropdown renders Menu.Item elements whose
 * styled component uses `all: unset`, which also wipes the cursor. Target
 * the menu items by role (emotion class hashes are unstable) and force
 * a pointer cursor so hovered rows feel clickable.
 */
[role="menuitem"]:not( [aria-disabled="true"] ),
[role="menuitemradio"]:not( [aria-disabled="true"] ),
[role="menuitemcheckbox"]:not( [aria-disabled="true"] ) {
	cursor: pointer !important;
}

/* ── Layout ── */

.seopress-redirections-dataview-wrapper,
.seopress-redirection-editor {
	margin: 20px 20px 20px 0;
}

/* ── View tabs (Redirects / 404 errors / All) ── */

.seopress-redirections-view-tabs {
	margin-bottom: 12px;
}

/* ── Listing cells ── */

.seopress-redirections-muted {
	display: inline-block;
	max-width: 100%;
	color: var(--color, #757575);
	font-size: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}

/* ── Editor: validation summary ── */

.seopress-redirection-validation {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 16px;
}

.seopress-redirection-validation .components-notice {
	margin: 0;
}

.seopress-redirection-validation__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.seopress-redirection-validation__list li {
	margin: 0;
	padding: 2px 0;
	line-height: 1.5;
}

.seopress-redirection-validation__list li + li {
	border-top: 1px solid rgba( 0, 0, 0, 0.05 );
	padding-top: 6px;
	margin-top: 6px;
}

.seopress-redirection-validation__list a {
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
}

/* ── Categories manager modal ── */

.seopress-redirections-categories-modal {
	max-width: 560px;
}

.seopress-redirections-categories-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	border: 1px solid var(--borderColor, #E6E6E8);
	border-radius: 4px;
	max-height: 320px;
	overflow-y: auto;
}

.seopress-redirections-categories-list__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-bottom: 1px solid var(--borderColor, #E6E6E8);
}

.seopress-redirections-categories-list__item:last-child {
	border-bottom: none;
}

.seopress-redirections-categories-list__item .components-base-control {
	flex: 1;
	margin: 0 !important;
}

.seopress-redirections-categories-list__name {
	flex: 1;
	color: var(--colorDark, #1e1e1e);
}

.seopress-redirections-categories-list__actions {
	display: flex;
	gap: 4px;
	flex-shrink: 0;
}

.seopress-redirections-categories-modal__create {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	padding-top: 12px;
	border-top: 1px solid var(--borderColor, #E6E6E8);
}

.seopress-redirections-categories-modal__create .components-base-control {
	flex: 1;
	margin: 0 !important;
}

/* ── Cleanup modal ── */

.seopress-redirections-cleanup-help {
	margin: 0 0 16px;
	color: var(--color, #757575);
	font-size: 13px;
	line-height: 1.5;
}

/* ── Assign-to-category modal ── */

.seopress-redirections-assign-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 16px;
}

/* ── URL tester modal ── */

.seopress-redirections-tester-modal {
	max-width: 640px;
}

.seopress-redirections-tester-modal__help {
	color: var(--color, #757575);
	margin: 0 0 12px;
}

.seopress-redirections-tester-modal__input {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-bottom: 16px;
}

.seopress-redirections-tester-modal__input .components-base-control {
	flex: 1;
	margin: 0 !important;
}

.seopress-redirections-tester-modal__result {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.seopress-redirections-tester-modal__hops {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	counter-reset: hop;
}

.seopress-redirections-tester-modal__hop {
	position: relative;
	padding: 12px;
	border: 1px solid var(--borderColor, #E6E6E8);
	border-radius: 6px;
	background: #fff;
	counter-increment: hop;
}

.seopress-redirections-tester-modal__hop::before {
	content: counter(hop);
	position: absolute;
	top: -8px;
	left: -8px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primaryColor, #4E21E7);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.seopress-redirections-tester-modal__hop-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.seopress-redirections-tester-modal__hop-edit {
	margin-left: auto;
	font-size: 12px;
}

.seopress-redirections-tester-modal__hop-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
}

.seopress-redirections-tester-modal__hop-body code {
	font-size: 12px;
	background: var(--backgroundSecondary, #F2EFFB);
	padding: 1px 6px;
	border-radius: 3px;
	word-break: break-all;
}

/* ── Inline regex tester (editor) ── */

.seopress-redirection-regex-tester {
	margin-top: 12px;
	padding: 12px;
	background: var(--backgroundSecondary, #F2EFFB);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.seopress-redirection-regex-tester .components-notice {
	margin: 0;
}

.seopress-redirection-regex-tester__result {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
}

.seopress-redirection-regex-tester__result code {
	font-size: 12px;
	background: rgba( 255, 255, 255, 0.6 );
	padding: 1px 6px;
	border-radius: 3px;
	word-break: break-all;
}

.seopress-redirection-regex-tester__capture {
	margin-right: 6px;
}

/* ── Layout: categories sidebar + DataViews main ── */

.seopress-redirections-layout {
	display: grid;
	grid-template-columns: 240px minmax( 0, 1fr );
	gap: 16px;
	align-items: flex-start;
}

.seopress-redirections-layout.is-sidebar-hidden {
	grid-template-columns: 1fr;
}

.seopress-redirections-layout__main {
	min-width: 0;
}

@media screen and (max-width: 960px) {
	.seopress-redirections-layout {
		grid-template-columns: 1fr;
	}
}

/* ── Categories sidebar ── */

.seopress-redirections-categories-sidebar {
	background: #fff;
	border: 1px solid var(--borderColor, #E6E6E8);
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.04 );
	overflow: hidden;
	position: sticky;
	top: 92px;
	max-height: calc( 100vh - 112px );
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 960px) {
	.seopress-redirections-categories-sidebar {
		position: static;
		max-height: none;
	}
}

.seopress-redirections-categories-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-bottom: 1px solid var(--borderColorLight, #e0e0e0);
	flex-shrink: 0;
}

.seopress-redirections-categories-sidebar__title {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--color, #757575);
}

.seopress-redirections-categories-sidebar__add.components-button {
	min-width: 24px;
	width: 24px;
	height: 24px;
	padding: 0;
}

.seopress-redirections-categories-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 6px 0;
	overflow-y: auto;
	flex: 1 1 auto;
}

.seopress-redirections-categories-sidebar__list > li {
	margin: 0;
	padding: 0;
}

.seopress-redirections-categories-sidebar__row {
	display: flex;
	align-items: center;
	padding-inline-end: 8px;
	gap: 2px;
}

.seopress-redirections-categories-sidebar__row > .components-dropdown {
	visibility: hidden;
	flex-shrink: 0;
}

.seopress-redirections-categories-sidebar__row:hover > .components-dropdown,
.seopress-redirections-categories-sidebar__row:focus-within > .components-dropdown,
.seopress-redirections-categories-sidebar__row.is-selected > .components-dropdown {
	visibility: visible;
}

.seopress-redirections-categories-sidebar__menu .components-button {
	min-width: 24px;
	width: 24px;
	height: 24px;
	padding: 0;
}

.seopress-redirections-categories-sidebar__item {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	padding: 6px 8px;
	background: transparent;
	border: 0;
	border-radius: 4px;
	color: var(--colorDark, #1e1e1e);
	font-size: 13px;
	font-family: inherit;
	text-align: start;
	cursor: pointer;
	min-height: 32px;
}

/*
 * Hover and selected must look distinct: with the same background a user
 * hovering "All redirections" while another category is selected can't
 * tell which one is the active filter. Hover stays a neutral grey wash;
 * selected uses the brand purple-tint with bold primary text.
 */
.seopress-redirections-categories-sidebar__item:hover {
	background: rgba( 0, 0, 0, 0.04 );
}

.seopress-redirections-categories-sidebar__item.is-selected,
.seopress-redirections-categories-sidebar__row.is-selected .seopress-redirections-categories-sidebar__item,
.seopress-redirections-categories-sidebar__item.is-selected:hover,
.seopress-redirections-categories-sidebar__row.is-selected .seopress-redirections-categories-sidebar__item:hover {
	background: var(--backgroundSecondary, #F2EFFB);
	color: var(--primaryColor, #4E21E7);
	font-weight: 600;
}

.seopress-redirections-categories-sidebar__item:focus-visible {
	outline: 2px solid var(--primaryColor, #4E21E7);
	outline-offset: -2px;
}

.seopress-redirections-categories-sidebar__item-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.seopress-redirections-categories-sidebar__item-count {
	flex-shrink: 0;
	display: inline-block;
	min-width: 22px;
	padding: 0 6px;
	background: var(--borderColorLight, #e0e0e0);
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	color: var(--color, #757575);
	text-align: center;
	font-variant-numeric: tabular-nums;
	line-height: 18px;
}

.seopress-redirections-categories-sidebar__item.is-selected .seopress-redirections-categories-sidebar__item-count,
.seopress-redirections-categories-sidebar__row.is-selected .seopress-redirections-categories-sidebar__item-count {
	background: var(--primaryColor, #4E21E7);
	color: #fff;
}

.seopress-redirections-categories-sidebar__loading {
	display: flex;
	justify-content: center;
	padding: 16px 0;
}

.seopress-redirections-categories-sidebar__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 24px 16px;
	text-align: center;
}

.seopress-redirections-categories-sidebar__empty p {
	margin: 0;
	color: var(--color, #757575);
	font-size: 13px;
}

/* ── Category form modal ── */

.seopress-redirections-category-modal__actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 16px;
}

.seopress-redirections-category-modal__error {
	margin: 0;
	padding: 8px 12px;
	background: rgba( 235, 15, 0, 0.08 );
	border-left: 3px solid var(--colorAlert, #eb0f00);
	color: var(--colorAlert, #eb0f00);
	font-size: 13px;
}

