/* General Page Layout */
body {
    display: flex;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Sidebar */
.sidebar {
    width: max(180px, 10%); /* Adjust the width as needed */
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    height: 100%; /* Full height */
    background-color: #f0f0f0; /* Light grey background */
    border-right: 1px solid #c0c0c0; /* Light grey border */
    padding: 15px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo Styling */
.sidebar .logo {
    max-width: 100%; /* Ensure logo fits within sidebar width */
    margin-top: auto; /* Push logo to the bottom */
	margin-bottom: 30px;
}

.toctitle{
	font-size: 30px;
	margin-bottom: 10px;
	color: #e30613; /* SEW-Eurodrive red color */
}

/* ToC in Sidebar */
.toc {
    list-style-type: none;
    padding-left: 0;
}

.toc li {
	margin-top: 8px;
    margin-bottom: 8px;
}

.toc a {
	font-size: 25px;
    text-decoration: none;
    color: #e30613; /* SEW-Eurodrive red color */
}

.toc a:hover {
	font-size: 25px;
    text-decoration: underline;
    color: #b30510; /* Darker red */
}

/* Main Content */
.main {
    margin-left: max(200px, calc(10% + 20px)); /* Adjust to match the width of the sidebar + padding */
    padding: 20px;
}

.main h1, .main h2, .main h3 {
    color: #e30613; /* SEW-Eurodrive red color for headings */
}

.main p {
    margin-bottom: 15px;
    color: #333; /* Dark grey text color */
}

.main ul {
    list-style-type: disc;
    padding-left: 20px;
}

.main li {
    margin-bottom: 8px;
}

.main strong {
    font-weight: bold;
    color: #000; /* Black color for strong text */
}
