
/*
wspr.rocks colors
	#EFEFEF  almost white, eg Watts and Hours labels on map sliders
	#C0C0C0  menu head background light grey-white
	#808080  background grey of night and auto map buttons
	#696969  menu body background dark warm grey
	#282828  very dark warm grey (Chrome search field)
	#E8CD7D  goldish search button
	#B0FE8A  light green nav bar tabs
	
	#5C5D5F  dark grey for mapkit text backgrounds
*/

	/* notification */
#notice{
	/* font-size:1rem; */
	font-size:1.2rem;
	color:#EFEFEF;
	background-color:#5C5D5F;
	border: 1px solid silver;
	border-radius:6px;
	padding-right:0.5rem;   /* top | right | bottom | left */
	text-align: left;
	width:auto;
	max-width:400px;
	position:absolute;
	top: 25%;
	left: 15%;
}

#floater {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none; /* Crucial for map interaction */
	color:black;
	background-color:white;
	padding-left:0.5rem; padding-right:0.5rem;
	font-size:1rem;
	border-radius: 4px;
	z-index: 10000;
	/* opacity:0.9; */
	/* transition: opacity 0.1s ease; */ /* Subtle fade */
	will-change: transform; /* Hint to the browser for optimization */
}

/*  style="margin-left:1rem; width:8rem; background-color:#E8CD7D; border:none; border-radius:4px; color:black; height:2rem;" */
#user_search_button{
	width:13rem;
	padding: 2px 4px 2px 4px; 
	font-size: 1.1rem; 
	color: #282828;
	background-color: lime; /* goldish button color */
	border: 1px solid #696969;
	border-radius: 4px;
}

.custom-select-wrapper {
	position: relative;
	display: inline-block;
	background-color: #E8CD7D; /* goldish button color */
	border: 1px solid #696969;
	border-radius: 4px;
	padding: 0;
	overflow: hidden;
	width: 160px;
}

.custom-select-wrapper select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	
	width: 100%;
	padding: 2px 4px 2px 4px; 
	font-size: 1.1rem; 
	color: #282828;
	background: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	position: relative;
	z-index: 2; /* Sits above the fake arrow */
}

.custom-select-wrapperOLD::after {
	content: '▼';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 9px;
	color: #282828;
	pointer-events: none; /* Allows click to pass through to the select */
	z-index: 1;
}

/* Hover effect */
.custom-select-wrapper:hover {
	filter: brightness(1.1);
}

/* Focus state: Good for accessibility */
.custom-select-wrapper select:focus {
	box-shadow: 0 0 0 2px rgba(232, 205, 125, 0.5);
}



/* ========  start global propagation  ======== */  

button.info_btn {
	color: var(--background-color-clr);
	border: none;
	color:black;
	padding: 4px;
	border-radius:4px;
	font-size:1rem;
	margin-left:1rem;
	margin-bottom:1rem;
}
	
button.info_btn:hover{
	color:green;
	background-color:white;
}


/* THE GRADIENT MARKER: Sharp concentric rings via pixel hard-stops */
.bullseye-mkr-gradient {
	border-radius: 50%;
	position: absolute;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 4px 10px rgba(0,0,0,0.8);
	pointer-events: auto !important;
	z-index: 1000;
	cursor: crosshair;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bullseye-mkr-gradient:hover {
	box-shadow: 0 0 0 2px white, 0 0 20px white;
	z-index: 2000;
}

.txsign_marker {
	background-color:#FF7070;  /* #FFFF7F gold   #FF4D4D red  #FF6867*/
	color:black;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	padding:0px;
	padding-left: 4px;
	padding-right:4px;
	border-radius: 2px;
	cursor: pointer;
}

.rxsign_marker {
	background-color:#3BFF3A;  /* lime */
	color:black;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	padding:0px;
	padding-left: 4px;
	padding-right:4px;
	border-radius: 2px;
	cursor: pointer;
}

.dot_marker {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	cursor: pointer;
	/* help visibility on some backgrounds */
	border: 1px solid black; 
}

/* format marker_info info container div */
.marker_info_txt{
	padding:1rem;
	font-size:1.1rem;
	color: black;
}

#map_legend {
	position: absolute; bottom: 30px; left: 20px;
	background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px);
	color: #fff; padding: 12px; border-radius: 8px;
	font-family: monospace; font-size: 11px;
	border: 1px solid rgba(255,255,255,0.2);
	pointer-events: none; z-index: 5000;
}
.leg-item { display: flex; align-items: center; margin-bottom: 4px; }
.leg-dot { width: 10px; height: 10px; border-radius: 2px; margin-right: 8px; border: 1px solid #000; }


/* coloured hours ribbon  */


.sun-ribbon {
	display: flex;
	width: 500px;
	height: 16px;
	border: 1px solid #222;
}

.hour-tile {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.hour-label {
	font-size: 10px;
	color: white;
/*	text-shadow: 1px 1px 2px black; */ /* Ensures visibility on yellow/lime blocks */
	pointer-events: none;
}

.selected_hour .hour-label {
	color: black !important;
	text-shadow: none !important;
}

.selected_hour {
	background-color: lime !important;  /* #32CD32 !important; A slightly deeper lime for better contrast */
	/* box-shadow: inset 0 0 10px rgba(0,0,0,0.5);  Adds depth to the selection */
}

/* ========  misc   ======== */  

hr.thin_line {
  border: none; /* Removes the default border */
  height: 1px; /* Sets the thickness to 1 pixel (or less, e.g., 0.5px if needed) */
  background-color: silver; /* Sets the color of the line */
}


.dump-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Courier New', monospace;
	font-size: 12px;
	background-color: #1a1a1a;
	color: #eee;
}

.dump-table th {
	position: sticky;
	top: 0;
	background-color: #333;
	padding: 10px;
	text-align: left;
	border-bottom: 2px solid #555;
	z-index: 10;
}

.dump-table td {
	padding: 6px 10px;
	border-bottom: 1px solid #333;
	white-space: nowrap; /* Prevents long version strings from wrapping */
}

.dump-table tr:hover {
	background-color: #2a2a2a; /* Subtle hover for the data dump view */
}
//--------// gui

