  /* CSS layout */
html {
	height: 100%;
}
body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}

#logoImg {
    position: absolute;
    left: 0px;
    top: 30px;
    width:200px;
    padding: 5px;
}

#left_col {
    position: absolute;
    left: 0px;
    top: 200px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	width: 200px;
}

#top_nav {
    clear: both;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	height: 20px;
	padding: 5px;
	padding-left: 220px;
	background-color: rgba(150, 150, 150, 1);
}

#container {
	min-width: 600px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	height: 80%;
}


#page_content {
    position: absolute;
    left: 220px;
    top: 40px;
    overflow: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling:touch;
    height: calc( 100vh - 20px - 20px );
    width: calc( 100vw - 200px - 20px );
    font-family: 'Open Sans', sans-serif;
}

#I1 {
    width: 98%;
    height: 93%;
	font-family: 'Open Sans', sans-serif;
}

#footer {
    position: absolute;
    left: 0px;
    top: calc( 100vh - 20px - 20px );
	font-family: 'Open Sans', sans-serif;
	font-size : 10px;
	text-align: center;
    height: 20px;
    width: 100%;
}

#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 95%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
}

#cookie-bar p {
    margin: 0;
    font-size: 14px;
}

#accept-cookies {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-bar.hidden {
    display: none;
}

