#glory-query-profiler {
	position: fixed;
	bottom: 16px;
	right: 16px;
	z-index: 2147483647;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

#glory-query-profiler .gqp-toggle {
	background: var(--g-color-bg, #111);
	color: var(--g-color-fg, #fff);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

#glory-query-profiler .gqp-panel {
	position: absolute;
	bottom: 48px;
	right: 0;
	max-width: 640px;
	max-height: 60vh;
	background: var(--g-surface, #fff);
	color: #111;
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	overflow: auto;
}

#glory-query-profiler .gqp-header {
	padding: 8px 12px;
	font-weight: 600;
	border-bottom: 1px solid rgba(0,0,0,.08);
}

#glory-query-profiler .gqp-list {
	list-style: decimal inside;
	margin: 0;
	padding: 8px 12px;
}

#glory-query-profiler .gqp-item {
	margin: 6px 0 10px;
	padding: 6px 8px;
	background: rgba(0,0,0,.03);
	border-radius: 6px;
}

#glory-query-profiler .gqp-time {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 12px;
	color: #b00020;
	margin-bottom: 4px;
}

#glory-query-profiler .gqp-sql {
	white-space: pre-wrap;
	font-size: 12px;
	margin: 0 0 4px;
}

#glory-query-profiler .gqp-caller {
	font-size: 11px;
	color: #555;
}


