/* Geohash Encoder Decoder - tool-specific styles */

/* Center cell of the 9-cell neighbor grid.
   Theme-neutral: uses a primary-tinted border + semi-transparent fill so it
   stays legible in both light and dark mode (no hardcoded bg-light). */
.gh-center-cell {
	border: 2px solid var(--bs-primary, #0d6efd) !important;
	background-color: rgba(13, 110, 253, 0.08);
}

[data-bs-theme="dark"] .gh-center-cell {
	background-color: rgba(13, 110, 253, 0.18);
}

/* Covering-prefix list in the proximity query plan */
.gh-prefix-list {
	max-height: 14rem;
	overflow-y: auto;
	word-break: break-all;
}
