/* globals (colour and type) */

:root {
    --white-color:                  #ffffff;
    --primary-color:                #2C6E91;
    --secondary-color:              #5C946E;
    --third-color:                  #A3B18A;
    --fourth-color:                 #A0522D;
    --fifth-color:                  #7F5539;
    --section-bg-color:             #f5f5f5;
    --dark-color:                   #2F4858;
    --sand-color:                   #F5F1E6;
    --p-color:                      #454f53;
    --ink-color:                    #253237;
    /* old colour palette */
	/*--white-color:                #ffffff;
    --primary-color:                #F6AE2D;
    --secondary-color:              #F26419;
    --third-color:                  #33658A;
    --fourth-color:                 #2F4858;
    --fifth-color:                  #c1e9ff;
    --section-bg-color:             #f5f5f5;
    --dark-color:                   #000000;
    --p-color:                      #657b88;*/
    
    --body-font-family:             "Helvetica Neue", Arial, Helvetica, sans-serif;
  
    --h1-font-size:                 80px;
    --h2-font-size:                 42px;
    --h3-font-size:                 36px;
    --h4-font-size:                 32px;
    --h5-font-size:                 24px;
    --h6-font-size:                 52px;
    --h7-font-size:                 24px;
    --p-font-size:                  18px;
    --menu-font-size:               18px;
    --copyright-text-font-size:     16px;
  
    --font-weight-normal:           400;
    --font-weight-medium:           500;
    --font-weight-bold:             700;
  }

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */
.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}
.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */
.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */
.leaflet-container {
	background: var(--white-color);
	outline-offset: 1px;
	}
.leaflet-container a {
	color: var(--primary-color);
	}
.leaflet-zoom-box {
	border: 2px dotted var(--secondary-color);
	background: var(--p-color);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */
.leaflet-bar {
	box-shadow: 0 1px 5px var(--ink-color);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: var(--white-color);
	border-bottom: 1px solid var(--white-color);
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: var(--ink-color);
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: var(--white-color);
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: var(--white-color);
	color: var(--p-color);
	}
.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */
.leaflet-control-layers {
	box-shadow: 0 1px 5px var(--ink-color);
	background: var(--white-color);
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: var(--p-color);
	background: var(--white-color);
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid var(--white-color);
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* general typography 
.leaflet-container {
	font-size: 0.75rem;
	font-size: 9px;
	}
*/

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
	background: var(--white-color);
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: var(--ink-color);
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 9px;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-control-attribution svg {
	display: inline !important;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid var(--p-color);
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: var(--white-color);
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid var(--p-color);
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid var(--p-color);
	}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}

/* popup */
.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 10px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;
	margin: -10px auto 0;
	pointer-events: auto;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: var(--white-color);
	color: var(--p-color);
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: var(--p-color);
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: var(--p-color);
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid var(--white-color);
	border-top: 1px solid var(--white-color);
	}
.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid var(--p-color);
	}

/* div icon */
.leaflet-div-icon {
	background: var(--white-color);
	border: 1px solid var(--p-color);
	}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 3px;
	color: var(--ink-color);
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */
.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: var(--white-color);
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: var(--white-color);
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: var(--white-color);
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: var(--white-color);
	}

/* Printing */
@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		--webkit-print-color-adjust: exact;
	}
	}

/* Leaflet Search input focus ring + border */
.leaflet-control-search .search-input:focus {
  outline: none; /* remove default blue ring */
  border: 1px solid var(--secondary-color); /* border color */
}

/* base input styling to match your theme */
.leaflet-control-search .search-input {
  border: 1px solid #bbb;
  border-radius: 6px;
  padding: 6px 10px;
  font: 14px var(--body-font-family);
  color: var(--p-color);
}



/* Leaflet hover tooltip */
.leaflet-tooltip.popup-like-tip {
	background: #fff;
	border-radius: 10px; 
	color: var(--dark-color);
	box-shadow: 0 3px 14px rgba(0,0,0,0.2);
	padding: 8px 10px;
}

.tm-map {
    width: calc(10vw - 40%); /* Set the width of the map to 100% of the viewport width minus 40px padding */
    height: calc(100vh - 300px); /* Set the height of the map to 100% of the viewport height minus 40px padding */
    margin: 0px; /* Add 20px margin on all sides to create padding */
    margin-bottom: 100px;
}

.custom-navbar {
  z-index: 2000000; /* Higher than the default to ensure it stays on top */
  padding-top: 0.20rem; /* default is 0.5–1rem */
  padding-bottom: 0.20rem;
}

/* style for all modern browsers (Chrome, Edge, Firefox etc.) */
/*style for the circular object to drag*/
.year-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* remove default styling */
  appearance: none;
  width: 15px; /* Adjust width */
  height: 15px; /* Adjust height */
  background: var(--secondary-color);
  border-radius: 50%; /* make it circular */
  cursor: pointer;
}

/* Style for Firefox */
.year-slider::-moz-range-thumb {
  width: 20px;     
  --webkit-appearance: none;
  height: 20px; 
  background: var(--secondary-color); 
  border-radius: 50%;
  cursor: pointer;
}

/* Style for the actual rectangle that the circle moves in */
input[type='range'] {
  --webkit-appearance: none;
  background: rgb(202, 202, 202);
  margin-bottom: .3rem;
  margin: 10px;
  border-radius: 0%;
}

/*Dropdown menu specific (making sure they look the same in Safari and Chrome)*/
select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-image: initial;
  border-radius: 10px; /* keep corners rounded */
  border: 1px solid transparent; /* remove dark default border */
  outline: none; /* remove black/orange outline */
  background-clip: padding-box; /* cleaner rounded corners */
}

.year-slider {
  -webkit-appearance: none; /* Chrome/Safari */
  appearance: none;         /* Standard */
}

/* Also target your map dropdown class if used */
.dropdown-select {
  border-radius: 10px;
  border: 1px solid transparent;
  outline: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15) !important;
}

/* Prevent orange/blue ring on focus/active across browsers */
select:focus,
select:active {
  outline: none;
}

/* Explicitly keep the shadow on your Leaflet dropdowns when focused/active */
.leaflet-control .dropdown-select:focus,
.leaflet-control .dropdown-select:active {
  outline: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22); /* same as default or slightly stronger */
  border-color: transparent;
}


/* Make hovered option background green (supported in most modern browsers) */
select option:hover,
select option:focus,
select option:active {
  background-color: var(--secondary-color);
  color: #fff;
  outline: none; /* remove outlines on option focus */
}

/* Remove outlines from labels used alongside dropdowns */
label,
label:focus,
label:active {
  outline: none !important;
}

/* Improve Windows/Firefox focus behavior a bit */
select:-moz-focusring {
  color: inherit;
  text-shadow: none;
  outline: none; /* ensure no dotted focus outline */
}

/* Optional: pointer cursor on hover (nice UX) */
select:hover,
.dropdown-select:hover {
  cursor: pointer;
}

.mypopup-with-tip .leaflet-popup-content-wrapper {
	color: var(--dark-color);
	font-size: 12px;
	zoom: 1;
}

/* Tooltip styled like your popup */
.leaflet-tooltip.hover-popup {
  background: #fff;
  border-radius: 10px; 
  color: var(--dark-color);
  box-shadow: 0 3px 14px rgba(0,0,0,0.2);
  padding: 8px 10px;
}

/*Legend specific*/
.legend {
  padding: 4px 8px;
  font-size: 13px;
  background: var(--white-color); 
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  color:  var(--ink-color); 
  /* height: 30px */
}

.legend span {
  color:  var(--sand-color);
  position: relative;
  bottom: 3px;
}
.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
}
.legend .colorcircle {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-top: 0px;
}
.legend .circlepadding {
  border-radius: 50%;
  margin-top: 0px;
  background: rgba(255, 255, 255, 0.8);
}

/* am4 specific */
#chartdiv {
width: 100%;
height: 500px;
}

/* Style the tab */
.tab {
overflow: hidden;
background-color: var(--fourth-color);
width: 90%;
}

/* Style the buttons inside the tab */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 4px 6px;
transition: 0.3s;
color: white;
font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 12px;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: var(--primary-color);
}

/* Create an active/current tablink class */
.tab button.active {
background-color: var(--secondary-color);
}

/* Style the tab content = description text below tabs */
.tabcontent {
display: none;
padding: 6px 12px;
border-top: none;
font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 15px;
width: 365px;
}

/* css to customize Leaflet default styles  */
.popupCustom .leaflet-popup-tip,
.popupCustom .leaflet-popup-content-wrapper {
  background: var(--white-color);
  color: var(--fourth-color);
  padding-right: 20px;
}

/* Make the solute + year dropdowns less rounded */
.leaflet-control .dropdown-select {
  border-radius: 10px;  

}

/* Base dropdown look */
.dropdown-select {
  /* your existing rules: border, font-size, etc. */
  border: 1px solid transparent;
  outline: none;

  /* hide native arrow so we can use our own */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* space on the right for the arrow */
  padding-right: 1.5rem;

  /* arrow pointing DOWN by default */
  background-image: url("data:image/svg+xml;utf8,\	<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'>\ <path fill='currentColor' d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0.5rem center;
	background-size: 0.75rem;
	}

.component-select {
  /* Same shadow as others, or slightly stronger if you want it to stand out */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
  margin-bottom: 4px;
}


/* ============================================
   Desktop: bump legend + dropdown sizes
   (keep current size on mobile)
============================================ */
@media (min-width: 769px) {
  /* Legend swatch circles – bigger dots */
  .legend .colorcircle {
    width: 18px;           /* was 14px */
    height: 18px;          /* was 14px */
    margin-right: 12px;    /* a bit more space before text */
  }

  /* Legend text a bit larger too */
  .legend {
    font-size: 1rem;       /* was 0.9rem */
    padding: 8px 12px;     /* more padding to match bigger dots */
  }

  /* Dropdowns (generic + Leaflet map controls) */
  .dropdown-select,
  .leaflet-control .dropdown-select {
    font-size: 1rem;       /* bigger text */
    padding: 8px 14px;     /* taller + wider hit area */
    min-width: 260px;      /* was 200px */
  }

  /* Basemap / solute dropdowns even wider */
  .leaflet-control .basemap-select,
  .leaflet-control .solute-select {
    min-width: 380px;      /* was 350px */
  }

  /* Layer control labels */
  .leaflet-control-layers label {
    font-size: 1rem;       /* was 0.9rem */
  }

  /* Search box inside the map */
  .leaflet-control-search .search-input {
    font-size: 1rem;       /* was 0.9rem */
    padding: 10px 14px;    /* slightly taller */
  }
}

/* ============================================
   Force DM Sans font on all map UI elements
============================================= */

.legend,
.legend *,

.dropdown-select,
.leaflet-control .dropdown-select,

.leaflet-control,
.leaflet-control *,

.leaflet-control-layers label,
.leaflet-control-layers label *,

.leaflet-control-search .search-input,

.leaflet-popup,
.leaflet-popup *,

.leaflet-tooltip,
.leaflet-tooltip * {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif !important;
}


/* ============================================
   Leaflet Search suggestions (name + small ID)
============================================ */
.leaflet-control-search .custom-search-tip {
  display: block;
  padding: 6px 10px;
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  color: var(--ink-color);
  text-decoration: none;
  line-height: 1.25;
}

.leaflet-control-search .custom-search-tip:hover,
.leaflet-control-search .custom-search-tip:focus {
  background: var(--sand-color);
  color: var(--dark-color);
  text-decoration: none;
}

/* Top line: county name (or main label) */
.leaflet-control-search .custom-search-tip .search-main-line {
  font-weight: 600;              /* strong but not super heavy */
  font-size: 0.9rem;
  color: var(--ink-color);
}

/* Second line: smaller, softer ID text */
.leaflet-control-search .custom-search-tip .search-sub-line {
  margin-top: 2px;
  font-size: 0.75rem;
  color: #6c757d;                /* soft grey; tweak if you want */
}

/* Make the search box a fixed width so we can match it */
.leaflet-control-search .search-input {
  width: 260px;              /* tweak as you like */
  box-sizing: border-box;
}

/* Make the suggestions dropdown the same width as the input */
.leaflet-control-search .search-tooltip {
  width: 100%;               /* fill the control width */
  box-sizing: border-box;
}

/* Make each suggestion fill the whole row */
.leaflet-control-search .custom-search-tip {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Search input: use body font */
.leaflet-control-search .search-input {
  width: 260px;                 /* keep your width */
  box-sizing: border-box;
  font-family: var(--body-font-family);
}

/* Suggestions: overall font */
.leaflet-control-search .custom-search-tip {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 10px;
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  color: var(--ink-color);
  text-decoration: none;
  line-height: 1.25;
  font-family: var(--body-font-family);
}

.leaflet-control-search .custom-search-tip:hover,
.leaflet-control-search .custom-search-tip:focus {
  background: var(--sand-color);
  color: var(--dark-color);
  text-decoration: none;
}

/* Top line: NAME in all caps */
.leaflet-control-search .custom-search-tip .search-main-line {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--body-font-family);
  color: var(--ink-color);
  text-transform: uppercase;   
}

/* Second line: GEOID in black */
.leaflet-control-search .custom-search-tip .search-sub-line {
  margin-top: 2px;
  font-size: 0.75rem;
  color: #000000;               
}

/* Tooltip width matches input */
.leaflet-control-search .search-tooltip {
  width: 100%;
  box-sizing: border-box;
}

