@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
    	body {
    		font-family: "Roboto Condensed", sans-serif;
    		margin:auto;
    		line-height:150%;
    		display:flex;
    	}

      /* Abstände */
        h1, h2, h3, h4 {
            margin-top: 30px;
            margin-bottom:5px;
            line-height:150%;
        }

        /* Zähler für die verschiedenen Überschriften-Ebenen definieren */
        h1 {
            counter-reset: h2counter; /* Setzt den Zähler für h2 zurück */
            counter-increment: h1counter; /* Zählt h1 hoch */
            display: block;
            border-bottom:2px solid #000;
            font-weight:500;
            text-transform: uppercase;
            margin-top:60px;
        }

        h2 {
            counter-reset: h3counter; /* Setzt den Zähler für h3 zurück */
            counter-increment: h2counter; /* Zählt h2 hoch */
            font-weight:400;
        }

        h3 {
            counter-reset: h4counter; /* Setzt den Zähler für h4 zurück */
            counter-increment: h3counter; /* Zählt h3 hoch */
            font-weight:400;
        }

        h4 {
            counter-increment: h4counter; /* Zählt h4 hoch */
            font-weight:400;
            margin-bottom:5px;
        }

        h1 + p,h2 + p,h3 + p,h4 + p,h5 + p,h6 + p {
        	margin-top:5px;
        }



        /* Formatierung und Nummerierung */
        h1::before {
            content: counter(h1counter) ". ";
            font-weight: 500;
        }

        h2::before {
            content: counter(h1counter) "." counter(h2counter) ". ";
            font-weight:400;
        }

        h3::before {
            content: counter(h1counter) "." counter(h2counter) "." counter(h3counter) ". ";
            font-weight:400;
        }

        h4::before {
            content: counter(h1counter) "." counter(h2counter) "." counter(h3counter) "." counter(h4counter) ". ";
            font-weight:400;
        }

        :root {
  			--color-control: #0070C0;
  			--color-mod-source: #2eb77a;
  			--color-device: #FFC000;
  			--color-macro: #CC0099;
  			--color-markers:#fd921d;
		}

		.marker-stroke{
			stroke: var(--color-markers);
		}

		.marker-fill{
			fill: var(--color-markers);
		}

		/* Table Container for Responsiveness */
		.table-container {
		    width: 100%;
		    overflow-x: auto; /* Enables horizontal scroll on small screens */
		    margin: 20px 0;
		    border-radius: 8px;
		    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
		}

		/* Base Table Styling */
		table {
		    width: 100%;
		    border-collapse: collapse;
		    background-color: #fff;
		    font-family: "Roboto Condensed", sans-serif;
		    font-size: 0.95rem;
		    color: #333;
		    text-align: left;
		}

		/* Header Styling */
		table th {
		    background-color: #1a1a1a; /* Matches your dark header theme */
		    color: #ffffff;
		    font-weight: 500;
		    text-transform: uppercase;
		    padding: 12px 15px;
		    letter-spacing: 0.5px;
		    border: 1px solid #333;
		}

		/* Cell Styling */
		table td {
		    padding: 10px 15px;
		    border: 1px solid #e0e0e0;
		    line-height: 1.4;
		}

		/* Zebra Striping */
		table tr:nth-child(even) {
		    background-color: #f8f9fa;
		}

		/* Hover Effect */
		table tr:hover {
		    background-color: #f1f1f1;
		    transition: background-color 0.2s ease;
		}

		/* Bold the first column or specific labels if needed */
		table td strong {
		    color: #000;
		}

		/* Code Pill Styling for Table Functions */
		.code-pill {
		    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
		    background-color: #f0f0f0; /* Light grey background */
		    color: var(--color-mod-source); /* A slight tint often used for code string highlights */
		    padding: 2px 6px;
		    border-radius: 4px;
		    border: 1px solid #e1e1e1;
		    font-size: 0.9em;
		    white-space: nowrap;
		}

		/* Optional: change color on hover if the row is hovered */
		tr:hover .code-pill {
		    background-color: #e8e8e8;
		    border-color: #d1d1d1;
		}

		/* Mobile Specific Tweaks */
		@media screen and (max-width: 600px) {
		    table {
		        font-size: 0.85rem;
		    }
		    table th, table td {
		        padding: 8px 10px;
		    }
		}

		.svg-wrap{
			width:100%;
			max-width: 1400px;
			margin:0 auto;
		}

		.bg-svg{
			width:100%;
			height:auto;
			display: block;
		}

		.overlay-rect{
			rx:10px;
			stroke: rgb(0,255,196);
			stroke-width: 10px;
		}

		.overlay-rect.control{
			stroke:var(--color-control);
		}

		.overlay-rect.mod-source{
			stroke:var(--color-mod-source);
		}

		.overlay-rect.macro{
			stroke:var(--color-macro);
		}

		.overlay-rect.device{
			stroke:var(--color-device);
		}

		.macro{
			color:var(--color-macro);
			font-weight:bold;
		}

		.device{
			color:var(--color-device);
			font-weight:bold;
		}

		.mod-source{
			color:var(--color-mod-source);
			font-weight:bold;
		}

		.control{
			color:var(--color-control);
			font-weight:bold;
		}

        .header {
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100%;
		    display: flex;
		    justify-content: space-between;
		    align-items: center;
		    background-color: #f9f9f9;
		    padding: 0px 20px;
		    color: #fff;
		    z-index: 1000;
		    border-bottom:1px solid #ccc;
		}

		.logo {
		    height: 40px;
		    margin-right:auto;
		}

		.title {
		    font-size: 24px;
		    color: #666;
		    padding-right: 40px;
		    font-weight: 300;
		}

        .help-box{
        	margin: 30px 0;
        }

        .help-box-heading{
        	background-color: #00445c;
			color: #fff;
			font-weight: bold;
			text-transform: uppercase;
			padding: 20px;
			display: inline-block;
			margin-bottom: -20px;
			z-index: 1;
        }

        .help-box-content{
        	display: block;
        	color:#00445c;
        	background-color: rgba(57, 118, 148, 0.1);
        	border:2px solid #00445c;;
        	padding:20px 20px;
        	margin-left:20px;
        	z-index:2;
        	position: relative;
        }

        .help-box-content li{
        	margin:10px 0;
        }

        .hero{
        	text-align: center;
        	margin:5% auto 15% auto;

        }

        .hero img{
        	margin: 30px auto;
        	width:80%;
        }

        .main-title{
        	font-size:30px;
        }

        .product-name{
        	font-size:40px;
        	margin-bottom:10px;
        	line-height:120%;
        }

        .img{
        	border-radius:10px;
        }

        .icon{
        	max-width:50px;
        }

        .inline-icon{
        	height:1.2em;
        	width:1.2em;
        	vertical-align: middle;
        }

        img{
        	margin:10px 0;
        	border-radius:10px;
        	max-width:100%;
        }

        img.small{
        	transform: scale(0.5);
    		transform-origin: top left; /* Passt die Position des Bilds an */
        }

        img.full-width{
        	width:100%;
        }

        image {
        	border-radius:10px;
        }

        .bottom-logo{
        	width:200px;
        	height:auto;
        }

        .container {
    		display: flex;
    		flex-wrap: wrap;
    		gap:0 20px;
		}

		.section-1-6{
			width: calc(16.666% - 10px);
			box-sizing: border-box;
		}

		.section-2-6{
			width: calc(33.333% - 10px);
			box-sizing: border-box;
		}

		.section-3-6 {
    		width: calc(50% - 10px);
    		box-sizing: border-box;
		}

		.section-4-6{
			width: calc(66.666% - 10px);
			box-sizing: border-box;
		}

		.section-5-6{
			width: calc(83.333% - 21px);
			border-left:1px solid #cecece;
			padding-left:10px;
		}

		.section-5-6 .section-5-6 {
    		border: none;
		}

		.section-6-6{
			width: 100%;
		}

		.shadow{
			box-shadow: 0 0 10px 10px rgba(0,0,0,0.1);
		}

		.important{
			border-left: 2px solid #00445C;
			color: #00445c;
			background-color: rgba(57, 118, 148, 0.1);
			padding: 20px 20px;
			border-radius: 0px 10px 10px 0;
			margin-top:15px;
		}

		.important:before{
			content: "";
			position: absolute;
			background-image: url("../images/warning.png");
			display: block;
			width: 30px;
			height: 30px;
			margin-left: -60px;
			background-size: 30px;
			margin-top: -20px;
		}

		.section-5-6 .important:before, .help-box-content .important:before{
			content: "";
			position: absolute;
			background-image: url("../images/warning.png");
			display: block;
			width: 20px;
			height: 20px;
			margin-left: 0px;
			background-size: 20px;
			margin-top: -10px;
		}

		.button{
			background-color: #000;
			color: #fff;
			padding: 10px;
			border-radius: 4px;
			text-decoration: none;
			font-weight: bold;
		}


		.button:hover{
			background-color: #3e3e3e;
		}

		#toc-container {
		    position: sticky; /* Macht die Sidebar sticky */
		    top: 60px; /* Abstand vom oberen Rand */
		    width: 350px; /* Breite des Inhaltsverzeichnisses */
		    max-height: calc(100vh - 40px); /* Maximalhöhe für die Sidebar */
		    overflow-y: auto; /* Scrollbar für Überlauf */
		    background-color: #f9f9f9; /* Hintergrundfarbe */
		    padding: 20px; /* Innenabstand */
		    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schatten für besseren Kontrast */
		    z-index: 10; /* Damit es über anderen Inhalten liegt */
		    box-sizing: border-box; /* Inkludiere Padding und Border in die Breite */
		    padding-bottom:60px;
			}

		#toc {
            background: #f9f9f9;
            margin:0;
        }

		#toc:hover{
			cursor: pointer;
		}

		#toc ul {
		    list-style: none;
		    padding-left: 0;
		    overflow: hidden;
		    transition: max-height 0.4s ease-out;
		    margin:0;
		}
        #toc a {
            text-decoration: none;
            color: #000;
        }
        #toc a:hover {
            text-decoration: underline;
        }

		#toc ul.visible {
		    max-height: none; /* Nichts setzen, wenn es sichtbar ist */
		}

        .toc-h1 {
		    font-weight: bold;
		    text-transform: uppercase;
		    font-size: 1em;
		    margin: 15px 0 0 5px;
		    border-bottom: 1px solid #bfbfbf;
		}

		.toc-h2 {
		    font-weight: 500;
		    margin: 0px 0 0 0;
		    font-size:.9em;
		}

		.toc-h3 {
		    margin: 5px 0 0 0;
		    font-size:.9em;
		}

		.toc-h4 {
		    font-weight: 300;
		    font-size:.8em;
		}

		.main {
		    flex: 1; /* Nimmt den restlichen Platz ein */
		    margin-left: 20px; /* Abstand zwischen Sidebar und Hauptinhalt */
		    padding: 5%;
    		max-width: 1200px;
    		margin:auto;
		}

		#toc-toggle{
			display: none;
		}

		iframe.video{
			aspect-ratio: 16 / 9; 
			width: 100%;
		}

		@media (max-width: 976px) {
    		body{
    			flex-direction: column;
    		}

    		img {
    			border-radius:5px;
    		}

		    .hero {
		        text-align: center;
		        margin: 15vh auto;
		        /* height: 100vh; */
		        display: flex;
		        flex-direction: column;
		        justify-content: center;
		    }

    		.section-1-6, .section-2-6, .section-3-6, .section-4-6, .section-5-6, .section-6-6{
        		width: 100%;
        		border:none;
        		padding-left:0;
    		}

    		.important{
    			margin-left:35px;
    			border-radius: 0px 5px 5px 0;
    		}

    		.important:before{
    			margin-left: -50px;
				background-size: 20px;
				width: 20px;
				height: 20px;
    		}

    		 #toc-container {
		        position: sticky; /* Macht die Sidebar sticky */
		        top: 60px; /* Abstand vom oberen Rand, unterhalb des Headers */
		        width: 100%;
		        max-height: calc(100vh - 60px); /* Maximalhöhe für die Sidebar abzüglich Header */
		        overflow-y: auto; /* Scrollbar für Überlauf */
		        background-color: #f9f9f9;
		        z-index: 10;
		        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schatten für besseren Kontrast */
		        padding:0;
		    }

		    #toc {
		        padding: 0px 10px;
		        max-height: 0;
		        overflow-y: auto;
		        transition: opacity 1s ease, max-height 0.4s ease-out;
		        padding-top:45px;
		    }

		    #toc > ul {
		    	transition: opacity 1s ease;
		    	opacity: 0;
		    	padding-bottom: 60px;
		    }

		    #toc .toc-children {
		    	padding-bottom: 0;
		    }

		    #toc-toggle {
		        position:fixed;
		        top:60px;
		        width:100%;
		        display: block;
		        text-align: center;
		        font-weight: bold;
		        cursor: pointer;
		        padding: 10px;
		        background: #f1f1f1;
		        color: #333;
		        border-bottom: 1px solid #ccc;
		        font-weight:400;
		        z-index:9;
		    }

		    #toc.visible > ul {
		    	opacity: 1;
		    }

		}

		.toc-collapsible {
		    overflow: hidden;
		    max-height: 0;
		    transition: max-height 0.3s ease, opacity 0.3s ease;
		    opacity: 0;
		}

		.toc-collapsible.expanded {
		    max-height: 500px;
		    opacity: 1;
		}

		/* Collapsible TOC: h1 row layout */
		.toc-h1-row {
		    display: flex;
		    align-items: center;
		    justify-content: space-between;
		    gap: 6px;
		}

		.toc-h1-row a {
		    flex: 1;
		}

		/* Expand/collapse icon */
		.toc-expand-icon {
		    flex-shrink: 0;
		    width: 18px;
		    height: 18px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    /*border: 1px solid #bbb;*/
		    border-radius: 3px;
		    cursor: pointer;
		    color: #666;
		    font-size: 14px;
		    line-height: 1;
		    transition: background-color 0.2s ease;
		}

		.toc-expand-icon::before {
		    content: "➕";
		    display: block;
		    transition: transform 0.3s ease;
		}

		.toc-expand-icon.rotated::before {
		    transform: rotate(45deg);
		}

		.toc-expand-icon:hover {
		    background-color: #e8e8e8;
		}

		/* Children list: collapsed by default */
		.toc-children {
		    list-style: none;
		    padding-left: 0;
		    margin: 0;
		    max-height: 0;
		    overflow: hidden;
		    opacity: 0;
		    transition: max-height 0.35s ease, opacity 0.3s ease;
		}
