html,body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	height: 100%;
	color: #1f1412;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#refreshButton {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
  z-index: 400;
}

.header h1 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header a {
	font-size: 16px;
	color: #199900;
	text-decoration: none;
	margin-left: 24px;
}

.header a:hover {
	color: #116600;
	text-decoration: underline;
}

.header a span {
	margin-left: 4px;
}

.header a svg {
	vertical-align: middle;
}

#map {
	width: 100%;
	height: 100vh;
	border: 1px solid #1f1412;
}

.sidepanel-content {
	font-size: 1rem;
}

.sidepanel-content h4 {
	margin-top: 0;
	margin-bottom: 0;
}

.sidepanel-content a {
	text-decoration: none;
	font-size: 1rem;
	color: #199900;
	transition: color 0.3s ease-in;
}

.sidepanel-content a:hover {
	color: #116600;
	text-decoration: underline;
}

.button1 {
	background-color: #4CAF50; /* Grønn farge */
	border: none;
	color: white;
	padding: 12px 24px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}


table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 12px;
	font-family: Arial, sans-serif;
	text-align: left;
	border: 1px solid #ddd;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
th, td {
	padding: 6px 15px;
}
th {
	background-color: #4CAF50;
	color: white;
}
tr:nth-child(even) {
	background-color: #f2f2f2;
}
tr:hover {
	background-color: #f1f1f1;
}
