/*
 * Matches the real otadashboard.au internal-tools design system (the
 * ota-kb / ota-card / opm-* kit used by the live Printing dashboard),
 * measured directly off the production page rather than guessed. Override
 * these custom properties in a child theme if that kit ever changes.
 */
.ota-cr-root {
	--ota-cr-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--ota-cr-text: #0f172a;
	--ota-cr-text-muted: #475569;
	--ota-cr-bg: #ffffff;
	--ota-cr-border: #e2e8f0;
	--ota-cr-accent: #1d4ed8;
	--ota-cr-accent-hover: #1e40af;
	--ota-cr-accent-contrast: #ffffff;
	--ota-cr-radius: 10px;
	--ota-cr-shadow: none;
	--ota-cr-shadow-hover: 0 3px 10px rgba(15, 23, 42, 0.08);

	--ota-cr-status-draft: #8c8f94;
	--ota-cr-status-active: #00a32a;
	--ota-cr-status-paused: #dba617;
	--ota-cr-status-completed: #2271b1;
	--ota-cr-status-archived: #c3c4c7;

	/* dataviz skill categorical palette — validated via validate_palette.js,
	   see the comments in spend-chart.js / overview.js for the check results. */
	--ota-cr-chart-planned: #2a78d6;
	--ota-cr-chart-actual: #1baf7a;
	--ota-cr-chart-spend: #2a78d6;
	--ota-cr-chart-revenue: #008300;
	--ota-cr-chart-grid: #e1e0d9;
	--ota-cr-chart-axis: #898781;
	--ota-cr-chart-surface: #fcfcfb;

	font-family: var(--ota-cr-font);
	color: var(--ota-cr-text);
	/* Deliberately no max-width/margin:auto here. This is meant to embed
	   inside whatever content column the theme or page builder (Kubio, on
	   the live site) already provides — adding a second, independent
	   centering context on top of the theme's own caused visible
	   misalignment against the page title and other page elements. Fill
	   the parent; let the parent own width and centering. */
	width: 100%;
	box-sizing: border-box;
}

.ota-cr-root * {
	box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
	.ota-cr-root {
		--ota-cr-chart-planned: #3987e5;
		--ota-cr-chart-actual: #199e70;
		--ota-cr-chart-spend: #3987e5;
		--ota-cr-chart-surface: #1a1a19;
	}
}

.ota-cr-locked,
.ota-cr-empty {
	color: var(--ota-cr-text-muted);
	padding: 24px;
	text-align: center;
}

.ota-cr-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.ota-cr-filters {
	display: flex;
	gap: 8px;
}

.ota-cr-filter {
	padding: 6px 10px;
	border: 1px solid var(--ota-cr-border);
	border-radius: var(--ota-cr-radius);
	background: var(--ota-cr-bg);
	color: var(--ota-cr-text);
}

.ota-cr-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: var(--ota-cr-radius);
	border: 1px solid var(--ota-cr-border);
	background: var(--ota-cr-bg);
	color: var(--ota-cr-text-muted);
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}

.ota-cr-btn:hover {
	background: #f8fafc;
}

.ota-cr-btn-primary {
	background: var(--ota-cr-accent);
	border-color: var(--ota-cr-accent);
	color: var(--ota-cr-accent-contrast);
}

.ota-cr-btn-primary:hover {
	background: var(--ota-cr-accent-hover);
	border-color: var(--ota-cr-accent-hover);
}

button.ota-cr-btn {
	font-family: inherit;
	font-size: 14px;
	appearance: none;
}

/* "New Campaign" modal — matches the site's own record-editing popout
   pattern (dark overlay, white card, uppercase field labels, Cancel/Save
   footer) rather than looking like a generic wp-admin screen. */
.ota-cr-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	/* High enough to clear the theme's own sticky header (Kubio renders its
	   nav bar with a high z-index of its own) — otherwise a tall modal's
	   header/title renders underneath it instead of on top. */
	z-index: 999999;
	padding: 24px;
}

.ota-cr-modal-overlay[hidden] {
	display: none;
}

.ota-cr-modal {
	background: var(--ota-cr-bg);
	border-radius: 18px;
	box-shadow: 0 24px 64px rgba(2, 6, 23, 0.22);
	width: min(700px, 100%);
	max-height: 90vh;
	overflow-y: auto;
}

.ota-cr-modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 28px 20px;
	border-bottom: 1px solid var(--ota-cr-border);
}

.ota-cr-modal-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--ota-cr-text);
}

.ota-cr-modal-close {
	appearance: none;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: var(--ota-cr-text-muted);
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 6px;
	flex-shrink: 0;
}

.ota-cr-modal-close:hover {
	background: rgba(0, 0, 0, 0.06);
}

.ota-cr-modal-body {
	padding: 24px 28px;
}

.ota-cr-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 24px;
}

.ota-cr-form-field.full {
	grid-column: 1 / -1;
}

.ota-cr-form-field label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
	margin-bottom: 6px;
}

.ota-cr-form-field input,
.ota-cr-form-field select,
.ota-cr-form-field textarea {
	width: 100%;
	padding: 9px 11px;
	border: 1px solid #d1d5db;
	border-radius: 9px;
	font-size: 13px;
	font-family: inherit;
	color: var(--ota-cr-text);
	background: var(--ota-cr-bg);
	box-sizing: border-box;
}

.ota-cr-form-field input:focus,
.ota-cr-form-field select:focus,
.ota-cr-form-field textarea:focus {
	border-color: #93c5fd;
	box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2);
	outline: none;
}

.ota-cr-modal-note {
	font-size: 12px;
	color: var(--ota-cr-text-muted);
	margin: 16px 0 0;
}

.ota-cr-modal-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: var(--ota-cr-radius);
	padding: 10px 14px;
	font-size: 13px;
	margin-top: 16px;
}

.ota-cr-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding: 20px 28px;
	border-top: 1px solid var(--ota-cr-border);
}

.ota-cr-btn-cancel {
	background: var(--ota-cr-bg);
	color: var(--ota-cr-text);
}

/* Wider variant for the Edit Campaign and Integrations modals — they
   carry a lot more fields than the New Campaign modal. */
.ota-cr-modal-lg {
	width: min(820px, 100%);
}

.ota-cr-modal-section-title {
	grid-column: 1 / -1;
	margin: 20px 0 4px;
	padding-top: 16px;
	border-top: 1px solid var(--ota-cr-border);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
}

.ota-cr-modal-body > .ota-cr-modal-section-title:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.ota-cr-modal-footer-spacer {
	flex: 1;
}

.ota-cr-edit-wp-admin-link {
	font-size: 12px;
	color: var(--ota-cr-text-muted);
	text-decoration: none;
	align-self: center;
}

.ota-cr-edit-wp-admin-link:hover {
	text-decoration: underline;
}

.ota-cr-toolbar-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Front-end spend-log widget inside the Edit Campaign modal — a fresh
   set of styles rather than reusing wp-admin's, since those are defined
   inline in class-admin.php scoped to the wp-admin meta box only. */
.ota-cr-spend-log-front {
	grid-column: 1 / -1;
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid var(--ota-cr-border);
	border-radius: var(--ota-cr-radius);
	padding: 16px;
	margin-top: 20px;
}

.ota-cr-spend-log-front > label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
	margin-bottom: 6px;
}

.ota-cr-spend-log-table {
	width: 100%;
	border-collapse: collapse;
	margin: 8px 0;
}

.ota-cr-spend-log-table th,
.ota-cr-spend-log-table td {
	text-align: left;
	padding: 4px 8px;
	font-size: 13px;
	border-bottom: 1px solid var(--ota-cr-border);
}

.ota-cr-spend-log-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.ota-cr-spend-log-form input {
	width: auto;
	padding: 6px 10px;
	border: 1px solid var(--ota-cr-border);
	border-radius: 6px;
	font-size: 13px;
}

.ota-cr-spend-log-status {
	font-size: 12px;
	color: var(--ota-cr-text-muted);
}

.ota-cr-modal-import-result {
	margin-top: 16px;
}

.ota-cr-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: 12px;
	overflow: hidden;
}

.ota-cr-table th,
.ota-cr-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid var(--ota-cr-border);
	font-size: 14px;
}

.ota-cr-table th {
	background: #f8fafc;
	font-weight: 700;
	color: var(--ota-cr-text-muted);
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.04em;
}

.ota-cr-table tbody tr:last-child td {
	border-bottom: none;
}

.ota-cr-table tbody tr:hover {
	background: rgba(0, 0, 0, 0.015);
}

.ota-cr-loading {
	text-align: center;
	color: var(--ota-cr-text-muted);
	padding: 24px !important;
}

/* Pastel outlined pills — matches the live site's own .ota-cd countdown
   badges (bg/text/border triplet per state) rather than the solid
   white-on-color fill this used to be, which had no equivalent anywhere
   on otadashboard.au. */
.ota-cr-status {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	border: 1px solid transparent;
}

.ota-cr-status-draft { background: #f1f5f9; color: #475569; border-color: #e2e8f0; }
.ota-cr-status-active { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.ota-cr-status-paused { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.ota-cr-status-completed { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.ota-cr-status-archived { background: #f1f5f9; color: #64748b; border-color: #e2e8f0; }

/* Health flags — same pastel-pill language as the status badges above and
   as the live site's .ota-cd countdown badges (ok/warn/red). */
.ota-cr-flag-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: help;
}

.ota-cr-flag-badge.ota-cr-flag-ok { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.ota-cr-flag-badge.ota-cr-flag-warning { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.ota-cr-flag-badge.ota-cr-flag-risk { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }

/* Dashboard banner variant — distinct class names from the badge above on
   purpose (see git history: equal-specificity clash previously made the
   banner's dark text win over the badge's white text). Now both are pastel
   pills so there's no contrast fight either way. */
.ota-cr-notice-flag {
	border-radius: var(--ota-cr-radius);
	padding: 10px 14px;
	font-size: 13px;
	margin-bottom: 10px;
	border: 1px solid transparent;
}

.ota-cr-notice-flag-warning {
	background: #fffbeb;
	border-color: #fde68a;
	color: #b45309;
}

.ota-cr-notice-flag-risk {
	background: #fef2f2;
	border-color: #fecaca;
	color: #b91c1c;
}

.ota-cr-row-link {
	color: var(--ota-cr-accent);
	text-decoration: none;
	font-weight: 600;
}

.ota-cr-status-select {
	padding: 4px 6px;
	border-radius: var(--ota-cr-radius);
	border: 1px solid var(--ota-cr-border);
}

.ota-cr-row-edit-link {
	appearance: none;
	background: none;
	border: none;
	display: inline-block;
	margin-left: 8px;
	padding: 0;
	font-size: 12px;
	font-family: inherit;
	color: var(--ota-cr-accent);
	text-decoration: none;
	cursor: pointer;
}

.ota-cr-row-edit-link:hover {
	text-decoration: underline;
}

/* Dashboard view */
.ota-cr-dash-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.ota-cr-dash-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}

.ota-cr-dash-header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ota-cr-edit-link {
	font-size: 13px;
	padding: 6px 12px;
}

.ota-cr-description {
	color: var(--ota-cr-text-muted);
	font-size: 14px;
	line-height: 1.5;
	margin: -12px 0 20px;
	max-width: 70ch;
}

.ota-cr-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.ota-cr-tile {
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: 12px;
	box-shadow: var(--ota-cr-shadow);
	padding: 14px 16px;
	transition: box-shadow 0.15s, transform 0.15s;
}

.ota-cr-tile:hover {
	box-shadow: var(--ota-cr-shadow-hover);
	transform: translateY(-1px);
}

.ota-cr-tile-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
	margin-bottom: 4px;
}

.ota-cr-tile-value {
	font-size: 24px;
	font-weight: 700;
}

.ota-cr-tile-value.is-unavailable {
	color: var(--ota-cr-text-muted);
	font-size: 16px;
	font-weight: 500;
}

.ota-cr-funnel {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.ota-cr-funnel-stage {
	display: grid;
	grid-template-columns: 120px 1fr 80px;
	align-items: center;
	gap: 12px;
}

.ota-cr-funnel-bar-track {
	background: rgba(0, 0, 0, 0.04);
	border-radius: var(--ota-cr-radius);
	overflow: hidden;
	height: 22px;
}

.ota-cr-funnel-bar-fill {
	height: 100%;
	background: var(--ota-cr-accent);
}

.ota-cr-date-range-row {
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: var(--ota-cr-radius);
	padding: 12px 14px;
	margin-bottom: 20px;
}

.ota-cr-date-range-row.is-loading {
	opacity: 0.6;
}

.ota-cr-date-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
}

.ota-cr-date-field input[type="date"] {
	font-size: 13px;
	text-transform: none;
	letter-spacing: normal;
	color: var(--ota-cr-text);
	padding: 6px 8px;
	border: 1px solid var(--ota-cr-border);
	border-radius: var(--ota-cr-radius);
	background: var(--ota-cr-bg);
}

.ota-cr-date-range-row .ota-cr-btn {
	padding: 8px 16px;
	font-size: 13px;
}

.ota-cr-btn-secondary {
	background: transparent;
	border-color: transparent;
	text-decoration: underline;
}

.ota-cr-btn-secondary:hover {
	background: transparent;
}

.ota-cr-tiles.is-loading,
.ota-cr-funnel.is-loading {
	opacity: 0.6;
}

.ota-cr-notice {
	background: #fef9c3;
	border: 1px solid #fde047;
	color: #854d0e;
	border-radius: var(--ota-cr-radius);
	padding: 10px 14px;
	font-size: 13px;
	margin-bottom: 20px;
}

/* Campaign detail header — channel/owner/dates/budget/targets/platform IDs */
.ota-cr-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 20px;
}

.ota-cr-detail-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ota-cr-text-muted);
	margin-bottom: 2px;
}

.ota-cr-detail-value {
	font-size: 14px;
	font-weight: 600;
	word-break: break-word;
}

.ota-cr-section-heading {
	font-size: 16px;
	font-weight: 700;
	margin: 28px 0 12px;
}

/* Planned vs Actual line chart */
.ota-cr-chart-wrap {
	position: relative;
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: 12px;
	padding: 16px;
}

.ota-cr-spend-chart-svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
}

.ota-cr-chart-grid {
	stroke: var(--ota-cr-chart-grid);
	stroke-width: 1;
}

.ota-cr-chart-axis-label {
	fill: var(--ota-cr-chart-axis);
	font-size: 11px;
}

.ota-cr-chart-line {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ota-cr-chart-line-planned {
	stroke: var(--ota-cr-chart-planned);
	stroke-dasharray: 5 4;
}

.ota-cr-chart-line-actual {
	stroke: var(--ota-cr-chart-actual);
}

.ota-cr-chart-dot-actual {
	fill: var(--ota-cr-chart-actual);
	stroke: var(--ota-cr-chart-surface);
	stroke-width: 2;
}

.ota-cr-chart-end-label {
	font-size: 11px;
	font-weight: 600;
	fill: var(--ota-cr-text);
}

.ota-cr-chart-crosshair {
	stroke: var(--ota-cr-text-muted);
	stroke-width: 1;
	pointer-events: none;
}

.ota-cr-chart-tooltip {
	position: absolute;
	background: var(--ota-cr-text);
	color: #fff;
	padding: 8px 10px;
	border-radius: 4px;
	font-size: 12px;
	pointer-events: none;
	z-index: 10;
	white-space: nowrap;
}

.ota-cr-chart-tooltip-date {
	font-weight: 700;
	margin-bottom: 4px;
}

.ota-cr-chart-tooltip-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.ota-cr-chart-tooltip-key {
	display: inline-block;
	width: 10px;
	height: 2px;
}

.ota-cr-chart-tooltip-key-planned { background: var(--ota-cr-chart-planned); }
.ota-cr-chart-tooltip-key-actual { background: var(--ota-cr-chart-actual); }

.ota-cr-chart-legend {
	display: flex;
	gap: 16px;
	margin-top: 8px;
	font-size: 13px;
	color: var(--ota-cr-text-muted);
}

.ota-cr-chart-legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.ota-cr-chart-legend-key {
	display: inline-block;
	width: 14px;
	height: 3px;
	border-radius: 2px;
}

.ota-cr-chart-legend-key-planned { background: var(--ota-cr-chart-planned); }
.ota-cr-chart-legend-key-actual { background: var(--ota-cr-chart-actual); }
.ota-cr-chart-legend-key-spend { background: var(--ota-cr-chart-spend); }
.ota-cr-chart-legend-key-revenue { background: var(--ota-cr-chart-revenue); }

/* Campaign Overview / leaderboard */
.ota-cr-tiles-lg .ota-cr-tile-lg .ota-cr-tile-value {
	font-size: 30px;
}

.ota-cr-leaderboard-legend {
	margin-bottom: 12px;
}

.ota-cr-leaderboard {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ota-cr-leaderboard-row {
	display: grid;
	grid-template-columns: 40px 1fr 160px;
	gap: 16px;
	align-items: center;
	background: var(--ota-cr-bg);
	border: 1px solid var(--ota-cr-border);
	border-radius: 12px;
	padding: 14px 16px;
	transition: box-shadow 0.15s, transform 0.15s;
}

.ota-cr-leaderboard-row:hover {
	box-shadow: var(--ota-cr-shadow-hover);
	transform: translateY(-1px);
}

.ota-cr-leaderboard-rank {
	font-size: 14px;
	font-weight: 700;
	color: var(--ota-cr-text-muted);
	text-align: center;
}

.ota-cr-leaderboard-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.ota-cr-leaderboard-bars {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ota-cr-leaderboard-bar-track {
	background: rgba(0, 0, 0, 0.04);
	border-radius: 3px;
	height: 10px;
	overflow: hidden;
}

.ota-cr-leaderboard-bar {
	height: 100%;
	border-radius: 3px;
}

.ota-cr-leaderboard-bar-spend { background: var(--ota-cr-chart-spend); }
.ota-cr-leaderboard-bar-revenue { background: var(--ota-cr-chart-revenue); }

.ota-cr-leaderboard-figures {
	font-size: 12px;
	color: var(--ota-cr-text-muted);
	text-align: right;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.ota-cr-leaderboard-row {
		grid-template-columns: 32px 1fr;
	}
	.ota-cr-leaderboard-figures {
		grid-column: 1 / -1;
		text-align: left;
	}
}

/* Import-from-platform picker */
.ota-cr-import-picker-select-all-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ota-cr-text-muted);
	margin-bottom: 10px;
}

.ota-cr-import-picker-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-height: 360px;
	overflow-y: auto;
}

.ota-cr-import-picker-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid var(--ota-cr-border);
	border-radius: var(--ota-cr-radius);
	cursor: pointer;
}

.ota-cr-import-picker-row:has(input:disabled) {
	cursor: default;
	opacity: 0.6;
}

.ota-cr-import-picker-row-main {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.ota-cr-import-picker-row-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ota-cr-text);
}

.ota-cr-import-picker-row-meta {
	font-size: 12px;
	color: var(--ota-cr-text-muted);
}

.ota-cr-import-picker-note {
	font-size: 11px;
	font-weight: 700;
	color: var(--ota-cr-text-muted);
	background: rgba(0, 0, 0, 0.04);
	padding: 3px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

/* Ad Set breakdown table */
.ota-cr-adset-table td a {
	color: var(--ota-cr-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
}

.ota-cr-adset-table td a:hover {
	text-decoration: underline;
}
