body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
}

#map {
	width: 100%;
	height: 100%;
}

#topBar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#radarLegend {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: white;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#toolbar {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 1);
	color: white;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#toolbar button {
	background-color: transparent;
	color: white;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	margin: 0 5px;
	font-size: 14px;
	border-radius: 4px;
}

#toolbar button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#toolbar button.active {
	background-color: rgba(255, 255, 255, 0.2);
}

#hoverData {
	position: absolute;
	bottom: 50px;
	left: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
	text-align: center;
	justify-content: space-between;
	min-width: 150px;
	font-size: 10px;
}

#activeRadarStation {
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
	text-align: center;
	justify-content: space-between;
	min-width: 150px;
	font-size: 10px;
	display: none;
}
