        @font-face {
            font-family: 'Calibri';
            src: url('https://example.com/path-to-calibri.ttf') format('truetype');
        }
        body {
            display: flex;
            justify-content: center;
            align-items: top;
            font-family: 'Calibri', sans-serif;
            background: #f8f9fa;
            height: 100vh;
            margin: 0;
        }
        h1{
            color: #185365;
        }
        h2{
            color: #185365;
            margin-block-start: 45px;
        }
        h3{
            color: #185365;
        }
        p{
            color: #185365;
        }
        button{
            font-size: 13px;
        }
        a:link {
            color: #185365;
            font-weight: bold;
            text-decoration: none;
        }
        a:visited {
            color:  #185365;
        }
        a:hover {
            color: #1C6272;
        }
        a:active {
            color:  #185365;
        }
        #container {
            width: 100vw;
            background: #EFEDE8;
            height: 100vh;
        }
        #sidebar {
            width: 25vw;
            height: 90vh;
            padding: 3vw;
            padding-top: 0.5vw;
            overflow-y: auto;
            float: left;
            margin-right: 3vw;
        }
        #header {
            position: absolute;
            top: 1.5vw;
            left: 34vw;
        }
        .introduction {
            font-size: 1.17em;
            line-height: 1.5em;
            margin-bottom:2em;
        }
        .baustein {
            cursor: pointer;
            padding: 10px;
            margin-bottom: 5px;
            background: #fff;
            border-radius: 5px;
            color: #185365;
        }
        .frage-item {
            display: flex;
            flex-direction: column;
            padding: 10px;
            border-top: 1px solid #185365;
            margin-bottom: 25px; /* Stellt den Abstand zwischen den Fragen sicher */
            position: relative;
        }
        .option-group {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5px;
        }
        .option-group span {
            display: flex;
            align-items: center;
            font-size: 12px;
            margin-right: 10px; /* Sorgt für gleichmäßigen Abstand zwischen Optionen */
        }
        .option-group svg {
            width: 10px;
            height: 10px;
            min-width: 10px;
            min-height: 10px;
            margin-right: 5px;
        }
        #fragen-container p {
            margin: 10px 0 5px;
            font-weight: regular;
            font-size: 14px;
        }
        #fragen-container input {
            width: 100%;
            padding: 8px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        #download-pdf {
            padding: 10px;
            background: #185365;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .accordion {
            background-color: #185365;
            color: #ffffff;
        }
        .sub-accordion {
            background-color: #5D8793;
            color: #ffffff;
        }
        .accordion, .sub-accordion {
            padding: 12px;
            cursor: pointer;
            border: none;
            text-align: left;
            width: 100%;
            font-size: 1em;
            margin-top: 5px;
            margin-bottom: 5px;
            border-radius: 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .accordion::after, .sub-accordion::after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-right: 2px solid white;
            border-bottom: 2px solid white;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
        }
         .accordion.active {
              
        }
        .accordion.active::after, .sub-accordion.active::after {
            transform: rotate(-135deg);
        }
        .accordion-content {
            display: none;
            padding: 00px 25px 20px 0;
        }
        .sub-accordion-content {
            display: none;
            padding-left: 0px;
        }
        .sub-accordion-description {
            font-size: 1em;
            color: #185365;
            margin-bottom: 5px;
        }
        .accordion-description {
            font-size: 1em;
            font-weight: bold;
            padding: 5px 0px;
            color: #185365;
            margin-bottom: 5px;
        }
        .info-button {
            position: absolute;
            right: -20px;
            cursor: pointer;
            font-size: 12px;
            color: #185365;
        }
        .popup {
            display: none;
            position: absolute;
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            width: 200px;
        }
        .delete-button {
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 3px 8px;
            font-size: 0.8vw;
            cursor: pointer;
            color: #e73f0c;
        }
        .delete-button:hover {
            background-color: #185365;
            color: #fff;
        }
        #download-csv {
            background-color: #185365;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 10px;
            cursor: pointer;
            margin-left: 10px;
        }
        td{
            text-align: center;
            padding:0px 20px;
            color: #185365;
            font-size: 12px;
        }
        table{
            margin-bottom: 30px;
        }
        #logo-container {
            position: absolute;
            bottom: 3vw;
            height: 2vw;
            padding-top: 0.5vw;
            border-top: 1px solid #185365;
            width: 90%;
        }
   
        #logo-container img {
            max-width: 100%;
            height: auto;
        }