html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	display: flex;
    flex-direction: column;
}

/* Styles for the header bar */

.header {
	background-color: #333;
	color: #fff;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-family: Arial;
}


/* Styles for the menu options */
#menu{
	display: flex; /* Set display property to flex to align items in a row */
	align-items: center; /* Center align items vertically */
	margin-right: auto; /* Push the menu to the left*/
	margin-left: 5%;
	
}
.menu {
	
	
	display: flex; /* Set display property to flex to align items in a row */
	margin: 0 20px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
}

/* Styles for the currently selected menu option */
.menu.active {
	text-decoration: underline;
}
#tline{
	text-align: center;
	margin: 0;
	padding-left: 200px;
	
}
#content{
	/*margin: 25px 20% 0 10px;*/
	/*height: 100%;*/
	/*height: calc(100% - var(--header-height) - var(--logo-height)); /* Subtract the height of the header and logo */
	flex:1;
	
}

.map{
	display: inline-block;
	float: right;
}
.body{
	/*display: inline-block;*/
	margin: 25px 100px;
	font-family: Arial;
}
.heading{
	font-weight: bold;
	font-size: 130%;
}
.welcome{
	/*font-weight: bold;*/
	font-size: 170%;
}

/*Styles for table from TSV*/
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    
    padding: 8px;
}

.first-col {
    white-space: nowrap;
}
