@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

:root {
	--bg: #edf6f9;
}

body {
font-family: 'Open Sans', sans-serif;
	background-color: var(--bg) ;
	font-size:14px;
	margin: 5px;
		
}


/* Style for table with alternating row colors */
table {
	border-collapse: collapse;
	width: 100%;
  }

  table tr {
	background-color: #ffffff;
  }
  
  table tr:nth-child(even) {
	background-color: #f2f2f2;
  }
  
  table th, table td {
	text-align: left;
	padding: 8px;
  }
  
  table th {
	background-color: #4CAF50;
	color: white;
  }


  /* Hover effect for table rows */
table tr:hover {
	background-color: #ddd;
  }







  #map_canvas {
	height: 90vh;
    clear: both;
}