.header{
	padding: 0rem;
	position: fixed;
	top: 0;
	z-index: 1000;
	background-color: white;
	padding-bottom: 1rem;
	height: 70px;
	width: 100%;
}
.header li{
	padding-top: 0;
}
main{
	margin-top: 70px;
	padding: 1rem;
	background-color: #eefbfb;
}
footer{
	background-image: url('../img/berlin_satellit.png');
}
.with-sidebar {
    display: flex;
    /* height: 100vh; /* Volle Bildschirmhöhe */
	width: 100%;
	overflow: hidden;
}

.sidebar {
    width: 250px; /* oder eine feste Breite wie 250px */
    overflow-y: auto; /* Falls die Seitenleiste länger ist als der Bildschirm */
}

.inner-content {
    padding: 20px;
    box-sizing: border-box;
	flex-grow: 1;
}

.sidebar a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.sidebar a.active {
	background-color: #158ddeda;
	font-weight: bold;
}
