/* ============================================
   FCAT Palacios — Branded Viewer UI
   ============================================ */

/* --- Custom Properties --- */
:root {
	--fcat-green: #72BDA3;
	--fcat-mint: #94E8B4;
	--fcat-forest: #4E6151;
	--fcat-charcoal: #343434;
	--fcat-brown: #3B322C;

	--font-heading: 'Noto Serif', Georgia, serif;
	--font-body: 'Cabin', sans-serif;

	--top-bar-height: 48px;

	--surface: rgba(52, 52, 52, 0.85);
	--surface-hover: rgba(52, 52, 52, 0.95);
	--text: #fff;
	--text-muted: rgba(255, 255, 255, 0.55);
	--border: rgba(255, 255, 255, 0.1);
}

/* --- Base --- */
body {
	font-family: var(--font-body);
	margin: 0;
	overflow: hidden;
}

/* --- Top Bar --- */
#top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--top-bar-height);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	background: var(--surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.back-link {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 20px;
	line-height: 1;
	padding: 4px 2px;
	transition: color 0.15s ease;
}

.back-link:hover {
	color: var(--fcat-green);
}

.fcat-logo {
	height: 28px;
	width: auto;
}

.top-bar-titles h1 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.2;
}

.top-bar-subtitle {
	font-size: 11px;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* --- Icon Buttons --- */
.icon-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid transparent;
	color: var(--text-muted);
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s;
}

.icon-btn:hover {
	color: var(--text);
	border-color: var(--border);
}

.icon-btn.active {
	color: var(--fcat-green);
}

/* --- Layers Panel (right sidebar) --- */
#layers-panel {
	position: fixed;
	top: calc(var(--top-bar-height) + 12px);
	right: 12px;
	z-index: 999;
	width: 200px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lp-section {
	background: var(--surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	padding: 10px 12px;
	color: var(--text);
}

.lp-section:first-child {
	border-top: 3px solid var(--fcat-green);
}

.lp-section[hidden] {
	display: none;
}

.lp-heading {
	margin: 0 0 8px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	font-weight: 600;
}

.lp-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 4px;
	cursor: pointer;
	color: var(--text-muted);
	font-size: 12px;
	transition: color 0.15s;
}

.lp-row:hover {
	color: var(--text);
}

.lp-row.active {
	color: var(--text);
}

.lp-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0.4;
	transition: opacity 0.15s;
}

.lp-row.active .lp-dot {
	opacity: 1;
}

.lp-name {
	flex: 1;
}

.lp-count {
	font-size: 10px;
	color: var(--text-muted);
	opacity: 0.6;
}

.lp-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.toolbar-divider {
	width: 1px;
	height: 28px;
	background: var(--border);
	margin: 0 8px;
}

.toolbar-btn {
	position: relative;
	background: none;
	border: none;
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	padding: 8px 14px;
	cursor: pointer;
	transition: color 0.15s;
}

.toolbar-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--fcat-green);
	transition: width 0.2s ease, left 0.2s ease;
}

.toolbar-btn:hover {
	color: var(--text);
}

.toolbar-btn.active {
	color: var(--fcat-green);
	font-weight: 600;
}

.toolbar-btn.active::after {
	width: 100%;
	left: 0;
}


/* --- Plants Legend --- */
.legend-items {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.legend-row {
	padding: 2px 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.legend-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	flex-shrink: 0;
}

/* --- Color-by-treatment segmented control --- */
.seg {
	display: flex;
	border: 1px solid var(--border);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
}

.seg-btn {
	flex: 1;
	background: rgba(255, 255, 255, 0.04);
	border: none;
	border-right: 1px solid var(--border);
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 11px;
	padding: 5px 4px;
	cursor: pointer;
	transition: color 0.15s, background 0.15s;
}

.seg-btn:last-child {
	border-right: none;
}

.seg-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.08);
}

.seg-btn.active {
	color: #1a1a1a;
	background: #72BDA3;
	font-weight: 600;
}

/* --- CHM Legend (matches Potree SPECTRAL gradient) --- */
.legend-bar {
	height: 10px;
	background: linear-gradient(to right,
		rgb(68, 1, 84),
		rgb(59, 82, 139),
		rgb(33, 145, 140),
		rgb(94, 201, 98),
		rgb(253, 231, 37),
		rgb(255, 165, 0),
		rgb(255, 0, 0)
	);
	margin-bottom: 4px;
}

.legend-labels {
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	color: var(--text-muted);
}


/* --- Help Overlay --- */
#help-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	animation: helpFadeIn 0.2s ease-out;
}

#help-overlay[hidden] {
	display: none;
}

@keyframes helpFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.help-card {
	background: var(--fcat-charcoal);
	border: 1px solid var(--border);
	padding: 32px 40px;
	max-width: 360px;
	width: 90%;
	cursor: default;
	animation: helpScaleIn 0.2s ease-out;
}

@keyframes helpScaleIn {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.help-card h2 {
	margin: 0 0 20px 0;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--fcat-green);
}

.help-card dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 20px;
}

.help-card dt {
	font-weight: 600;
	color: var(--text);
	font-size: 13px;
}

.help-card dd {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
}

.help-dismiss {
	margin: 20px 0 0 0;
	font-size: 11px;
	color: var(--text-muted);
	text-align: center;
}

/* --- Info Box --- */
#info-box {
	position: fixed;
	top: calc(var(--top-bar-height) + 16px);
	left: 16px;
	z-index: 999;
	background: var(--surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	border-left: 3px solid var(--fcat-green);
	padding: 16px 20px;
	color: var(--text);
	max-width: 280px;
	animation: legendSlideUp 0.3s ease-out;
}

#info-box[hidden] {
	display: none;
}

#info-close {
	position: absolute;
	top: 8px;
	right: 10px;
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
	padding: 2px 6px;
}

#info-close:hover {
	color: var(--text);
}

#info-box h3 {
	margin: 0 0 8px 0;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 800;
	color: var(--fcat-green);
}

#info-box p {
	margin: 0 0 10px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

#info-box h4 {
	margin: 10px 0 6px 0;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	font-weight: 600;
}

#info-box dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 12px;
}

#info-box dt {
	font-size: 11px;
	font-weight: 600;
	color: var(--text);
}

#info-box dd {
	margin: 0;
	font-size: 11px;
	color: var(--text-muted);
}

.info-hint {
	font-style: italic;
	color: var(--text-muted) !important;
	font-size: 11px !important;
	margin-bottom: 0 !important;
}

/* --- Viewer Controls --- */
#viewer-controls {
	min-width: 180px;
}

.control-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 12px;
	padding: 6px 10px;
	cursor: pointer;
	transition: color 0.15s, background 0.15s;
	margin-bottom: 8px;
}

.control-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.1);
}

.control-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.control-row label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	font-weight: 600;
	flex-shrink: 0;
}

.control-row input[type="range"] {
	flex: 1;
	min-width: 0;
	-webkit-appearance: none;
	appearance: none;
	height: 2px;
	background: rgba(255, 255, 255, 0.15);
	outline: none;
}

.control-row input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px;
	height: 12px;
	background: var(--fcat-green);
	cursor: pointer;
}

.control-row input[type="range"]::-moz-range-thumb {
	width: 12px;
	height: 12px;
	background: var(--fcat-green);
	border: none;
	cursor: pointer;
}

.control-row > span {
	font-size: 10px;
	color: var(--text-muted);
	font-weight: 600;
	min-width: 32px;
	text-align: right;
	flex-shrink: 0;
}

/* --- Simulated data badge --- */
.sim-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	color: var(--fcat-green);
	margin-left: 4px;
	vertical-align: super;
	opacity: 0.7;
}

/* --- Plant Tooltip --- */
#plant-tooltip {
	display: none;
	position: fixed;
	z-index: 2000;
	background: var(--surface-hover);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--text);
	padding: 10px 14px;
	font-size: 12px;
	line-height: 1.6;
	pointer-events: none;
	max-width: 240px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--fcat-green);
}

/* --- Marker Tooltip (shared for cameras, birds, remnant trees) --- */
#marker-tooltip {
	display: none;
	position: fixed;
	z-index: 2000;
	background: var(--surface-hover);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--text);
	padding: 12px 16px;
	font-size: 12px;
	line-height: 1.5;
	pointer-events: auto;
	max-width: 280px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--fcat-green);
}

.tt-header {
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 2px;
}

.tt-sim {
	display: inline-block;
	font-size: 9px;
	font-weight: 600;
	color: var(--fcat-charcoal);
	background: var(--fcat-green);
	padding: 1px 5px;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	vertical-align: middle;
	margin-left: 6px;
}

.tt-sub {
	color: var(--text-muted);
	font-size: 11px;
	margin-bottom: 6px;
}

.tt-section {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	font-weight: 600;
	margin: 6px 0 3px;
}

.tt-species {
	padding: 1px 0;
	font-size: 11px;
}

.tt-count {
	color: var(--text-muted);
	font-size: 10px;
}

.tt-detail {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin: 4px 0;
}

.tt-link {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	color: var(--fcat-green);
	text-decoration: none;
	font-weight: 600;
}

.tt-link:hover {
	text-decoration: underline;
}

/* --- Plot Info Panel --- */
#plot-panel {
	position: fixed;
	top: calc(var(--top-bar-height) + 16px);
	left: 16px;
	bottom: 16px;
	width: 280px;
	z-index: 1001;
	background: var(--surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	border-top: 3px solid var(--fcat-green);
	overflow-y: auto;
	padding: 16px;
	color: var(--text);
	animation: plotPanelSlide 0.2s ease-out;
}

#plot-panel[hidden] {
	display: none;
}

@keyframes plotPanelSlide {
	from { transform: translateX(-20px); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

#plot-panel-close {
	position: absolute;
	top: 8px;
	right: 10px;
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	padding: 2px 6px;
}

#plot-panel-close:hover {
	color: var(--text);
}

#plot-panel h3 {
	margin: 0 0 6px 0;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 8px;
}

.plot-color {
	display: inline-block;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.plot-meta {
	display: flex;
	gap: 12px;
	font-size: 11px;
	margin-bottom: 16px;
}

.plot-treatment {
	font-weight: 600;
}

.plot-elev {
	color: var(--text-muted);
}

.plot-section {
	margin-bottom: 14px;
}

.plot-section h4 {
	margin: 0 0 6px 0;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	font-weight: 600;
}

.plot-species-list {
	font-size: 12px;
}

.plot-sp-row {
	display: flex;
	justify-content: space-between;
	padding: 2px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plot-sp-count {
	color: var(--text-muted);
	font-size: 11px;
}

.plot-empty {
	font-size: 11px;
	color: var(--text-muted);
	font-style: italic;
	margin: 4px 0;
}

.plot-wildlife-label {
	font-size: 12px;
	padding: 3px 0;
}

.plot-links {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
}

.plot-links a {
	display: block;
	font-size: 11px;
	color: var(--fcat-green);
	text-decoration: none;
	font-weight: 600;
	padding: 4px 0;
}

.plot-links a:hover {
	text-decoration: underline;
}

/* --- Share Toast --- */
#share-toast {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2001;
	background: var(--fcat-green);
	color: var(--fcat-charcoal);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 20px;
	animation: toastIn 0.2s ease-out;
}

#share-toast[hidden] {
	display: none;
}

@keyframes toastIn {
	from { opacity: 0; transform: translateX(-50%) translateY(8px); }
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Loading Overlay --- */
#loading-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: var(--fcat-brown);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease;
}

#loading-overlay.fade-out {
	opacity: 0;
	pointer-events: none;
}

.loading-content {
	text-align: center;
	color: var(--text);
}

.loading-mark {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 800;
	color: var(--fcat-green);
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 6px;
	position: relative;
}

.loading-mark::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: var(--fcat-green);
	margin: 10px auto 0;
	opacity: 0.5;
}

.loading-content h2 {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: 0.02em;
}

.loading-content p {
	margin: 4px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.loading-detail {
	font-size: 12px !important;
	color: rgba(255, 255, 255, 0.35) !important;
}

.loading-bar {
	width: 200px;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	margin: 16px auto 12px;
	overflow: hidden;
}

.loading-bar-fill {
	width: 40%;
	height: 100%;
	background: var(--fcat-green);
	animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(350%); }
}

/* --- Mobile Warning --- */
#mobile-warning {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: var(--fcat-brown);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.mobile-content {
	text-align: center;
	color: var(--text);
	max-width: 320px;
}

.mobile-mark {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--fcat-green);
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 8px;
}

.mobile-content h2 {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--fcat-green);
}

.mobile-content p {
	margin: 0 0 24px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}

#mobile-continue {
	background: rgba(114, 189, 163, 0.2);
	border: 1px solid rgba(114, 189, 163, 0.5);
	color: var(--fcat-green);
	padding: 10px 24px;
	font-family: var(--font-body);
	font-size: 14px;
	cursor: pointer;
	transition: background 0.15s;
}

#mobile-continue:hover {
	background: rgba(114, 189, 163, 0.3);
}

/* --- Potree Overrides --- */
#potree_quick_buttons,
.potree_menu_toggle {
	display: none !important;
}

/* Sidebar: hidden by default, shown when body.sidebar-open */
#potree_sidebar_container {
	font-family: var(--font-body) !important;
	width: 0 !important;
	overflow: hidden !important;
	transition: width 0.2s ease;
	--bg-color: var(--fcat-charcoal) !important;
	--color-0: var(--fcat-charcoal) !important;
	--bg-color-2: #3d3d3d !important;
	border-right: 1px solid var(--border) !important;
}

body.sidebar-open #potree_sidebar_container {
	width: 300px !important;
	overflow-y: auto !important;
}

/* Render area: full width by default, shifted when sidebar open */
#potree_render_area {
	top: 0 !important;
	height: 100% !important;
	left: 0 !important;
	transition: left 0.2s ease;
}

body.sidebar-open #potree_render_area {
	left: 300px !important;
}

/* --- Plot picker --- */
#plot-picker {
	max-height: 42vh;
	display: flex;
	flex-direction: column;
}

#picker-list {
	overflow-y: auto;
	margin: -2px -4px 0;
}

.picker-group-label {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	opacity: 0.7;
	padding: 6px 4px 3px;
}

.picker-row {
	display: flex;
	align-items: center;
	gap: 7px;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 5px 6px;
	cursor: pointer;
	color: var(--text-muted);
	font-size: 11px;
	font-family: inherit;
	border-radius: 3px;
	transition: background 0.12s, color 0.12s;
}

.picker-row:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.06);
}

.picker-row.active {
	color: var(--text);
	background: rgba(114, 189, 163, 0.18);
}

.picker-dot {
	width: 8px;
	height: 8px;
	border-radius: 2px;
	flex-shrink: 0;
}

.picker-id {
	font-weight: 600;
	min-width: 26px;
}

.picker-meta {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 10px;
	opacity: 0.85;
}

.picker-n {
	font-size: 10px;
	opacity: 0.6;
}

.picker-loading,
.picker-error {
	font-size: 11px;
	color: var(--text-muted);
	font-style: italic;
	padding: 4px;
}

/* --- Plot panel: control + treatment chips --- */
.plot-badge {
	display: inline-block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 3px;
	margin-bottom: 8px;
}

.plot-badge-control {
	background: rgba(26, 188, 156, 0.18);
	color: #1abc9c;
}

.plot-descr {
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

.plot-treatments {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.plot-trt {
	font-size: 12px;
}

.plot-trt b {
	display: inline-block;
	min-width: 72px;
	color: var(--text-muted);
	font-weight: 600;
}

.plot-trt-block {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.plot-trt-head {
	font-size: 13px;
	color: var(--text);
}

.plot-trt-head b {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 1px;
}

.plot-trt-desc {
	font-size: 12px;
	line-height: 1.45;
	color: var(--text-muted);
	margin: 0;
}

.plot-overview {
	margin-top: 14px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--text-muted);
}

.plot-overview summary {
	cursor: pointer;
	color: var(--text);
	font-weight: 600;
	margin-bottom: 6px;
}

.plot-overview p {
	margin: 0;
}

.plot-sp-row .legend-dot {
	margin-right: 6px;
}

/* --- Load error state --- */
#loading-overlay.load-error .loading-bar {
	display: none;
}

#loading-overlay.load-error .loading-detail {
	color: #e74c3c;
}

/* --- Responsive --- */
@media (max-width: 640px) {
	.top-bar-subtitle {
		display: none;
	}

	#layers-panel {
		width: 170px;
	}

	#plot-picker {
		max-height: 30vh;
	}
}
