body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Toplinje */
.top-bar {
    display: flex;
    align-items: center;
    height: 60px;
    background-color: #F0F0F0;
    color: green;
    /* background-color: #2c3e50; */
    /* color: white; */
	padding: 0 20px;
	border-bottom: 2px solid #bdc3c7;
}
.top-bar img {
    height: 50px;
    margin-right: 10px;
}
.top-bar h1 {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 30px;
}

/* Layout for indhold og menu */
.main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Menu i venstre side */
.side-menu {
    width: 200px;
    background-color: #F0F0F0;
    /* background-color: #34495e; */
    display: flex;
    flex-direction: column;
	border-right: 2px solid #bdc3c7;
}
.side-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: green;
    text-decoration: none;
    position: relative;
}
.side-menu a:hover {
    background-color: lightgreen;
}
/* Aktiv markering */
.side-menu a.active {
    background-color: lightblue;
}
.side-menu span {
    margin-left: 10px;
}

/* Indholdsfelt */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
}
.page-header {
    padding: 15px 20px;
    background-color: white;
    border-bottom: 2px solid #bdc3c7;
}
.page-header h2 {
    margin: 0;
    font-size: 18px;
}
.page-content {
    padding: 20px;
    flex: 1;
}
