/**
 * Frontend styles for CODER Indicators
 * Modern dashboard aesthetic
 */

/* ── Design tokens ────────────────────────────────────────────────────────────
   Aligned with coderjuarez.org visual identity (Poppins/Figtree, purple/teal).
   Single source of truth — every component consumes these variables.
   ───────────────────────────────────────────────────────────────────────── */
:root {
	/* Radius scale */
	--ci-radius-card:    10px;  /* Cards, panels — matches site   */
	--ci-radius-tile:     6px;  /* Compact tiles (treemap, etc.)  */
	--ci-radius-control:  4px;  /* Buttons, inputs, badges        */

	/* Borders */
	--ci-border-color: #e2e8f0;
	--ci-border: 1px solid #e2e8f0;

	/* Shadow — aligned with site card shadow */
	--ci-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

	/* Brand palette — site primary purple + secondary teal */
	--ci-accent:     #753084;  /* Site primary — nav, tabs, CTAs */
	--ci-brand:      #007D73;  /* Site teal — data values, charts */
	--ci-brand-dark: #4a1a5c;  /* Dark purple for accent cards    */

	/* Semantic value colours */
	--ci-negative: #be123c;    /* Negative / decreasing values   */
	--ci-positive: #15803d;    /* Positive / increasing values   */

	/* Typography — site fonts: Poppins (headings) / Figtree (body) */
	--ci-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ci-font-body:    'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ci-label-size:   10px;
	--ci-label-color:  #64748b;
	--ci-value-dark:   #0f172a;
	--ci-value-muted:  #64748b;

	/* Surfaces */
	--ci-surface:        #ffffff;
	--ci-surface-subtle: #f8fafc;
}

/* Negative / positive value utilities — apply anywhere a value needs colour */
.coder-neg { color: var(--ci-negative) !important; }
.coder-pos { color: var(--ci-positive) !important; }

.coder-indicator-charts {
	margin: 30px 0;
	font-family: var(--ci-font-body);
}

.coder-loading {
	text-align: center;
	padding: 60px 20px;
	color: #6b7280;
	font-size: 14px;
}

.coder-error,
.coder-no-data {
	text-align: center;
	padding: 40px 20px;
	color: #6b7280;
	font-size: 14px;
}

/* ── kpi_tile_grid / metric_list: block reset ─────────────────────────────────
   .coder-chart-container is display:flex (for Chart.js side legends).
   When these non-chart types render inside it, the inner grid becomes a flex
   item and collapses to intrinsic width → 1-2 column layout.
   Override to block so the grid fills the full available width.
   ───────────────────────────────────────────────────────────────────────── */
.coder-chart-container.coder-kpi-tile-grid,
.coder-chart-container.coder-metric-list {
	display: block !important;
	height: auto !important;
	min-height: 0 !important;
	width: 100%;
}

.coder-kpi-tile-grid {
	padding: 6px 0 12px;
}

/* Flex-wrap grid — cards flow horizontally and wrap based on available space.
   flex: 1 1 <min> means "grow to fill row, shrink, with a natural min width".
   Works for any number of cards in any container width — fully generic. */
.coder-kpi-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	align-items: stretch;
}

/* KPI tile card — ejecutivo-grid aesthetic (white surface, teal value) */
.coder-kpi-card {
	flex: 1 1 130px;      /* grow/shrink; minimum 130px before wrapping    */
	min-width: 110px;
	box-sizing: border-box;
	background: var(--ci-surface);
	border: var(--ci-border);
	border-radius: var(--ci-radius-card);
	padding: 14px 16px 12px;
	box-shadow: var(--ci-shadow);
	display: flex;
	flex-direction: column;
	gap: 5px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.coder-kpi-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.coder-kpi-label {
	font-size: var(--ci-label-size);
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ci-label-color);
	line-height: 1.4;
	margin: 0;
}

.coder-kpi-value {
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--ci-brand);
	word-break: break-word;
	font-family: var(--ci-font-heading);
}

.coder-kpi-value.coder-neg { color: var(--ci-negative) !important; }
.coder-kpi-value.coder-pos { color: var(--ci-positive) !important; }

.coder-kpi-meta {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94a3b8;
}

.coder-metric-list {
	padding: 6px 0 12px;
}

.coder-metric-list-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	align-items: stretch;
}

/* Metric list card — same ejecutivo aesthetic as kpi_tile_grid */
.coder-metric-item {
	flex: 1 1 150px;
	min-width: 120px;
	box-sizing: border-box;
	background: var(--ci-surface);
	border: var(--ci-border);
	border-radius: var(--ci-radius-card);
	padding: 14px 16px 12px;
	box-shadow: var(--ci-shadow);
	display: flex;
	flex-direction: column;
	gap: 5px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.coder-metric-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.coder-metric-item-label {
	font-size: var(--ci-label-size);
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ci-label-color);
	line-height: 1.4;
	margin: 0;
}

.coder-metric-item-value {
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--ci-brand);
	font-family: var(--ci-font-heading);
	margin-top: 0;
}

.coder-metric-item-meta {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-top: 0;
}

/* Data Table */
.coder-data-table {
	padding: 10px 0;
	overflow-x: auto;
}

.coder-dt-period {
	font-size: var(--ci-label-size);
	font-weight: 700;
	color: var(--ci-label-color);
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.coder-dt-wrap {
	overflow-x: auto;
}

.coder-dt {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	font-family: var(--ci-font-body);
}

.coder-dt thead tr {
	background: var(--ci-brand);
	color: #fff;
}

.coder-dt .coder-dt-th-row {
	text-align: left;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.coder-dt .coder-dt-th-col {
	text-align: right;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.coder-dt tbody tr {
	border-bottom: 1px solid var(--ci-border-color);
}

.coder-dt tbody tr:nth-child(even) {
	background: var(--ci-surface-subtle);
}

.coder-dt tbody tr:hover {
	background: #f0fdf9;
}

.coder-dt .coder-dt-label {
	padding: 9px 14px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
}

.coder-dt .coder-dt-value {
	padding: 9px 14px;
	text-align: right;
	color: #334155;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.coder-dt .coder-dt-row-total {
	background: #f0fdf9 !important;
	border-top: 2px solid var(--ci-brand);
}

.coder-dt .coder-dt-row-total .coder-dt-label,
.coder-dt .coder-dt-row-total .coder-dt-value {
	font-weight: 700;
	color: #0f172a;
}

/* Dashboard Container */
.coder-dashboard {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* Dashboard Header with Range Selectors */
.coder-dashboard-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 24px 32px;
	color: white;
}

.coder-range-controls {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}

.coder-range-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.coder-range-group label {
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
}

.coder-year-select,
.coder-trimester-select {
	padding: 10px 16px;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: #1f2937;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 100px;
}

.coder-year-select:hover,
.coder-trimester-select:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coder-year-select:focus,
.coder-trimester-select:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Validation styles for date range selector */
.coder-range-validation {
	color: #d63638;
	font-size: 13px;
	margin-top: 10px;
	display: none;
	font-weight: 500;
}

.coder-visual-selector.coder-error {
	border: 2px solid #d63638;
	border-radius: 8px;
	padding: 4px;
	background-color: rgba(214, 54, 56, 0.05);
	animation: shake 0.3s ease-in-out;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

/* Elementor Tabs Widget Styles */
.coder-tabs-nav-container {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 8px;
}

.elementor-tabs-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	flex: 1;
	position: relative;
	min-width: 0; /* Allow flex item to shrink below content size */
	justify-content: flex-start; /* Force left alignment */
	align-items: flex-start; /* Force top alignment */
}

.elementor-tabs-wrapper.coder-scroll-initialized {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
	justify-content: flex-start !important; /* Force left alignment when scrolling */
	text-align: left !important;
	direction: ltr !important;
}

.elementor-tabs-wrapper.coder-scroll-initialized::-webkit-scrollbar {
	height: 6px;
}

.elementor-tabs-wrapper.coder-scroll-initialized::-webkit-scrollbar-track {
	background: transparent;
}

.elementor-tabs-wrapper.coder-scroll-initialized::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.elementor-tabs-wrapper.coder-scroll-initialized::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}

.elementor-tabs-wrapper.coder-dragging {
	cursor: grabbing;
	user-select: none;
}

.elementor-tabs-wrapper.coder-scroll-initialized .elementor-tab-title {
	cursor: grab;
}

.elementor-tabs-wrapper.coder-dragging .elementor-tab-title {
	cursor: grabbing;
}

.elementor-tab-title {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.coder-indicators-tabs-widget .elementor-tab-title {
	width: auto;
	max-width: none;
}

.coder-indicators-tabs-widget .elementor-tabs-content-wrapper {
	width: 100%;
}

.elementor-tab-title-text {
	text-decoration: none;
	color: inherit;
}

.elementor-tab-content {
	display: none;
}

.elementor-tab-content.elementor-active {
	display: block;
}

/* Navigation Arrows */
.coder-tabs-nav-arrow {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.coder-tabs-nav-arrow:hover:not(.disabled) {
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}

.coder-tabs-nav-arrow.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.coder-tabs-nav-arrow .eicon {
	font-size: 16px;
	color: #1f2937;
}

/* Dashboard Tabs */
.coder-dashboard-tabs {
	display: flex;
	background: #f9fafb;
	border-bottom: 2px solid #e5e7eb;
	padding: 0 32px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.coder-dashboard-tabs::-webkit-scrollbar {
	height: 6px;
}

.coder-dashboard-tabs::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.coder-dashboard-tabs::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.coder-dashboard-tab {
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 16px 24px;
	margin-right: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
}

.coder-dashboard-tab:hover {
	color: #6366f1;
	background: rgba(99, 102, 241, 0.05);
}

.coder-dashboard-tab.active {
	color: #6366f1;
	border-bottom-color: #6366f1;
	font-weight: 600;
	background: rgba(99, 102, 241, 0.05);
}

/* Dashboard Content */
.coder-dashboard-content {
	padding: 32px;
	background: #ffffff;
	min-height: 400px;
}

.coder-dashboard-panel {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Indicators Grid */
.coder-indicators-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 24px;
}

/* Chart Card */
.coder-chart-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.coder-chart-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.coder-chart-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f3f4f6;
}

.coder-chart-card-header h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	line-height: 1.4;
}

.coder-chart-period {
	font-size: 11px;
	font-weight: 500;
	color: #6366f1;
	background: rgba(99, 102, 241, 0.1);
	padding: 4px 10px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.coder-chart-wrapper {
	position: relative;
	height: 300px;
	width: 100%;
}

.coder-chart-wrapper canvas {
	max-height: 300px;
}

/* Overview Tab Styles */
.coder-overview-content {
	padding: 0;
}

.coder-section-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 24px;
	margin-top: 0;
}

.coder-kpi-section {
	margin-bottom: 40px;
}

/* Scoped to old shortcode dashboard path — gradient accent cards */
.coder-kpi-section .coder-kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin-bottom: 32px;
}

.coder-kpi-section .coder-kpi-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	padding: 24px;
	color: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.coder-kpi-section .coder-kpi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.coder-kpi-section .coder-kpi-label {
	font-size: 13px;
	font-weight: 500;
	opacity: 0.9;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.coder-kpi-section .coder-kpi-value {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 4px;
	line-height: 1.2;
	color: #ffffff;
}

.coder-kpi-section .coder-kpi-period {
	font-size: 11px;
	opacity: 0.8;
	font-weight: 500;
}

.coder-overview-chart-section {
	margin-top: 40px;
}

.coder-range-info {
	background: rgba(255, 255, 255, 0.2);
	padding: 12px 20px;
	border-radius: 8px;
	margin-bottom: 24px;
	font-size: 14px;
	backdrop-filter: blur(10px);
}

/* Visual Trimester Selector - Compact inline layout */
.coder-visual-selector-group {
	flex-direction: row;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.coder-visual-selector {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 10px 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
}

.coder-year-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: none;
}

.coder-nav-btn {
	background: #6366f1;
	color: white;
	border: none;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	padding: 0;
	line-height: 1;
}

.coder-nav-btn:hover:not(:disabled) {
	background: #4f46e5;
	transform: scale(1.05);
}

.coder-nav-btn:disabled {
	background: #cbd5e1;
	cursor: not-allowed;
	opacity: 0.5;
}

.coder-year-display {
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
	min-width: 50px;
	text-align: center;
}

.coder-trimester-row {
	display: flex;
	gap: 4px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.coder-quarter {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	padding: 4px 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	min-width: 40px;
	flex: 0 0 auto;
}

.coder-quarter:hover:not(.disabled) {
	background: #f3f4f6;
	border-color: #6366f1;
}

.coder-quarter.selected {
	background: #6366f1;
	border-color: #6366f1;
	color: white;
}

.coder-quarter-label {
	font-size: 11px;
	font-weight: 600;
	margin: 0;
	color: inherit;
	line-height: 1.2;
}

.coder-quarter.selected .coder-quarter-label {
	color: white;
}

.coder-quarter-months {
	font-size: 8px;
	font-weight: 400;
	opacity: 0.7;
	color: inherit;
	line-height: 1;
	margin-top: 1px;
}

.coder-quarter.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: #f1f1f1;
}

.coder-quarter.selected .coder-quarter-months {
	color: white;
	opacity: 0.9;
}

/* Elementor Widget Chart Styles */
.coder-chart-widget {
	position: relative;
	width: 100%;
	min-height: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.coder-chart-widget.is-ready,
.coder-chart-widget.has-error {
	opacity: 1;
}

.coder-chart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.coder-chart-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ci-value-dark);
	font-family: var(--ci-font-heading);
}

.elementor-widget-coder_indicator_chart > .elementor-widget-container {
	--coder-chart-height: 320px;
}

.coder-chart-container {
	position: relative;
	width: 100%;
	height: var(--coder-chart-height, 320px);
}

.coder-chart-container canvas {
	max-width: 100%;
	width: 100% !important;
	height: 100% !important;
}

.coder-chart-loading,
.coder-chart-error {
	text-align: center;
	padding: 40px 20px;
	color: #6b7280;
	font-size: 14px;
}

.coder-chart-widget.is-ready .coder-chart-loading,
.coder-chart-widget.has-error .coder-chart-loading {
	display: none !important;
}

.coder-chart-error {
	color: #d63638;
}

/* Responsive adjustments */

/* Chart.js draws its legend INSIDE the canvas — no sibling DOM needed.
   Column layout lets injected elements (ring-key, etc.) stack above the
   canvas without squishing it horizontally. */
.coder-chart-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.coder-chart-container canvas {
	flex: 1 1 0;
	min-height: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.coder-chart-container {
		height: min(var(--coder-chart-height, 320px), 260px);
	}
}

/* On phones, reduce chart height */
@media (max-width: 480px) {
	.elementor-widget-coder_indicator_chart > .elementor-widget-container {
		--coder-chart-height: 240px;
	}
	.coder-chart-container {
		height: auto;
	}
	.coder-chart-container canvas {
		height: var(--coder-chart-height, 240px) !important;
	}
}

/* Tabs Widget Styles */
.coder-indicators-tabs-widget {
	position: relative;
	width: 100%;
}

.coder-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #e5e7eb;
}

.coder-tab-btn {
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
	transition: all 0.3s ease;
}

.coder-tab-btn:hover {
	color: var(--ci-accent);
	background: rgba(117, 48, 132, 0.05);
}

.coder-tab-btn.active {
	color: var(--ci-accent);
	border-bottom-color: var(--ci-accent);
	font-weight: 600;
}

.coder-tabs-content {
	min-height: 200px;
	padding: 20px 0;
}

.coder-tab-content-wrapper {
	width: 100%;
}

/* Date filter container in tabs widget */
.coder-indicators-tabs-widget .coder-date-filter-container {
	margin-bottom: 30px;
	padding: 20px;
	background: var(--ci-surface-subtle);
	border-radius: var(--ci-radius-card);
	border: var(--ci-border);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.coder-indicators-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 20px;
	}
	
	.coder-dashboard-header {
		padding: 20px 24px;
	}
	
	.coder-dashboard-content {
		padding: 24px;
	}
}

@media (max-width: 768px) {
	.coder-dashboard-tabs {
		padding: 0 16px;
	}
	
	.coder-dashboard-tab {
		padding: 12px 16px;
		font-size: 13px;
	}
	
	.coder-range-controls {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	
	.coder-range-group {
		flex-wrap: wrap;
	}
	
	.coder-indicators-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.coder-chart-card {
		padding: 20px;
	}
	
	.coder-chart-wrapper {
		height: 250px;
	}
	
	.coder-dashboard-content {
		padding: 20px 16px;
	}
}

/* Elementor Chart Widget Styles */
.coder-chart-widget {
	position: relative;
	width: 100%;
	min-height: 0;
}

.coder-chart-container {
	position: relative;
	width: 100%;
	height: var(--coder-chart-height, 320px);
}

.coder-chart-container canvas {
	max-width: 100%;
	width: 100% !important;
	height: 100% !important;
}

.coder-chart-loading,
.coder-chart-error {
	text-align: center;
	padding: 40px 20px;
	color: #6b7280;
	font-size: 14px;
}

.coder-chart-error {
	color: #d63638;
}

/* Responsive adjustments for chart widget */
@media (max-width: 768px) {
	.coder-chart-container {
		height: min(var(--coder-chart-height, 320px), 280px);
	}
}

/* Loading Animation */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.coder-loading {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── Treemap chart ──────────────────────────────────────────────────────── */
/* ── Treemap (CSS fallback — used when plugin not available) ────────────── */
.coder-treemap {
	padding: 4px 0;
}

.coder-treemap-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	min-height: 220px;
}

.coder-treemap-tile {
	flex-shrink: 0;
	min-width: 60px;
	min-height: 60px;
	border-radius: var(--ci-radius-tile);
	padding: 8px 6px 6px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
	overflow: hidden;
	position: relative;
	transition: filter 0.15s ease;
}

.coder-treemap-tile:hover {
	filter: brightness(1.1);
}

.coder-treemap-label {
	font-size: var(--ci-label-size);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	line-height: 1.2;
	margin-bottom: 2px;
	word-break: break-word;
}

.coder-treemap-value {
	font-size: clamp(0.75rem, 1.2vw, 1.1rem);
	font-weight: 800;
	line-height: 1.1;
}

.coder-treemap-pct {
	font-size: 10px;
	font-weight: 600;
	opacity: 0.85;
	margin-top: 1px;
}

/* ── Treemap with legend (Chart.js plugin layout) ───────────────────────── */
.coder-treemap-with-legend {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 16px;
	height: 300px !important;
}

.coder-treemap-with-legend canvas {
	flex: 3;
	min-width: 0;
	height: 100% !important;
	border-radius: 4px;
}

.coder-treemap-legend {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow-y: auto;
	padding: 2px 0;
}

.coder-treemap-legend-item {
	display: flex;
	align-items: baseline;
	gap: 7px;
	font-size: 12px;
	line-height: 1.3;
}

.coder-treemap-legend-dot {
	flex-shrink: 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	position: relative;
	top: 1px;
}

.coder-treemap-legend-name {
	flex: 1;
	font-weight: 600;
	color: #1e293b;
	min-width: 0;
}

.coder-treemap-legend-stats {
	white-space: nowrap;
	color: #64748b;
	font-size: 11px;
}

/* ── Variation tile grid ────────────────────────────────────────────────── */
.coder-variation-tile-grid {
	padding: 4px 0;
}

.coder-variation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 6px;
}

.coder-variation-tile {
	border-radius: var(--ci-radius-tile);
	padding: 8px 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	border: 1px solid transparent;
}

.coder-variation-tile.is-positive {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.coder-variation-tile.is-negative {
	background: #fff1f2;
	border-color: #fecdd3;
}

.coder-variation-label {
	font-size: var(--ci-label-size);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ci-label-color);
	line-height: 1.25;
}

.coder-variation-value {
	font-size: clamp(0.95rem, 1.6vw, 1.25rem);
	font-weight: 800;
	line-height: 1;
}

.coder-variation-tile.is-positive .coder-variation-value {
	color: #15803d;
}

.coder-variation-tile.is-negative .coder-variation-value {
	color: #be123c;
}

/* ── REPORTE EJECUTIVO: Editorial grid ────────────────────────────────────── */
.coder-ejecutivo-grid {
	padding: 6px 0 12px;
}

.coder-ej-period {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ci-label-color);
	margin: 0 0 12px;
	font-family: var(--ci-font-heading);
}

.coder-ej-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

/* Cards with 3+ non-% items span 2 columns so sub-metrics breathe */
.coder-ej-card.coder-ej-multi {
	grid-column: span 2;
}

.coder-ej-card {
	background: var(--ci-surface);
	border: var(--ci-border);
	border-radius: var(--ci-radius-card);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-shadow: var(--ci-shadow);
}

/* Dark accent cards (Población total, Indicadores laborales) */
.coder-ej-card.coder-ej-accent {
	background: var(--ci-brand-dark);
	border-color: var(--ci-brand-dark);
	color: #fff;
}

.coder-ej-card-title {
	font-size: var(--ci-label-size);
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ci-label-color);
	margin: 0;
	line-height: 1.3;
}

.coder-ej-card.coder-ej-accent .coder-ej-card-title {
	color: rgba(255, 255, 255, 0.65);
}

.coder-ej-card-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

/* Primary metric — large number */
.coder-ej-metric.coder-ej-primary .coder-ej-metric-value {
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 800;
	line-height: 1.0;
	color: var(--ci-brand);
	display: block;
}

.coder-ej-card.coder-ej-accent .coder-ej-metric.coder-ej-primary .coder-ej-metric-value {
	color: #ffffff;
}

/* Secondary metric — medium number */
.coder-ej-metric.coder-ej-secondary {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--ci-border-color);
}

.coder-ej-card.coder-ej-accent .coder-ej-metric.coder-ej-secondary {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.coder-ej-metric.coder-ej-secondary .coder-ej-metric-value {
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	font-weight: 700;
	line-height: 1.05;
	color: #0f172a;
	display: block;
}

.coder-ej-card.coder-ej-accent .coder-ej-metric.coder-ej-secondary .coder-ej-metric-value {
	color: #ffffff;
}

.coder-ej-metric-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94a3b8;
	display: block;
	margin-bottom: 2px;
}

.coder-ej-card.coder-ej-accent .coder-ej-metric-label {
	color: rgba(255, 255, 255, 0.55);
}

.coder-ej-metric-unit {
	font-size: 0.65em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #94a3b8;
	vertical-align: super;
	margin-left: 2px;
}

.coder-ej-card.coder-ej-accent .coder-ej-metric-unit {
	color: rgba(255, 255, 255, 0.5);
}

/* Participation % annotation */
.coder-ej-note {
	font-size: 11px;
	font-weight: 500;
	color: #64748b;
	margin: 1px 0 0;
}

.coder-ej-card.coder-ej-accent .coder-ej-note {
	color: rgba(255, 255, 255, 0.6);
}

/* Negative value (e.g. empleo generado negativo) */
.coder-ej-metric-value.coder-ej-neg {
	color: var(--ci-negative) !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.coder-ej-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.coder-ej-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.coder-ej-card.coder-ej-multi {
		grid-column: span 2;
	}
}

@media (max-width: 480px) {
	.coder-ej-cards {
		grid-template-columns: 1fr;
	}
	.coder-ej-card.coder-ej-multi {
		grid-column: span 1;
	}
}

/* ── Tab title alignment fix ─────────────────────────────────────────────────
   .elementor-tab-title is inline-flex; justify-content works on flex containers.
   Elementor's tabs_align_title control writes justify-content: flex-start/center/flex-end.
   ───────────────────────────────────────────────────────────────────────── */
.coder-indicators-tabs-widget .elementor-tab-title {
	display: flex;
	align-items: center;
}

.coder-indicators-tabs-widget .elementor-tab-title-text {
	display: block;
	/* width: auto allows justify-content on parent .elementor-tab-title to work */
}

/* ── Vertical (left-sidebar) tabs layout ─────────────────────────────────────
   Activated when data-tabs-direction="column" is present on the widget container.
   CSS-only — no JS changes needed. Elementor controls still apply for individual
   tab/content styles; we only restructure the outer layout here.
   ───────────────────────────────────────────────────────────────────────── */

/* Make the outer tabs element a flex row: [nav-column | content-column] */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

/* Left nav column — default width 200px; overridden by Elementor tabs_width control */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .coder-tabs-nav-container {
	flex-direction: column;
	flex-shrink: 0;
	width: 200px; /* default; Elementor control writes inline style to override */
	overflow-x: visible;
	overflow-y: visible;
	/* Remove horizontal underline that belongs to top-tabs layout */
	border-bottom: none;
}

/* Tab button list — stack vertically, fill the column width */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs-wrapper {
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	overflow-x: visible !important;
	overflow-y: auto;
	width: 100%;
	/* Remove the bottom scrollbar and border that come from horizontal mode */
	border-bottom: none;
}

/* Individual tab buttons — full width, right-side active indicator */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-title {
	width: 100%;
	flex-shrink: 0;
	/* Reset horizontal margin so gap (margin-bottom) works correctly */
	margin-right: 0 !important;
	/* Default: subtle right border as active indicator slot */
	border-bottom: none;
	border-right: 3px solid transparent;
	box-sizing: border-box;
}

/* Active tab: accent right border + subtle teal tint */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-title.elementor-active {
	border-bottom: none !important;
	border-right-color: var(--ci-accent);
}

/* Content wrapper — grows to fill remaining horizontal space */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs-content-wrapper {
	flex: 1 1 0;
	min-width: 0; /* prevent flex overflow */
	/* Reset top margin (belongs to horizontal mode); left margin set by tabs_distance */
	margin-top: 0 !important;
}

/* Content panels — show as block when active (same as horizontal) */
.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-content {
	display: none;
}

.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-content.elementor-active {
	display: block;
}

/* ── Responsive: collapse to horizontal stacked on tablet / mobile ────────── */
@media (max-width: 768px) {
	.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs {
		flex-direction: column;
	}

	.coder-indicators-tabs-widget[data-tabs-direction="column"] .coder-tabs-nav-container {
		width: 100% !important;
		border-right: none;
		border-bottom: 2px solid var(--ci-border-color);
	}

	.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs-wrapper {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		overflow-x: auto !important;
	}

	.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-title {
		width: auto;
		border-right: none;
		border-bottom: 3px solid transparent;
	}

	.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tab-title.elementor-active {
		border-right-color: transparent !important;
		border-bottom-color: var(--ci-accent);
	}

	.coder-indicators-tabs-widget[data-tabs-direction="column"] .elementor-tabs-content-wrapper {
		margin-left: 0 !important;
		margin-top: 0;
	}
}

/* ── Sticky tabs ──────────────────────────────────────────────────────────────
   data-tabs-sticky="yes" makes the nav column (vertical) or nav bar (horizontal)
   stick to the top of the viewport as the user scrolls.
   --ci-sticky-top is written by Elementor's tabs_sticky_top control (default 32px).
   ───────────────────────────────────────────────────────────────────────── */

/* Vertical sticky: left column sticks; content scrolls independently */
.coder-indicators-tabs-widget[data-tabs-direction="column"][data-tabs-sticky="yes"] .coder-tabs-nav-container {
	position: sticky;
	top: var(--ci-sticky-top, 32px);
	align-self: flex-start; /* essential — stretch would prevent stickiness */
	max-height: calc(100vh - var(--ci-sticky-top, 32px));
	overflow-y: auto;
	/* Subtle scroll hint */
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

/* Horizontal sticky: tab bar sticks; needs opaque background */
.coder-indicators-tabs-widget:not([data-tabs-direction="column"])[data-tabs-sticky="yes"] .coder-tabs-nav-container {
	position: sticky;
	top: var(--ci-sticky-top, 32px);
	z-index: 50;
	background: var(--ci-surface);
	border-bottom: var(--ci-border);
	padding-bottom: 2px;
}

/* ── Date filter inside vertical left panel ──────────────────────────────────
   When date_filter_in_panel is enabled, the date selector appears above the tab
   list inside the sticky column instead of spanning the full widget width.
   ───────────────────────────────────────────────────────────────────────── */
.coder-indicators-tabs-widget .coder-date-filter-in-panel {
	border-bottom: var(--ci-border);
	padding-bottom: 14px;
	margin-bottom: 14px;
}

/* Compact the visual selector when in the narrow panel */
.coder-date-filter-in-panel .coder-visual-selector {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 10px;
	background: var(--ci-surface-subtle);
	border-radius: var(--ci-radius-control);
}

.coder-date-filter-in-panel .coder-range-controls {
	flex-direction: column;
	gap: 8px;
}

.coder-date-filter-in-panel .coder-range-group {
	flex-wrap: wrap;
	gap: 6px;
}

/* ── Hamburger button ─────────────────────────────────────────────────────────
   Hidden on desktop; appears on mobile for vertical layouts.
   ───────────────────────────────────────────────────────────────────────── */
.coder-tabs-burger {
	display: none; /* hidden on desktop — shown via mobile media query below */
	background: var(--ci-surface);
	border: var(--ci-border);
	border-radius: var(--ci-radius-control);
	box-shadow: var(--ci-shadow);
	width: 40px;
	height: 40px;
	padding: 8px;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	align-self: flex-start;
	flex-shrink: 0;
	z-index: 10;
	transition: box-shadow 0.15s ease;
}

.coder-tabs-burger:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.coder-tabs-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ci-value-dark);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate to X when open */
.coder-indicators-tabs-widget.coder-nav-open .coder-tabs-burger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.coder-indicators-tabs-widget.coder-nav-open .coder-tabs-burger span:nth-child(2) {
	opacity: 0;
}
.coder-indicators-tabs-widget.coder-nav-open .coder-tabs-burger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Overlay */
.coder-tabs-overlay {
	display: none;
}

/* ── Mobile: hamburger + slide-in nav ────────────────────────────────────────
   Applies to vertical layout on tablet and phone.
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	/* Show burger */
	.coder-indicators-tabs-widget.coder-tabs-vertical .coder-tabs-burger {
		display: flex;
		position: relative;
		z-index: 101;
		margin-bottom: 8px;
	}

	/* Nav panel hidden by default — slides in from left */
	.coder-indicators-tabs-widget.coder-tabs-vertical .coder-tabs-nav-container {
		position: fixed !important;
		left: -100%;
		top: 0;
		height: 100dvh;
		z-index: 100;
		background: var(--ci-surface);
		border-right: var(--ci-border);
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
		overflow-y: auto;
		transition: left 0.25s ease;
		padding: 20px 16px;
		width: min(280px, 80vw);
		/* Cancel sticky that was applied for desktop */
		top: 0 !important;
		max-height: 100dvh !important;
		align-self: unset !important;
	}

	/* Nav visible when open */
	.coder-indicators-tabs-widget.coder-tabs-vertical.coder-nav-open .coder-tabs-nav-container {
		left: 0;
	}

	/* Overlay */
	.coder-indicators-tabs-widget.coder-tabs-vertical.coder-nav-open .coder-tabs-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: 99;
	}

	/* Content fills full width on mobile */
	.coder-indicators-tabs-widget.coder-tabs-vertical .elementor-tabs-content-wrapper {
		margin-left: 0 !important;
		width: 100%;
	}

	/* Reset sticky on mobile (position fixed takes over) */
	.coder-indicators-tabs-widget[data-tabs-direction="column"][data-tabs-sticky="yes"] .coder-tabs-nav-container {
		position: fixed !important;
	}
}

/* ── Content-scroll layout ────────────────────────────────────────────────────
   data-content-scroll="yes": widget has a fixed height (set via Elementor's
   widget_height control) and the content area scrolls independently.
   The tab nav stays in place — no sticky tricks needed; height constraint does it.
   ───────────────────────────────────────────────────────────────────────── */

/* Widget must clip overflow so only the content pane scrolls */
.coder-indicators-tabs-widget[data-content-scroll="yes"] {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* The top-level date filter bar should not shrink */
.coder-indicators-tabs-widget[data-content-scroll="yes"] > .coder-date-filter-container {
	flex-shrink: 0;
}

/* The elementor-tabs div fills remaining height */
.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs {
	flex: 1 1 0;
	min-height: 0;
	overflow: hidden;
}

/* ── Vertical column mode ── */
.coder-indicators-tabs-widget[data-tabs-direction="column"][data-content-scroll="yes"] .elementor-tabs {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

/* Nav column: shrinks to its natural width, scrolls internally if tabs overflow */
.coder-indicators-tabs-widget[data-tabs-direction="column"][data-content-scroll="yes"] .coder-tabs-nav-container {
	overflow-y: auto;
	flex-shrink: 0;
	align-self: stretch;
	/* No position: sticky — the fixed height handles it */
	position: static !important;
	max-height: none !important;
}

/* Content column: fills remaining width and scrolls */
.coder-indicators-tabs-widget[data-tabs-direction="column"][data-content-scroll="yes"] .elementor-tabs-content-wrapper {
	flex: 1 1 0;
	min-width: 0;
	overflow-y: auto;
	height: 100%;
	/* Thin scrollbar matches the nav */
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

/* ── Horizontal mode ── */
.coder-indicators-tabs-widget:not([data-tabs-direction="column"])[data-content-scroll="yes"] .elementor-tabs {
	display: flex;
	flex-direction: column;
}

.coder-indicators-tabs-widget:not([data-tabs-direction="column"])[data-content-scroll="yes"] .coder-tabs-nav-container {
	flex-shrink: 0;
}

.coder-indicators-tabs-widget:not([data-tabs-direction="column"])[data-content-scroll="yes"] .elementor-tabs-content-wrapper {
	flex: 1 1 0;
	min-height: 0;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

/* Webkit scrollbar styling for content area */
.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs-content-wrapper::-webkit-scrollbar {
	width: 5px;
}
.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs-content-wrapper::-webkit-scrollbar-track {
	background: transparent;
}
.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs-content-wrapper::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.18);
	border-radius: 3px;
}

/* On mobile, revert to normal scroll — fixed height layout works poorly on small screens */
@media (max-width: 768px) {
	.coder-indicators-tabs-widget[data-content-scroll="yes"] {
		height: auto !important;
		overflow: visible;
		display: block;
	}
	.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs {
		height: auto;
		overflow: visible;
	}
	.coder-indicators-tabs-widget[data-content-scroll="yes"] .elementor-tabs-content-wrapper {
		overflow-y: visible;
		height: auto;
	}
}

/* ── Multi-series pie: ring-key legend ────────────────────────────────────── */
.coder-ring-key {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	padding: 6px 10px 4px;
	font-size: 11px;
	line-height: 1.4;
	border-bottom: 1px solid var(--ci-border-color);
	margin-bottom: 4px;
}

.coder-ring-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.coder-ring-swatch {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 2px;
	flex-shrink: 0;
}

.coder-ring-pos {
	color: #64748b;
	font-weight: 500;
	white-space: nowrap;
}

.coder-ring-name {
	color: #1e293b;
	font-weight: 600;
	white-space: nowrap;
}

.coder-ring-pill--inner .coder-ring-pos::before {
	content: '▮ ';
	font-size: 9px;
	color: #475569;
}

.coder-ring-pill--outer .coder-ring-pos::before {
	content: '▯ ';
	font-size: 9px;
	color: #94a3b8;
}
