/*===========================================================
	 CSS Style for Starting Page www.psawyer.de 
     File: style.css
	 Release Notes:
		25.01.2024, P.Sawyer: First Release
=============================================================*/
body {
    font-family: Roboto, sans-serif; /* Arial, sans-serif; */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white; /* #f4f4f4; */
}
.container {
    width: 100%;
    /*max-width: 1200px;*/
	height: 100vh;
    margin: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
}

.sidebar {
    padding: 20px;
    width: 250px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* Adjust this value as needed for spacing between items */
	overflow: auto;
}

/* Hide sidebar on small screens */
@media (max-width: 600px) {
    .container {
        flex-direction: column; /* Stack sidebar on top */
		height: 100vh;
    }
    
    .sidebar {
        width: 100%; /* Make the sidebar full width */
		height: 30vh;
        order: -1; /* Ensure the sidebar is placed above the content */
    }
}



.MenuIcon {
    height: 30px;
	width: 30px;
	vertical-align: middle;
	margin-right: 5px;
}
.main-content {
    padding: 10px;
    flex: 1;
    background-color: #2c3e50;
}

.main-content iframe {
    /*  max-height: 800px; */
	height: 100vh;
    width: 100%; /* Adjust width as needed */
    height: auto;
}
.text-box {
    background-color: white;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
	height: auto;
	overflow-y: auto;
	position: fixed; 
    left: 20px;
}
.sidebar a {
    text-decoration: none;
    margin-bottom: 10px;
}
.profile-image {
    width: 200px;
    margin-bottom: 20px;
}
.PSName {
    margin: 0;
    margin-bottom: 0px;
    color: #2c3e50;
    font-size: 26px; 
}
.PStitle {
    margin-top: 0px;
    margin-bottom: 40px;
	color: rgb(128, 128, 128) /*gray;*/
}
.AIEngIcon {    
    height: 180px; /* Reduced height */
    object-fit: contain; /* Keep the aspect ratio of the images */
    padding-left: 15px;
}
.Impressum-content{
	margin: 0;
    padding: 20px;
    flex: 1;
	background-color: white; 
}
