/* Quotes & Performance — card styles. */

.mlx-qts {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	gap: 8px;
}

.mlx-qts-toolbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.mlx-qts-ranges,
.mlx-qts-periods,
.mlx-qts-labels {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.mlx-qts-labels {
	flex-basis: 100%; /* Perf card: asset chips live on their own line... */
	justify-content: center; /* ...centered under the period filter. */
}

/* Same compact sizing as every other in-card selector. */
.mlx-qts select {
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--mlx-border);
	color: var(--mlx-text);
	border-radius: 8px;
	padding: 2px 8px;
	font-family: inherit;
	font-size: 10px;
	outline: none;
	cursor: pointer;
	max-width: 180px;
}
.mlx-qts select:focus { border-color: var(--mlx-accent); }
.mlx-qts select option { background: var(--mlx-bg2); color: var(--mlx-text); }

.mlx-qts-chart {
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
}
