/* /Components/Components/DocuCard.razor.rz.scp.css */
/* optional spacing / sizing tweaks */
.docu-card[b-1yx89yj7ka] {
    scroll-margin-top: 110px; /* so anchored jumps don't hide under sticky header */
    width: 75vw;
    min-width: 600px;
}

.docu-left-img[b-1yx89yj7ka] {
    max-height: 200px;
    object-fit: contain;
}

.docu-right-img[b-1yx89yj7ka] {
    max-height: 400px;
    object-fit: contain;
}

/* Right column content: centered (horizontal) but text left on desktop */
.docu-right .docu-text p[b-1yx89yj7ka] {
    max-width: 70ch;
}
/* /Components/Components/FeatureCard.razor.rz.scp.css */
.feature-card[b-uwaralsz33] {
    position: relative;
    border-radius: 1rem;
    background: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 900px;
}

.feature-card-stripe[b-uwaralsz33] {
    position: absolute;
    width: 150%;
    height: 250px;
    left: -25%;
    top: 50%;
    transform: rotate(var(--stripe-angle, -10deg));
    background: var(--stripe-color, #d2ffff);
    opacity: 1.00;
    z-index: 0;
}

.feature-card-content[b-uwaralsz33] {
    position: relative;
    top: 50%;
    left: var(--content-left-pos, -20%);
    z-index: 1;
}


.feature-card-title[b-uwaralsz33] {
    font-size: 2.100rem;
    font-weight: 600;
    margin-bottom: 2.0rem;
}

.feature-card-text[b-uwaralsz33] {
    font-size: 1.500rem;
    line-height: 1.5;
    height: 50%;
    width: 50%;
}

.feature-card-image[b-uwaralsz33] {
    width: 150px;
}

@media (min-width: 576px) {
    .feature-card-image[b-uwaralsz33] {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .feature-card-image[b-uwaralsz33] {
        width: 250px;
    }
}
/* /Components/Components/VerticalTimeline.razor.rz.scp.css */


.release-timeline[b-fxtmuv6y4g] {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Vertical line */
.release-timeline[b-fxtmuv6y4g]::before {
    content: "";
    position: absolute;
    left: 150px; /* Position der Linie */
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #333333;
}

/* Single item */
.release-timeline-item[b-fxtmuv6y4g] {
    position: relative;
    padding: 25px 0;
}

/* Circle on the Line */
.release-timeline-item[b-fxtmuv6y4g]::before {
    content: "";
    position: absolute;
    left: 141px; 
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #333333;
}

/* Release-Header */
.release-timeline-header[b-fxtmuv6y4g] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}

/* Version */
.release-timeline-version[b-fxtmuv6y4g] {
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Date */
.release-timeline-date[b-fxtmuv6y4g] {
    text-align: right;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Release card */
.release-timeline-card[b-fxtmuv6y4g] {
    margin-left: 190px; /* etwas Abstand rechts von der Linie */
    background-color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: auto;
    max-width: 650px;
}

/* Bullet list */
.release-timeline-bullets[b-fxtmuv6y4g] {
    margin: 0;
    padding-left: 1.5rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-jzldi8xu2u] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jzldi8xu2u] {
    flex: 1;
}

.sidebar[b-jzldi8xu2u] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-jzldi8xu2u] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-jzldi8xu2u]  a, .top-row[b-jzldi8xu2u]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-jzldi8xu2u]  a:hover, .top-row[b-jzldi8xu2u]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-jzldi8xu2u]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-jzldi8xu2u] {
        justify-content: space-between;
    }

    .top-row[b-jzldi8xu2u]  a, .top-row[b-jzldi8xu2u]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jzldi8xu2u] {
        flex-direction: row;
    }

    .sidebar[b-jzldi8xu2u] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-jzldi8xu2u] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-jzldi8xu2u]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-jzldi8xu2u], article[b-jzldi8xu2u] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-jzldi8xu2u] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-jzldi8xu2u] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Documentation.razor.rz.scp.css */
/* Reserve some space on the right for the fixed TOC (desktop) */
@media (min-width: 992px) {
    .content-with-toc[b-3bdkin74c0] {
        padding-right: 320px; /* TOC width + gap */
    }
}

/* Fixed TOC (top-right) */
.toc-fixed[b-3bdkin74c0] {
    position: fixed;
    top: 90px; /* adjust if you have a sticky navbar */
    right: 24px;
    width: 280px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    z-index: 1030; /* above content */
}

    /* Optional: highlight active link a bit more */
    .toc-fixed .nav-link.active[b-3bdkin74c0] {
        font-weight: 600;
    }

/* Make images look nice in cards */
.doc-img[b-3bdkin74c0] {
    width: 100%;
    height: auto;
    border-radius: .5rem;
    border: 1px solid rgba(0,0,0,.08);
}
/* /Components/Pages/Faq.razor.rz.scp.css */
#faqAccordion .accordion-button:not(.collapsed)[b-oetdlv6gl7] {
    background-color: #0C94AE; /* gewünschte Farbe */
    color: #212529; /* Textfarbe */
    box-shadow: revert; /* Bootstrap-Standard entfernen */
}

#faqAccordion .accordion-item[b-oetdlv6gl7] {
    border-color: #0c94ae;
}

#faqAccordion .accordion-item:has(.accordion-button:not(.collapsed))[b-oetdlv6gl7] {
    border-color: black;
    border-width: 3px;
}

#faqAccordion .accordion-button:focus[b-oetdlv6gl7] {
    border-color: #0c94ae;
    box-shadow: 0 0 0 0.25rem rgba(12, 148, 174, 0.35);
}
/* /Components/Pages/LicensePresenter.razor.rz.scp.css */
.licensecontainer[b-baqe6xg2s7] {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-bottom: 10px;
}

.licenseborder[b-baqe6xg2s7] {
    border: 2px solid #ccc;
    background-color: #f0f0f5;
    padding: 10px;
    display: inline-block;
    word-wrap: break-word;
    width: 900px;
}

.copybutton[b-baqe6xg2s7] {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 4px 8px;
    cursor: pointer;
    background: transparent;
}

.alertbox[b-baqe6xg2s7] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}
