  body {
	font-family: 'Roboto', sans-serif;
	margin: 0px;
  }
  

.textBox {
	width: 100%;
	border: none;
  background: none;
  border-bottom: 1px solid black;
  outline: none; /* Optional: Remove the outline when the input is focused */
  }

#bodyHeading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 10vh;
	background-color: #2196f3;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #fff;
}

#heading {
    font-size: 2em;
    font-weight: bold;
}

.sightingButtons {
	text-align: center;
}

.sightingButtons button {
	margin: 10px 5px;
}

#sightingDetailsTable {
	width:90%;
	margin-left: 20px;
	margin-right: 20px;
	border-collapse: separate;
  	border-spacing: 0 10px; /* Adjust the vertical spacing as needed */
}

#sightingsContent {
	margin: 20px 20px;
}

#speciesList {
	display: none;
}

#behaviourTable {
	width:100%;
}

.behaviourImage {
	width:75%;
}

.behaviourLabel {
	text-align: center;
	column-span: 2;
}

.behaviourCheckbox {
  text-align: center;
  vertical-align: middle;
}

#behaviourTable td img {
	max-width:100%;
	height: auto;
}

.page {
	margin-top: 10vh; /* Adjust this value if needed */
}

ul.tab {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
}

ul.tab li {
	float: left;
	width: 25%;
}

ul.tab li a {
	display: block;
	padding: 8px;
	background-color: #2196f3;
	text-decoration: none;
	text-align: center;
	color: #fff;
}

ul.tab li a:hover {
	background-color: #ddd;
}

button {
	background-color: #add8e6;
	border: none;
    padding: 10px 20px;
    border-radius: 5px;
	font-size: large;
}

.underline {
	border-bottom: 1px grey solid;
}

.listHighlight {
	color: #fe6b9e;
    font-weight: bold;
}