/*
 * Design tokens and components mirrored from the commercial plugin's admin
 * UI (fancy-chat/assets/src/css/tokens.css + components/*.css) so the
 * customer-facing account dashboard feels like the same product family.
 * Hand-written, no build step — this plugin deploys straight to
 * fancychatbot.com, so there's no bundler in front of it.
 */

.fcl-root,
.fcl-root *,
.fcl-root *::before,
.fcl-root *::after {
	box-sizing: border-box;
}

.fcl-root {
	--fcl-color-primary: #4f46e5;
	--fcl-color-primary-hover: #261cc8;
	--fcl-color-primary-soft: rgba(79, 70, 229, 0.1);
	--fcl-color-on-primary: #ffffff;
	--fcl-color-surface: #ffffff;
	--fcl-color-surface-alt: #f8fafc;
	--fcl-color-border: #e2e8f0;
	--fcl-color-text: #0f172a;
	--fcl-color-text-muted: #64748b;
	--fcl-color-text-subtle: #94a3b8;
	--fcl-color-success: #16a34a;
	--fcl-color-warning-strong: #92400e;
	--fcl-color-warning-soft: rgba(217, 119, 6, 0.08);
	--fcl-color-warning-border: rgba(217, 119, 6, 0.3);
	--fcl-color-danger: #dc2626;
	--fcl-color-danger-strong: #991b1b;
	--fcl-color-danger-soft: rgba(220, 38, 38, 0.06);
	--fcl-color-danger-border: rgba(220, 38, 38, 0.25);
	--fcl-color-danger-icon-bg: rgba(220, 38, 38, 0.12);
	--fcl-color-primary-soft-border: rgba(79, 70, 229, 0.25);

	--fcl-space-1: 4px;
	--fcl-space-2: 8px;
	--fcl-space-3: 12px;
	--fcl-space-4: 16px;
	--fcl-space-5: 24px;
	--fcl-space-6: 32px;

	--fcl-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--fcl-font-family-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--fcl-font-size-xs: 0.75rem;
	--fcl-font-size-sm: 0.8125rem;
	--fcl-font-size-base: 0.9375rem;
	--fcl-font-size-lg: 1.125rem;
	--fcl-font-size-xl: 1.75rem;
	--fcl-font-weight-medium: 500;
	--fcl-font-weight-bold: 700;
	--fcl-line-height-base: 1.5;

	--fcl-radius-sm: 6px;
	--fcl-radius-md: 10px;
	--fcl-radius-lg: 16px;
	--fcl-radius-full: 999px;
	--fcl-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.12);

	--fcl-color-page-bg: #f8fafc;
	--fcl-color-success-soft: rgba(22, 163, 74, 0.12);
	--fcl-color-avatar-bg: rgba(79, 70, 229, 0.12);

	font-family: var(--fcl-font-family);
	font-size: var(--fcl-font-size-base);
	line-height: var(--fcl-line-height-base);
	color: var(--fcl-color-text);
}

/* Page section — centers the whole widget with a max width, regardless of
   whatever width the surrounding page template gives the content area. */
.fcl-page {
	max-width: 960px;
	margin: 0 auto;
	padding: var(--fcl-space-6) var(--fcl-space-4);
	background-color: var(--fcl-color-page-bg);
}

/* The logged-in dashboard has a sidebar + stat-grid layout that needs more
   breathing room than the single-column logged-out login card. */
.fcl-page--dashboard { max-width: 1180px; }

.fcl-account { display: flex; flex-direction: column; gap: var(--fcl-space-4); }

.fcl-page-title {
	margin: 0;
	font-size: var(--fcl-font-size-xl);
	font-weight: var(--fcl-font-weight-bold);
	color: var(--fcl-color-text);
}

/* Shell — sidebar nav + main content, mirroring the commercial plugin's
   admin-shell layout. */
.fcl-shell {
	display: flex;
	align-items: flex-start;
	gap: var(--fcl-space-5);
}
.fcl-shell__sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-1);
	flex-shrink: 0;
	width: 240px;
	padding: var(--fcl-space-3);
	background-color: var(--fcl-color-surface);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-lg);
}
.fcl-shell__header {
	display: flex;
	align-items: center;
	gap: var(--fcl-space-3);
	padding: var(--fcl-space-2) var(--fcl-space-2) var(--fcl-space-4);
	margin-bottom: var(--fcl-space-2);
	border-bottom: 1px solid var(--fcl-color-border);
}
.fcl-shell__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: var(--fcl-radius-full);
	background-color: var(--fcl-color-avatar-bg);
	color: var(--fcl-color-primary);
	font-weight: var(--fcl-font-weight-bold);
	overflow: hidden;
}
.fcl-shell__logo img { width: 100%; height: 100%; object-fit: cover; }
.fcl-shell__greeting { margin: 0; font-size: var(--fcl-font-size-base); font-weight: var(--fcl-font-weight-bold); color: var(--fcl-color-text); }
.fcl-shell__tier { margin: 0; font-size: var(--fcl-font-size-sm); color: var(--fcl-color-text-muted); }
.fcl-shell__nav-item {
	display: flex;
	align-items: center;
	gap: var(--fcl-space-3);
	width: 100%;
	padding: var(--fcl-space-2) var(--fcl-space-3);
	border: none;
	border-radius: var(--fcl-radius-sm);
	background: transparent;
	font-family: var(--fcl-font-family);
	font-size: var(--fcl-font-size-base);
	color: var(--fcl-color-text-muted);
	text-align: left;
	cursor: pointer;
}
.fcl-shell__nav-icon { flex-shrink: 0; width: 18px; height: 18px; }
.fcl-shell__nav-item:hover { background-color: var(--fcl-color-surface-alt); color: var(--fcl-color-text); }
.fcl-shell__nav-item[aria-selected="true"] {
	background-color: var(--fcl-color-primary-soft);
	color: var(--fcl-color-primary);
	font-weight: var(--fcl-font-weight-medium);
}
.fcl-shell__nav-item:focus-visible {
	outline: 2px solid var(--fcl-color-primary);
	outline-offset: 2px;
}
.fcl-shell__main { flex: 1; min-width: 0; }

@media (max-width: 720px) {
	.fcl-shell { flex-direction: column; }
	.fcl-shell__sidebar {
		flex-direction: row;
		width: 100%;
		overflow-x: auto;
	}
}

.fcl-tabpanel { display: flex; flex-direction: column; gap: var(--fcl-space-4); }
.fcl-tabpanel[hidden] { display: none; }

.fcl-account__profile { display: flex; flex-direction: column; gap: 2px; }
.fcl-account__profile-name {
	font-size: var(--fcl-font-size-lg);
	font-weight: var(--fcl-font-weight-bold);
	color: var(--fcl-color-text);
}

.fcl-plan-summary__name { margin: 0; font-weight: var(--fcl-font-weight-bold); color: var(--fcl-color-text); }

/* Profile row — avatar + name/email (left) and an action button (right),
   used on the My Account tab's first card. Chained to .fcl-card__body (not
   just .fcl-profile-row alone) so its flex-direction: row reliably beats
   .fcl-card__body's own flex-direction: column further below — same
   specificity otherwise, and source order alone isn't something to rely on. */
.fcl-card__body.fcl-profile-row { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.fcl-profile-row__identity { display: flex; align-items: center; gap: var(--fcl-space-3); }

/* Plan footer — plan name/date (left) and action buttons (right), shared
   between the My Account plan card and the License tab's footer. */
.fcl-plan-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--fcl-space-3);
}
.fcl-actions-row { display: flex; align-items: center; gap: var(--fcl-space-3); flex-wrap: wrap; justify-content: flex-end; position: relative; }

.fcl-text-link {
	margin-left: var(--fcl-space-2);
	color: var(--fcl-color-primary);
	font-weight: var(--fcl-font-weight-medium);
	text-decoration: none;
}
.fcl-text-link:hover { text-decoration: underline; }

.fcl-inline-meta {
	display: flex;
	align-items: center;
	gap: var(--fcl-space-1);
	margin: 0;
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-text-muted);
}
.fcl-inline-meta svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--fcl-color-text-subtle); }

/* Upgrade Plan — a native <details> disclosure so the tier picker works
   without any JS, styled so its <summary> looks like an outline button and
   its content like a floating panel anchored under it. */
.fcl-upgrade summary {
	list-style: none;
	cursor: pointer;
}
.fcl-upgrade summary::-webkit-details-marker { display: none; }
.fcl-upgrade__panel {
	position: absolute;
	top: calc(100% + var(--fcl-space-2));
	right: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-3);
	width: 260px;
	padding: var(--fcl-space-4);
	background-color: var(--fcl-color-surface);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-md);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* Avatar — initials circle used on the My Account profile row */
.fcl-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: var(--fcl-radius-full);
	background-color: var(--fcl-color-avatar-bg);
	color: var(--fcl-color-primary);
	font-size: var(--fcl-font-size-lg);
	font-weight: var(--fcl-font-weight-bold);
}

/* Status badge — solid pill with a leading dot (e.g. "Active"), distinct
   from .fcl-license-status's plain colored text further down. */
.fcl-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--fcl-space-1);
	padding: 3px var(--fcl-space-3);
	border-radius: var(--fcl-radius-full);
	font-size: var(--fcl-font-size-sm);
	font-weight: var(--fcl-font-weight-medium);
	white-space: nowrap;
}
.fcl-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: var(--fcl-radius-full);
	background-color: currentColor;
}
.fcl-badge--success { background-color: var(--fcl-color-success-soft); color: var(--fcl-color-success); }
.fcl-badge--neutral { background-color: var(--fcl-color-surface-alt); color: var(--fcl-color-text-muted); }
.fcl-badge--warning { background-color: var(--fcl-color-warning-soft); color: var(--fcl-color-warning-strong); }
.fcl-badge--danger { background-color: var(--fcl-color-danger-soft); color: var(--fcl-color-danger-strong); }

/* Chip — outline pill with an icon, used for the "2 / 5 sites" / date /
   tier row on the My Account plan summary. */
.fcl-chip-row { display: flex; flex-wrap: wrap; gap: var(--fcl-space-2); }
.fcl-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--fcl-space-2);
	padding: var(--fcl-space-1) var(--fcl-space-3);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-full);
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-text);
	white-space: nowrap;
}
.fcl-chip svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--fcl-color-text-subtle); }

.fcl-divider { margin: 0; border: none; border-top: 1px solid var(--fcl-color-border); }

/* Stat cards — the Sites Used / Renewal Date / Plan Type row on License */
.fcl-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--fcl-space-4);
}
.fcl-stat-card {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-2);
	padding: var(--fcl-space-4);
	background-color: var(--fcl-color-surface);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-md);
}
.fcl-stat-card__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-text-muted);
}
.fcl-stat-card__label svg { width: 16px; height: 16px; color: var(--fcl-color-text-subtle); }
.fcl-stat-card__value { font-size: var(--fcl-font-size-lg); font-weight: var(--fcl-font-weight-bold); color: var(--fcl-color-text); }
.fcl-stat-card__value span { font-size: var(--fcl-font-size-sm); font-weight: var(--fcl-font-weight-medium); color: var(--fcl-color-text-muted); }
.fcl-stat-card__description { margin: 0; font-size: var(--fcl-font-size-sm); color: var(--fcl-color-text-muted); }

.fcl-progress {
	width: 100%;
	height: 6px;
	border-radius: var(--fcl-radius-full);
	background-color: var(--fcl-color-border);
	overflow: hidden;
}
.fcl-progress__bar { height: 100%; background-color: var(--fcl-color-primary); border-radius: var(--fcl-radius-full); }

/* Note link — small inline link with a leading icon, e.g. "3 sites
   remaining on your plan" under the Manage Sites table. */
.fcl-note-link {
	display: inline-flex;
	align-items: center;
	gap: var(--fcl-space-2);
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-primary);
	text-decoration: none;
}
.fcl-note-link svg { flex-shrink: 0; width: 16px; height: 16px; }

/* Release row — one plugin version per card on the Downloads tab. */
.fcl-release {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--fcl-space-4);
	padding: var(--fcl-space-4);
}
.fcl-release--latest { border-color: var(--fcl-color-primary); }
.fcl-release__title { display: flex; align-items: center; gap: var(--fcl-space-3); }
.fcl-release__name { font-size: var(--fcl-font-size-lg); font-weight: var(--fcl-font-weight-bold); color: var(--fcl-color-text); }
.fcl-release__meta { display: flex; align-items: center; gap: var(--fcl-space-5); flex-wrap: wrap; }
.fcl-release__meta-item { display: flex; flex-direction: column; gap: 2px; }
.fcl-release__meta-value { font-size: var(--fcl-font-size-sm); font-weight: var(--fcl-font-weight-medium); color: var(--fcl-color-text); }
.fcl-release .fcl-button svg { width: 16px; height: 16px; }

/* Info box — instructional gray-filled card, e.g. "How to activate a new
   site". Distinct from .fcl-callout: this is a permanent reference panel,
   not a one-off action result. */
.fcl-info-box {
	padding: var(--fcl-space-4);
	background-color: var(--fcl-color-surface-alt);
	border-radius: var(--fcl-radius-md);
}
.fcl-info-box__title { margin: 0 0 var(--fcl-space-2); font-weight: var(--fcl-font-weight-bold); color: var(--fcl-color-text); }
.fcl-info-box ol { margin: 0; padding-left: 1.25em; color: var(--fcl-color-text-muted); font-size: var(--fcl-font-size-sm); }
.fcl-info-box li + li { margin-top: var(--fcl-space-1); }

/* Card — the license unit and the logged-out/no-license wrapper */
.fcl-card {
	background-color: var(--fcl-color-surface);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-md);
}
.fcl-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--fcl-space-3);
	padding: var(--fcl-space-4);
	border-bottom: 1px solid var(--fcl-color-border);
}
.fcl-card__title {
	margin: 0;
	font-size: var(--fcl-font-size-lg);
	font-weight: var(--fcl-font-weight-bold);
	color: var(--fcl-color-text);
}
.fcl-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-3);
	padding: var(--fcl-space-4);
}

/* License key field — an input-styled, read-only-looking box (not a real
   <input>, just a copyable value) with a copy button beside it. */
.fcl-eyebrow {
	font-size: var(--fcl-font-size-xs);
	font-weight: var(--fcl-font-weight-medium);
	color: var(--fcl-color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.fcl-license-key-field { display: flex; flex-direction: column; gap: var(--fcl-space-1); }
.fcl-license-key {
	display: flex;
	align-items: stretch;
	gap: var(--fcl-space-2);
	min-width: 0;
}
.fcl-license-key__value {
	flex: 1;
	min-width: 0;
	padding: var(--fcl-space-2) var(--fcl-space-3);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-sm);
	background-color: var(--fcl-color-surface-alt);
	font-family: var(--fcl-font-family-mono);
	font-size: var(--fcl-font-size-base);
	color: var(--fcl-color-text);
	overflow-wrap: anywhere;
}
.fcl-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-sm);
	background-color: var(--fcl-color-surface);
	color: var(--fcl-color-text-muted);
	cursor: pointer;
}
.fcl-copy-button:hover { background-color: var(--fcl-color-surface-alt); color: var(--fcl-color-text); }
.fcl-copy-button:focus-visible { outline: 2px solid var(--fcl-color-primary); outline-offset: 2px; }
.fcl-copy-button svg { width: 16px; height: 16px; }
.fcl-copy-button.is-copied { color: var(--fcl-color-success); border-color: var(--fcl-color-success); }

/* Small "Copied" tag next to the copy button — empty (so invisible, no
   reserved space) until JS fills it in on a successful copy; the same
   role="status" text change is what a screen reader announces. */
.fcl-copy-tag {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: var(--fcl-radius-full);
	background-color: rgba(22, 163, 74, 0.12);
	color: var(--fcl-color-success);
	font-size: var(--fcl-font-size-sm);
	font-weight: var(--fcl-font-weight-medium);
	white-space: nowrap;
}
.fcl-copy-tag:empty { display: none; }

/* License status — plain colored text, matching the commercial plugin's
   license tab convention (no pill background). */
.fcl-license-status strong { font-weight: var(--fcl-font-weight-bold); }
.fcl-license-status--active strong { color: var(--fcl-color-success); }
.fcl-license-status--inactive strong { color: var(--fcl-color-text-muted); }
.fcl-license-status--expired strong { color: var(--fcl-color-warning-strong); }
.fcl-license-status--disabled strong { color: var(--fcl-color-danger-strong); }

.fcl-field__description {
	margin: 0;
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-text-muted);
}

/* Callout — notices/banners (success, error, info) */
.fcl-callout {
	display: flex;
	align-items: center;
	gap: var(--fcl-space-3);
	padding: var(--fcl-space-3) var(--fcl-space-4);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-md);
	background-color: var(--fcl-color-surface-alt);
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-text);
}
.fcl-callout--success {
	background-color: rgba(22, 163, 74, 0.08);
	border-color: rgba(22, 163, 74, 0.25);
	color: var(--fcl-color-success);
}
.fcl-callout--error {
	background-color: var(--fcl-color-danger-soft);
	border-color: var(--fcl-color-danger-border);
	color: var(--fcl-color-danger-strong);
}
.fcl-callout--info {
	background-color: var(--fcl-color-primary-soft);
	border-color: var(--fcl-color-primary-soft-border);
	color: var(--fcl-color-primary);
}

/* Table — site activations (no equivalent to copy from the commercial
   plugin, which relies on WP_List_Table; built fresh with the same tokens) */
.fcl-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fcl-font-size-sm);
}
.fcl-table th {
	padding: var(--fcl-space-2) var(--fcl-space-3);
	border-bottom: 1px solid var(--fcl-color-border);
	text-align: left;
	font-size: var(--fcl-font-size-xs);
	font-weight: var(--fcl-font-weight-medium);
	color: var(--fcl-color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.fcl-table td {
	padding: var(--fcl-space-2) var(--fcl-space-3);
	border-bottom: 1px solid var(--fcl-color-border);
	color: var(--fcl-color-text);
	vertical-align: middle;
}
.fcl-table tr:last-child td { border-bottom: none; }
.fcl-site-cell { display: inline-flex; align-items: center; gap: var(--fcl-space-2); }
.fcl-site-cell svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--fcl-color-text-subtle); }

/* Form fields — used by the Account Details tab */
.fcl-form-fields {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-4);
}
.fcl-field {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-1);
	min-width: 0;
}
.fcl-field-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--fcl-space-4);
}
.fcl-field__label {
	font-size: var(--fcl-font-size-sm);
	font-weight: var(--fcl-font-weight-medium);
	color: var(--fcl-color-text);
}
.fcl-root .fcl-field__input {
	width: 100%;
	padding: var(--fcl-space-2) var(--fcl-space-3);
	border: 1px solid var(--fcl-color-border);
	border-radius: var(--fcl-radius-sm);
	background-color: var(--fcl-color-surface);
	font-family: var(--fcl-font-family);
	font-size: var(--fcl-font-size-base);
	color: var(--fcl-color-text);
}
.fcl-root .fcl-field__input:focus-visible {
	outline: none;
	border-color: var(--fcl-color-primary);
	box-shadow: 0 0 0 2px var(--fcl-color-primary-soft);
}
.fcl-field__error {
	margin: 0;
	font-size: var(--fcl-font-size-sm);
	color: var(--fcl-color-danger);
}

.fcl-fieldset {
	display: flex;
	flex-direction: column;
	gap: var(--fcl-space-3);
	margin: 0;
	padding: var(--fcl-space-4);
	border: none;
	border-radius: var(--fcl-radius-md);
	background-color: var(--fcl-color-surface-alt);
}
.fcl-fieldset__legend {
	padding: 0 var(--fcl-space-1);
	font-size: var(--fcl-font-size-base);
	font-weight: var(--fcl-font-weight-bold);
	color: var(--fcl-color-text);
}

/* Buttons */
.fcl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--fcl-space-2);
	padding: var(--fcl-space-2) var(--fcl-space-4);
	border: 1px solid transparent;
	border-radius: var(--fcl-radius-sm);
	font-family: var(--fcl-font-family);
	font-size: var(--fcl-font-size-base);
	font-weight: var(--fcl-font-weight-medium);
	line-height: var(--fcl-line-height-base);
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
	.fcl-button { transition: none; }
}
.fcl-button:focus-visible {
	outline: 2px solid var(--fcl-color-primary);
	outline-offset: 2px;
}
.fcl-button--sm {
	padding: var(--fcl-space-1) var(--fcl-space-3);
	font-size: var(--fcl-font-size-sm);
}

.fcl-root .fcl-button--primary {
	background-color: var(--fcl-color-primary);
	color: var(--fcl-color-on-primary);
}
.fcl-root .fcl-button--primary:hover {
	background-color: var(--fcl-color-primary-hover);
	box-shadow: var(--fcl-shadow-sm);
}

.fcl-root .fcl-button--secondary {
	background-color: var(--fcl-color-surface);
	border-color: var(--fcl-color-border);
	color: var(--fcl-color-text);
}
.fcl-root .fcl-button--secondary:hover {
	background-color: var(--fcl-color-surface-alt);
}

.fcl-root .fcl-button--outline {
	background-color: var(--fcl-color-surface);
	border-color: var(--fcl-color-primary);
	color: var(--fcl-color-primary);
}
.fcl-root .fcl-button--outline:hover {
	background-color: var(--fcl-color-primary-soft);
}

.fcl-root .fcl-button--danger {
	background-color: var(--fcl-color-surface);
	border-color: var(--fcl-color-danger);
	color: var(--fcl-color-danger);
}
.fcl-root .fcl-button--danger:hover {
	background-color: var(--fcl-color-danger-icon-bg);
}

.fcl-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
