.datacentermap-wrapper {
	display: flex;
	width: 100%;
	position: relative;
	gap: 0;
	align-items: flex-start;
	background: #ffffff;
	border-radius: 12px;
	overflow: visible;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid #e5e7eb;
	visibility: visible !important;
	opacity: 1 !important;
	overflow: hidden;
}

.datacentermap-backdrop-overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	pointer-events: none;
	z-index: 999;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.datacentermap-wrapper:not(.datacentermap-list-hidden) .datacentermap-backdrop-overlay {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 768px) {
	.datacentermap-backdrop-overlay {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10000;
	}
}

.datacentermap-container {
	flex: 1;
	position: relative;
	width: 100%;
	height: 600px; /* Default height, will be overridden by Elementor control */
	background: #fafafa;
	min-height: 400px;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.datacentermap-container.datacentermap-has-list {
	flex: 1;
}

.datacentermap-map {
	border-radius: 0;
	overflow: visible;
	width: 100% !important;
	height: 100% !important;
	min-height: 400px;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative;
}

/* Ensure Mapbox canvas renders correctly */
.datacentermap-map canvas {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
}

.datacentermap-map .mapboxgl-canvas {
	display: block !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* Location List Styles */
.datacentermap-list {
	display: flex;
	flex-direction: column;
	background: #ffffff!important;
	border: none;
	border-radius: 14px;
	overflow: hidden;
	width: 33.333%;
	max-width: 320px;
	min-width: 260px;
	height: auto;
	max-height: calc(100% - 40px);
	position: absolute;
	top: 20px;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transform: translateX(-120%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	pointer-events: none;
}

.datacentermap-list.datacentermap-list-visible {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

.datacentermap-list-left {
	left: 20px;
}

.datacentermap-list-right {
	right: 0;
	left: auto;
	transform: translateX(100%);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 32px rgba(0, 0, 0, 0.12);
}

.datacentermap-list-right.datacentermap-list-visible {
	transform: translateX(0);
}

.datacentermap-container {
	width: 100%;
	height: 100%;
}

.datacentermap-wrapper.datacentermap-list-left .datacentermap-list {
	left: 10px;
    height: fit-content !important;
}

.datacentermap-wrapper.datacentermap-list-right .datacentermap-list {
	right: 0;
	left: auto;
}

.datacentermap-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
	gap: 12px;
}

.datacentermap-list-close-btn {
	background: rgba(0, 0, 0, 0.04);
    border: none !important;
    cursor: pointer;
    padding: 8px !important;
    color: #374151 !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.datacentermap-list-close-btn:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #111827;
}

.datacentermap-list-close-btn:active {
	transform: scale(0.96);
}

.datacentermap-list-header h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	letter-spacing: -0.01em;
	flex: 1;
}

.datacentermap-list-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 8px;
	background: rgba(0, 0, 0, 0.08);
	color: #374151;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
}

.datacentermap-list-items {
	flex: 1;
	overflow-y: auto;
	min-height: 0;
	background: transparent;
	padding: 8px 0;
}

.datacentermap-list-item {
	padding: 14px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
	transition: all 0.15s ease;
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	margin: 0 8px;
	border-radius: 8px;
	margin-bottom: 6px;
}

.datacentermap-list-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.datacentermap-list-item:hover {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.datacentermap-list-item.active {
	background: rgba(255, 255, 255, 0.35);
	border-left: 3px solid rgba(17, 24, 39, 0.9);
	padding-left: 21px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.datacentermap-list-item-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 6px;
}

.datacentermap-list-item-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
	transition: transform 0.15s ease;
	display: block;
}

.datacentermap-list-item:hover .datacentermap-list-item-dot {
	transform: scale(1.15);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.datacentermap-list-item-name {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	flex: 1;
	letter-spacing: -0.01em;
	line-height: 1.5;
}

.datacentermap-list-item-category {
	font-size: 12px;
	color: #6b7280;
	margin-top: 4px;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 6px;
}

.datacentermap-list-item-count {
	font-size: 11px;
	color: #9ca3af;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 4px;
}

/* Search and Filter Styles */
.datacentermap-list-filters {
	padding: 20px 24px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.datacentermap-search-box {
	position: relative;
	width: 100%;
}

.datacentermap-search-input {
	width: 100%;
	padding: 10px 40px 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.15s ease;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #111827;
	font-weight: 400;
}

.datacentermap-search-input::placeholder {
	color: #6b7280;
}

.datacentermap-search-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.datacentermap-search-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
	transition: color 0.2s ease;
}

.datacentermap-search-input:focus ~ .datacentermap-search-icon {
	color: #111827;
}

.datacentermap-category-filter,
.datacentermap-radius-filter {
	width: 100%;
}

.datacentermap-filter-select {
	width: 100%;
	padding: 10px 36px 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	transition: all 0.15s ease;
	color: #111827;
	font-weight: 400;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.datacentermap-filter-select:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.datacentermap-filter-select:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.datacentermap-radius-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #374151;
	font-weight: 500;
}

.datacentermap-radius-label span:first-child {
	font-weight: 600;
	min-width: 55px;
	color: #111827;
}

.datacentermap-radius-input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.15s ease;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #111827;
	font-weight: 400;
}

.datacentermap-radius-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.datacentermap-radius-unit {
	color: #6b7280;
	font-size: 13px;
	font-weight: 500;
}

/* Map Controls */
.datacentermap-map-controls {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
	display: flex !important;
	flex-direction: column;
	gap: 12px;
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
	min-width: 300px;
	visibility: visible !important;
	opacity: 1 !important;
}

.datacentermap-map-search {
	display: flex;
	gap: 10px;
}

.datacentermap-map-search-input {
	flex: 1;
	padding: 12px 16px;
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
	background: #ffffff;
	color: #111827;
	font-weight: 400;
}

.datacentermap-map-search-input::placeholder {
	color: #9ca3af;
}

.datacentermap-map-search-input:focus {
	outline: none;
	border-color: #111827;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.datacentermap-map-search-btn {
	padding: 12px 16px;
	background: #111827;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	font-weight: 500;
}

.datacentermap-map-search-btn:hover {
	background: #374151;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.datacentermap-map-search-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.datacentermap-map-radius {
	width: 100%;
}

.datacentermap-map-radius-label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #374151;
	font-weight: 500;
}

.datacentermap-map-radius-label span:first-child {
	font-weight: 600;
	min-width: 60px;
	color: #111827;
}

.datacentermap-map-radius-slider {
	flex: 1;
	height: 6px;
	border-radius: 3px;
	background: #e5e7eb;
	outline: none;
	-webkit-appearance: none;
}

.datacentermap-map-radius-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #111827;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border: 2px solid #ffffff;
}

.datacentermap-map-radius-slider::-webkit-slider-thumb:hover {
	background: #374151;
	transform: scale(1.15);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.datacentermap-map-radius-slider::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #111827;
	cursor: pointer;
	border: 2px solid #ffffff;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.datacentermap-map-radius-slider::-moz-range-thumb:hover {
	background: #374151;
	transform: scale(1.15);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.datacentermap-map-radius-value {
	min-width: 55px;
	text-align: right;
	font-weight: 700;
	color: #111827;
	font-size: 14px;
	padding: 4px 10px;
	background: #f3f4f6;
	border-radius: 6px;
}

/* Toggle Button */
.datacentermap-toggle-list {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px !important;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #374151 !important;
    width: 44px;
    height: 44px;
    visibility: visible !important;
    opacity: 1 !important;
}

.datacentermap-toggle-list:hover {
	background: #f9fafb;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
	color: #111827;
}

.datacentermap-toggle-list:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.datacentermap-wrapper.datacentermap-list-left .datacentermap-toggle-list {
    left: 25px;
    top: 32px;
}

@media (max-width: 768px) {
	.datacentermap-wrapper.datacentermap-list-left .datacentermap-toggle-list {
		left: 20px;
		top: 10px;
	}
}

.datacentermap-toggle-icon {
	transition: transform 0.3s ease;
}

.datacentermap-wrapper.datacentermap-list-left .datacentermap-toggle-icon {
	transform: rotate(180deg);
}

.datacentermap-wrapper.datacentermap-list-right .datacentermap-toggle-list {
	left: 20px;
	right: auto;
}

.datacentermap-list-hidden .datacentermap-toggle-icon {
	transform: rotate(0deg) !important;
}

.datacentermap-wrapper.datacentermap-list-left.datacentermap-list-hidden .datacentermap-toggle-icon {
	transform: rotate(0deg) !important;
}

.datacentermap-list-hidden .datacentermap-list {
	transform: translateX(-100%);
	opacity: 0;
	pointer-events: none;
}

.datacentermap-list-hidden .datacentermap-list-right {
	transform: translateX(100%);
}

.datacentermap-list-hidden .datacentermap-container {
	width: 100%;
	height: 100vh;
}

/* Mobile-specific hidden state - removed, handled in main mobile section */

/* Ensure list matches map height - list inherits from container */
.datacentermap-wrapper .datacentermap-list {
	height: inherit;
}

/* Height is controlled by Elementor's map_height control */

/* Map Toggle Container */
.datacentermap-map-toggle-container {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #ffffff;
	padding: 6px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Map Toggle Button */
.datacentermap-map-toggle-btn {
    background: transparent !important;
    border: none;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    color: #6b7280 !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap;
    text-align: left;
    position: relative;
}

.datacentermap-map-toggle-btn::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 10px;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.datacentermap-map-toggle-btn:hover {
	background: rgba(0, 0, 0, 0.05);
	color: #374151;
}

/* Standard Map button */
.datacentermap-toggle-standard::before {
	background: #6b7280;
}

.datacentermap-toggle-standard:hover::before,
.datacentermap-toggle-standard.active::before {
	background: #374151;
}

/* Constituencies button - blue */
.datacentermap-toggle-constituencies::before {
	background: #93c5fd;
}

.datacentermap-toggle-constituencies:hover::before,
.datacentermap-toggle-constituencies.active::before {
	background: #3b82f6;
}

/* Fuel Poverty button - orange */
.datacentermap-toggle-fuel-poverty::before {
	background: #fdba74;
}

.datacentermap-toggle-fuel-poverty:hover::before,
.datacentermap-toggle-fuel-poverty.active::before {
	background: #E67E22;
}

/* Active state */
.datacentermap-map-toggle-btn.active {
	background: rgba(0, 0, 0, 0.08);
	color: #111827;
	font-weight: 600;
}

.datacentermap-map-toggle-btn.active::after {
	content: '✓';
	margin-left: auto;
	padding-left: 12px;
	font-size: 12px;
	color: #10b981;
}

.datacentermap-map-toggle-label {
	user-select: none;
}

/* Fuel Poverty Popup Styles */
.datacentermap-fuel-poverty-popup .mapboxgl-popup-content {
	background: #fff;
	border-radius: 8px;
	padding: 10px 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.datacentermap-fuel-poverty-hover-popup strong {
	display: block;
	font-size: 14px;
	color: #1f2937;
	margin-bottom: 4px;
}

.datacentermap-fuel-poverty-hover-popup span {
	font-size: 12px;
	color: #6b7280;
}

.datacentermap-fuel-poverty-detail-popup .mapboxgl-popup-content {
	background: #fff;
	border-radius: 10px;
	padding: 16px;
	min-width: 220px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.datacentermap-fuel-poverty-detail h4 {
	margin: 0 0 12px 0;
	font-size: 16px;
	color: #1f2937;
	border-bottom: 2px solid #E67E22;
	padding-bottom: 8px;
}

.datacentermap-fuel-poverty-detail table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.datacentermap-fuel-poverty-detail table td {
	padding: 4px 0;
	color: #4b5563;
}

.datacentermap-fuel-poverty-detail table td:first-child {
	font-weight: 500;
	color: #374151;
	padding-right: 12px;
}

/* Fullscreen Button */
.datacentermap-fullscreen-btn {
	position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #ffffff !important;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px !important;
    padding: 12px !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #374151;
    width: 44px;
    height: 44px;
    visibility: visible !important;
    opacity: 1 !important;
    border: 0 !important;
}

.datacentermap-fullscreen-btn:hover {
	background: #fafafa;
	border-color: #d1d5db;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
	color: #111827;
}

.datacentermap-fullscreen-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.datacentermap-fullscreen-icon,
.datacentermap-fullscreen-exit-icon {
	width: 20px;
	height: 20px;
}

/* Fullscreen mode styles */
.datacentermap-wrapper:fullscreen {
	width: 100vw !important;
	height: 100vh !important;
	display: flex !important;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.datacentermap-wrapper:-webkit-full-screen {
	width: 100vw !important;
	height: 100vh !important;
	display: flex !important;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.datacentermap-wrapper:-moz-full-screen {
	width: 100vw !important;
	height: 100vh !important;
	display: flex !important;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.datacentermap-wrapper:-ms-fullscreen {
	width: 100vw !important;
	height: 100vh !important;
	display: flex !important;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.datacentermap-wrapper:fullscreen .datacentermap-container {
	flex: 1 !important;
	width: auto !important;
	height: 100vh !important;
	min-height: 100vh !important;
	position: relative;
}

.datacentermap-wrapper:-webkit-full-screen .datacentermap-container {
	flex: 1 !important;
	width: auto !important;
	height: 100vh !important;
	min-height: 100vh !important;
	position: relative;
}

.datacentermap-wrapper:-moz-full-screen .datacentermap-container {
	flex: 1 !important;
	width: auto !important;
	height: 100vh !important;
	min-height: 100vh !important;
	position: relative;
}

.datacentermap-wrapper:-ms-fullscreen .datacentermap-container {
	flex: 1 !important;
	width: auto !important;
	height: 100vh !important;
	min-height: 100vh !important;
	position: relative;
}

.datacentermap-wrapper:fullscreen .datacentermap-map {
	width: 100% !important;
	height: 100% !important;
	min-height: 100vh !important;
}

.datacentermap-wrapper:-webkit-full-screen .datacentermap-map {
	width: 100% !important;
	height: 100% !important;
	min-height: 100vh !important;
}

.datacentermap-wrapper:-moz-full-screen .datacentermap-map {
	width: 100% !important;
	height: 100% !important;
	min-height: 100vh !important;
}

.datacentermap-wrapper:-ms-fullscreen .datacentermap-map {
	width: 100% !important;
	height: 100% !important;
	min-height: 100vh !important;
}

/* Categories Mode Styles */
.datacentermap-categories-mode .datacentermap-list-filters {
	display: none;
}

.datacentermap-categories-list {
	padding: 8px 12px 12px 12px;
	overflow-y: auto;
	flex: 1;
	min-height: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.datacentermap-category-button {
	display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease;
    user-select: none;
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: visible;
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.datacentermap-category-button:hover {
	background: rgba(0, 0, 0, 0.04);
	color: #374151;
}

.datacentermap-category-button-active {
	background: rgba(0, 0, 0, 0.06);
	color: #111827;
	font-weight: 600;
}

.datacentermap-category-button-active::after {
	content: '✓';
	margin-left: auto;
	font-size: 12px;
	color: #10b981;
}

.datacentermap-category-button-active {
	background: rgba(255, 255, 255, 0.9) !important;
	border-color: rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.datacentermap-category-button-active::before {
	opacity: 1;
}

.datacentermap-category-button[data-active="false"] {
	opacity: 1;
	color: #9ca3af;
	border: 1px solid #e5e7eb!important;
}

.datacentermap-category-button[data-active="false"]:hover {
	color: #6b7280;
	background: rgba(0, 0, 0, 0.03);
}

.datacentermap-category-button-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	box-shadow: none;
	flex-shrink: 0;
	transition: all 0.2s ease;
	position: relative;
	z-index: 1;
	display: block;
	opacity: 0.6;
}

.datacentermap-category-button:hover .datacentermap-category-button-dot,
.datacentermap-category-button-active .datacentermap-category-button-dot {
	opacity: 1;
	transform: scale(1.1);
}

.datacentermap-category-button-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.datacentermap-category-button-name {
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	letter-spacing: -0.01em;
	transition: color 0.15s ease;
	flex: 1;
	text-align: left;
}

.datacentermap-category-button-count {
	font-size: 12px;
	font-weight: 600;
	color: #6b7280;
	background: rgba(0, 0, 0, 0.04);
	padding: 4px 8px;
	border-radius: 6px;
	min-width: 28px;
	text-align: center;
}

.datacentermap-category-button-active .datacentermap-category-button-count {
	background: rgba(0, 0, 0, 0.08);
	color: #111827;
}

.datacentermap-no-categories {
	padding: 40px 20px;
	text-align: center;
	color: #6b7280;
}

.datacentermap-no-categories p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}

/* Marker Styles */
.datacentermap-marker {
	cursor: pointer;
	will-change: transform;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

.datacentermap-marker:hover {
	transform: translate3d(0, 0, 0) scale(1.25);
	z-index: 1000;
	filter: brightness(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

/* Popup Styles - Redesigned */
.datacentermap-popup {
	padding: 0;
	min-width: 280px;
	max-width: 360px;
}

.datacentermap-popup h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.025em;
	padding: 20px 48px 16px 24px;
	border-bottom: 1px solid #f3f4f6;
	line-height: 1.3;
	background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
	word-wrap: break-word;
	overflow-wrap: break-word;
	position: relative;
	z-index: 1;
}

.datacentermap-popup p {
	margin: 0;
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
	padding: 12px 24px;
	border-bottom: 1px solid #f9fafb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	transition: background-color 0.15s ease;
}

.datacentermap-popup p:hover {
	background-color: #fafafa;
}

.datacentermap-popup p:last-child {
	border-bottom: none;
	padding-bottom: 20px;
}

.datacentermap-popup p strong {
	color: #111827;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	flex-shrink: 0;
}

.mapboxgl-popup-content {
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	border: none;
	background: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	overflow: hidden;
	position: relative;
}

.mapboxgl-popup-tip {
	border-top-color: #ffffff;
	border-width: 10px;
	filter: drop-shadow(0 -2px 8px rgba(0, 0, 0, 0.08));
}

.mapboxgl-popup-close-button {
	font-size: 16px;
	padding: 10px 20px!important;
	color: #ffffff;
	font-weight: 600;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 10px!important;
	width: 28px!important;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ef4444;
	border: 0!important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
	top: 12px;
	right: 12px;
	position: absolute;
	z-index: 20;
	cursor: pointer;
	line-height: 1;
	margin: 0;
	opacity: 0.9;
}

.mapboxgl-popup-close-button:hover {
	background: #dc2626;
	color: #ffffff;
	border-color: #ffffff;
	transform: scale(1.1);
	opacity: 1;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mapboxgl-popup-close-button:active {
	transform: scale(0.95);
}

.datacentermap-error {
	padding: 20px 24px;
	background: #fef3c7;
	border: 1.5px solid #fbbf24;
	border-radius: 10px;
	color: #92400e;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(251, 191, 36, 0.15);
	margin: 20px 0;
}

/* Scrollbar styling for list */
.datacentermap-list-items::-webkit-scrollbar,
.datacentermap-categories-list::-webkit-scrollbar {
	width: 8px;
}

.datacentermap-list-items::-webkit-scrollbar-track,
.datacentermap-categories-list::-webkit-scrollbar-track {
	background: #fafafa;
	border-radius: 4px;
}

.datacentermap-list-items::-webkit-scrollbar-thumb,
.datacentermap-categories-list::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 4px;
	border: 2px solid #fafafa;
	transition: background 0.2s ease;
}

.datacentermap-list-items::-webkit-scrollbar-thumb:hover,
.datacentermap-categories-list::-webkit-scrollbar-thumb:hover {
	background: #9ca3af;
}

/* Responsive improvements */
@media (max-width: 1024px) {
	.datacentermap-map-controls {
		min-width: 280px;
		padding: 16px;
		gap: 10px;
	}
	
	.datacentermap-list {
		min-width: 220px;
	}
}

@media (max-width: 768px) {
	/* Clean mobile layout - simple and straightforward */
	.datacentermap-wrapper {
		display: block;
		position: relative;
		width: 100%;
		height: 600px;
		min-height: 550px;
		border-radius: 8px;
		overflow: hidden;
	}
	
	.datacentermap-container {
		position: relative;
		width: 100%;
		height: 550px;
		min-height: 550px;
	}
	
	.datacentermap-map {
		position: relative;
		width: 100%;
		height: 550px;
		min-height: 550px;
	}
	
	/* Sidebar on mobile - simple positioning without complex transforms */
	.datacentermap-list {
		position: fixed;
		top: 0;
		left: 50%;
		width: 90%;
		max-width: 400px;
		max-height: 400px;
		transform: translateX(-50%) translateY(-100%);
		z-index: 10001;
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}
	
	.datacentermap-list.datacentermap-list-visible {
		transform: translateX(0%) translateY(0px)!important;
		opacity: 1;
		pointer-events: auto;
	}
	
	.datacentermap-list-left,
	.datacentermap-list-right {
		left: 50%;
		transform: translateX(-50%) translateY(0%);
	}

	.datacentermap-container.datacentermap-has-list {
		height: 600px;
	}
	
	.datacentermap-list-left.datacentermap-list-visible,
	.datacentermap-list-right.datacentermap-list-visible {
		transform: translateX(-50%) translateY(20px);
	}
	
	.datacentermap-list-hidden .datacentermap-list,
	.datacentermap-list-hidden .datacentermap-list-left,
	.datacentermap-list-hidden .datacentermap-list-right {
		transform: translateX(-50%) translateY(-100%);
		opacity: 0;
		pointer-events: none;
	}
	
	/* List item sizing */
	.datacentermap-list-header {
		padding: 16px;
	}
	
	.datacentermap-list-items,
	.datacentermap-categories-list {
		max-height: 250px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.datacentermap-list-item,
	.datacentermap-category-button {
		padding: 12px 16px;
		margin: 0 8px 6px 8px;
	}
	
	.datacentermap-list-filters {
		padding: 12px 16px;
	}
	
	/* Map controls on mobile */
	.datacentermap-map-controls {
		position: absolute;
		top: 20px;
		left: 20px;
		right: 20px;
		z-index: 500;
		flex-direction: column;
		gap: 10px;
	}
	
	.datacentermap-map-search {
		flex-direction: column;
	}
	
	.datacentermap-map-search-btn {
		width: 100%;
		min-height: 44px;
	}
	
	/* Toggle and fullscreen buttons */
	.datacentermap-toggle-list {
		position: fixed;
		top: 20px;
		left: 20px;
		width: 50px;
		height: 50px;
		z-index: 10002;
	}
	
	.datacentermap-map-toggle-container {
		position: fixed;
		bottom: 25px;
		left: 10px;
		z-index: 10002;
		padding: 6px;
	}
	
	.datacentermap-map-toggle-btn {
		font-size: 12px;
		padding: 8px 12px;
	}
	
	.datacentermap-map-toggle-btn::before {
		width: 6px;
		height: 6px;
		margin-right: 8px;
	}
	
	.datacentermap-fullscreen-btn {
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		z-index: 10002;
	}
	
	/* Popup adjustments for mobile */
	.mapboxgl-popup-content {
		max-width: calc(100vw - 40px);
	}
	
	.datacentermap-popup h3 {
		font-size: 16px;
		padding-right: 40px;
	}
	
	.datacentermap-popup p {
		font-size: 13px;
		padding: 10px 20px;
	}
	
	/* Backdrop overlay */
	.datacentermap-backdrop-overlay {
		position: fixed;
		z-index: 10000;
	}
}

@media (max-width: 480px) {
	/* Smaller phone adjustments */
	.datacentermap-wrapper,
	.datacentermap-container,
	.datacentermap-map {
		height: 600px;
		min-height: 600px;
	}
	
	.datacentermap-list {
		width: 95%;
		max-height: 600px;
	}
	
	.datacentermap-list-items,
	.datacentermap-categories-list {
		max-height: 100%;
	}
	
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn {
		width: 48px;
		height: 48px;
	}
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
	.datacentermap-list-item,
	.datacentermap-category-checkbox-label,
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn,
	.datacentermap-map-search-btn {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
		tap-highlight-color: rgba(0, 0, 0, 0.1);
	}
	
	.datacentermap-list-item:active {
		background: #f3f4f6;
		transform: none;
	}
	
	.datacentermap-toggle-list:active,
	.datacentermap-fullscreen-btn:active {
		transform: scale(0.95);
		background: #f3f4f6;
	}
	
	.datacentermap-map-search-btn:active {
		background: #374151;
		transform: scale(0.98);
	}
	
	/* Larger touch targets */
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn {
		min-width: 44px;
		min-height: 44px;
	}
	
	.datacentermap-map-search-btn {
		min-height: 44px;
		padding: 12px 20px;
	}
	
	.datacentermap-list-item {
		min-height: 48px;
	}
	
	.datacentermap-category-checkbox-label {
		min-height: 48px;
	}
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
	.datacentermap-container,
	.datacentermap-map {
		height: 400px;
		min-height: 400px;
	}
	
	.datacentermap-list {
		width: 45%;
		max-width: 45%;
		max-height: 350px;
		transform: translateX(-50%) translateY(-100%);
	}
	
	.datacentermap-list.datacentermap-list-visible {
		transform: translateX(-50%) translateY(20px);
	}
	
	.datacentermap-list-left.datacentermap-list-visible,
	.datacentermap-list-right.datacentermap-list-visible {
		transform: translateX(-50%) translateY(20px);
	}
	
	.datacentermap-list-items,
	.datacentermap-categories-list {
		max-height: 220px;
	}
}

/* Prevent text selection on mobile for better UX */
@media (max-width: 768px) {
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn,
	.datacentermap-map-search-btn {
		-webkit-user-select: none;
		user-select: none;
		-webkit-touch-callout: none;
	}
}

/* Improve scrollbar visibility on mobile */
@media (max-width: 768px) {
	.datacentermap-list-items::-webkit-scrollbar,
	.datacentermap-categories-list::-webkit-scrollbar {
		width: 6px;
	}
	
	.datacentermap-list-items::-webkit-scrollbar-thumb,
	.datacentermap-categories-list::-webkit-scrollbar-thumb {
		background: #9ca3af;
		border: 1px solid #fafafa;
	}
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
	.datacentermap-list-item,
	.datacentermap-category-checkbox-label,
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn,
	.datacentermap-map-search-btn {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
		tap-highlight-color: rgba(0, 0, 0, 0.1);
	}
	
	.datacentermap-list-item:active {
		background: #f3f4f6;
		transform: none;
	}
	
	.datacentermap-toggle-list:active,
	.datacentermap-fullscreen-btn:active {
		transform: scale(0.95);
		background: #f3f4f6;
	}
	
	.datacentermap-map-search-btn:active {
		background: #374151;
		transform: scale(0.98);
	}
	
	/* Larger touch targets */
	.datacentermap-toggle-list,
	.datacentermap-fullscreen-btn {
		min-width: 44px;
		min-height: 44px;
	}
	
	.datacentermap-map-search-btn {
		min-height: 44px;
		padding: 12px 20px;
	}
}

button.mapboxgl-popup-close-button {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    top: 0px;
    right: 0;
    padding: 0;
    background: #050A28;
    color: #fff;
    border: 1px solid #fff;
}

/* UK Constituencies Map Styles */
.datacentermap-constituency-popup {
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.datacentermap-constituency-popup strong {
    color: #111827;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    letter-spacing: 0.01em;
}

.datacentermap-constituency-popup br + * {
    color: #6b7280;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

/* Mapbox popup styling for constituencies */
.mapboxgl-popup-content .datacentermap-constituency-popup {
    padding: 10px 14px;
    margin: 0;
    background: #ffffff;
    border: 1px solid #d1d5db;
}

/* Style for hover popup specifically */
.datacentermap-constituency-hover-popup .mapboxgl-popup-content {
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.datacentermap-constituency-hover-popup .mapboxgl-popup-tip {
    border-top-color: #ffffff;
}

/* Detailed Constituency Popup */
.datacentermap-constituency-detail-popup-wrapper .mapboxgl-popup-content {
    padding: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.datacentermap-constituency-detail-popup {
    width: 100%;
}

.datacentermap-constituency-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
}

.datacentermap-constituency-popup-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.datacentermap-constituency-zoom-btn {
    background: #5B9BD5;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.datacentermap-constituency-zoom-btn:hover {
    background: #4A90E2;
}

.datacentermap-constituency-zoom-btn svg {
    width: 14px;
    height: 14px;
}

.datacentermap-constituency-popup-content {
    padding: 0;
}

.datacentermap-constituency-popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.datacentermap-constituency-popup-table tr {
    border-bottom: 1px solid #f3f4f6;
}

.datacentermap-constituency-popup-table tr:last-child {
    border-bottom: none;
}

.datacentermap-popup-field {
    padding: 10px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    width: 120px;
    vertical-align: top;
    border-right: 1px solid #e5e7eb;
}

.datacentermap-popup-value {
    padding: 10px 16px;
    color: #111827;
    word-break: break-word;
}

/* Loading Indicator for Constituencies */
.datacentermap-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 200px;
}

.datacentermap-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: #5B9BD5;
    border-radius: 50%;
    animation: datacentermap-spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes datacentermap-spin {
    to {
        transform: rotate(360deg);
    }
}

.datacentermap-loading-indicator p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

/* Static Detail Popup for Constituencies */
.datacentermap-constituency-detail-popup-static {
    position: absolute;
    left: 20px;
    bottom: 90px; /* Above the toggle button (which is at bottom: 20px with ~70px height) */
    z-index: 1001;
    width: 380px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.datacentermap-constituency-detail-popup-static .datacentermap-popup-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datacentermap-constituency-detail-popup-static .datacentermap-popup-close-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    flex: 1;
    padding-right: 40px;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-zoom-btn {
    background: #5B9BD5;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
	margin-right: 20px;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-zoom-btn:hover {
    background: #4A90E2;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-content {
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-table tr {
    border-bottom: 1px solid #f3f4f6;
}

.datacentermap-constituency-detail-popup-static .datacentermap-constituency-popup-table tr:last-child {
    border-bottom: none;
}

.datacentermap-constituency-detail-popup-static .datacentermap-popup-field {
    padding: 10px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    width: 120px;
    vertical-align: top;
    border-right: 1px solid #e5e7eb;
}

.datacentermap-constituency-detail-popup-static .datacentermap-popup-value {
    padding: 10px 16px;
    color: #111827;
    word-break: break-word;
}
