@charset "UTF-8";
/* CSS Document */

/* Centering everything horizontally and vertically! */
html, body{
	height:100%;
}

html{
	display:table;
	margin:auto;
}

body{
	display:table-cell;
	vertical-align: top;
	text-align:center;
	color:#fc3d7d;
	background-color: #F0EFEF;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

.main {
	width: 99%;
	border-width: thick;
	align: center;
}

h1 {
	color: #2C2A2A;
}

div {
	color: #3A3838;
}

#map {
    width: 100%;
	height: 180px;
}

#mapWrap {
    width: 100%;
    height: 400px; 
} 

.rubrik {
	color: green;
	font-size: 1.5em;
}

button {
	background-color: #04AA6D;
	border: none;
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	margin: 4px 4px;
	cursor: pointer;
	border-radius: 6px;
	font-size: 1em;
	height: auto;
	text-align: center;
}

.button2 {
	background-color: #D54143;
	border: none;
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	margin: 4px 4px;
	cursor: pointer;
	border-radius: 6px;
	font-size: 1em;
	height: auto;
	text-align: center;
}

table {
	width: auto;
}

div.tablecontainer {
	overflow-x: auto;
}

td {
	color: #5D5B5B;
	font-size: 0.7em;
}

lable {
	color: #5D5B5B;
	font-size: 0.7em;
}

table.a:link {
	color: #5D5B5B;
	background-color: azure;
	text-decoration: none;
}

a:link {
	color: #5D5B5B;
	text-decoration: none;
}

select {
	width: 100%;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	background-color: #f1f1f1;
	margin: 4px 0;
	font-size: 0.9em;
}

input[type=button], input[type=submit], input[type=reset] {
	background-color: #04AA6D;
	border: none;
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	margin: 4px 4px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 1em;
}

input[type=text] {
	width: 100%;
	padding: 2px 6px;
	margin: 2px 0;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 14px;
}

/* Navbar container */
.navbar {
	width: 100%;
	overflow: hidden;
	background-color: #333;
}

.navbar a {
	float: left;
	font-size: 1em;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.dropdown {
	float: left;
	overflow: hidden;
	font-size: 0.7em;
}

.dropdown .dropbtn {
	font-size: 16px;  
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: red;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #D7D6D6;
}

.dropdown:hover .dropdown-content {
	display: block;
}


