/* _content/rewacoConstration2/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hk5jstz8g2] {
    height: 100%;
    font-family: var(--bs-font-sans-serif);
}

[b-hk5jstz8g2] .icon {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: center center;
    -webkit-mask-mask-position: center center;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-hk5jstz8g2] #menu-top {
    display: block;
}

    [b-hk5jstz8g2] #menu-top.hidden {
        display: none;
    }

[b-hk5jstz8g2] .icon-back {
    -webkit-mask-image: url("images/back.svg");
    mask-image: url("images/back.svg");
}

[b-hk5jstz8g2] .icon-menu {
    -webkit-mask-image: url("images/menu.svg");
    mask-image: url("images/menu.svg");
}

[b-hk5jstz8g2] .content {
    overflow: auto;
    display: flex;
    flex-direction: column;
}

[b-hk5jstz8g2] .menu-button:hover .icon {
    background-color: var(--dxbl-btn-hover-color);
}

.nav-buttons-container[b-hk5jstz8g2] {
    display: flex;
    gap: 10px;
    padding: 2rem 0rem;
}

    .nav-buttons-container[b-hk5jstz8g2]  .menubutton-float-end {
        margin-left: auto;
    }

    .nav-buttons-container[b-hk5jstz8g2]  .dxbl-btn-icon-only {
        --dxbl-btn-padding-x: 0.75rem;
        --dxbl-btn-padding-y: 0.25rem;
    }

@media (max-width: 768px) {
    [b-hk5jstz8g2] .layout-sidebar {
        grid-area: header / header / header / header !important;
    }
}

@media (max-width: 768px) {
    [b-hk5jstz8g2] #menu-top {
        display: none;
    }
}

.auto-expanded[b-hk5jstz8g2] {
    display: none;
}
/* _content/rewacoConstration2/Components/Layout/NavMenu.razor.rz.scp.css */
#sidebar[b-ajpxgdbb5c] {
    min-width: 15rem;
    max-width: 15rem;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.1s ease-out;
    height: 100%;
    max-height: 100%;
    background-image: linear-gradient(180deg, var(--bs-primary) 0%, var(--bs-black) 150%);
    display: block;
    
}

    /* auto-expanded soll sichtbar machen; keine globale Versteck-Regel hier */

    #sidebar .menu-closeonclick-placeholder[b-ajpxgdbb5c] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
    }

[b-ajpxgdbb5c] .sidebar-header {
    padding: 2rem 1rem;
}

.logo[b-ajpxgdbb5c] {
    text-align: center;
}

[b-ajpxgdbb5c] .menu-button-container {
    align-self: center;
}

.menu-button[b-ajpxgdbb5c] {
    padding: 0.375rem;
    width: 1rem;
    height: 1rem;
    background-image: url("images/menu.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

[b-ajpxgdbb5c] .menu.display-mobile {
    margin-bottom: 2rem;
}

[b-ajpxgdbb5c] .menu {
    background-color: inherit;
}

    [b-ajpxgdbb5c] .menu .dxbl-menu-item-list {
        gap: 0.5rem;
    }

[b-ajpxgdbb5c] .menu-item {
    color: var(--bs-white);
}

[b-ajpxgdbb5c] .icon {
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 0.5rem;
    opacity: 0.4;
}

[b-ajpxgdbb5c] .home-icon {
    background-image: url("images/home.svg");
}

[b-ajpxgdbb5c] .weather-icon {
    background-image: url("images/weather.svg");
}

[b-ajpxgdbb5c] .counter-icon {
    background-image: url("images/counter.svg");
}


[b-ajpxgdbb5c] .docs-icon {
    mask-image: url("images/doc.svg");
    -webkit-mask-image: url("images/doc.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-ajpxgdbb5c] .demos-icon {
    mask-image: url("images/demos.svg");
    -webkit-mask-image: url("images/demos.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dxbl-btn-color);
}

[b-ajpxgdbb5c] .footer-button:hover .demos-icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-ajpxgdbb5c] .footer-button:hover .docs-icon {
    background-color: var(--dxbl-btn-hover-color);
}

[b-ajpxgdbb5c] .footer {
    text-align: center;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
}

    [b-ajpxgdbb5c] .footer .icon {
        margin-left: 0;
    }

#sidebar.auto-expanded[b-ajpxgdbb5c]  .layout-item {
    display: block;
}

#sidebar.auto-expanded[b-ajpxgdbb5c]  .footer {
    display: block;
}

@media (max-width: 768px) {
    #sidebar[b-ajpxgdbb5c] {
        min-width: inherit;
        max-width: inherit;
        display: none; /* vorher: block – jetzt standardmäßig verstecken */
    }

    #sidebar .menu-closeonclick-placeholder[b-ajpxgdbb5c] {
        display: block;
    }

    #sidebar.auto-expanded[b-ajpxgdbb5c] {
        position: fixed;
        width: 100%;
        z-index: 3;
        display: block; /* sichtbar, wenn per Button 'auto-expanded' gesetzt wird */
    }

        #sidebar.auto-expanded[b-ajpxgdbb5c]  .sidebar-header {
                border-bottom: 1px solid var(--bs-white);
            }

            #sidebar.auto-expanded .menu-button[b-ajpxgdbb5c] {
                background-image: url("images/close.svg");
                width: 1.875rem;
                height: 1.875rem;
            }

        #sidebar:not(.auto-expanded)[b-ajpxgdbb5c]  .dxbl-gridlayout-root {
            gap: unset !important;
        }

    .logo[b-ajpxgdbb5c] {
        text-align: inherit;
    }

    [b-ajpxgdbb5c] .menu-button-container {
        display: block;
    }

    [b-ajpxgdbb5c] .layout-item {
        display: none;
    }

    [b-ajpxgdbb5c] .footer {
        display: none;
    }
}
/* _content/rewacoConstration2/Components/Pages/Article.razor.rz.scp.css */
.counter-block[b-nwznc8uxrg] {
    display: flex;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    border-radius: 1rem;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 16.875rem;
    height: 100rem;
    position: relative;
    margin-left: 2rem;
    max-width:60vh;
    max-height:80vh; 
}

    .counter-block .counter-content[b-nwznc8uxrg] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .counter-block .counter-count[b-nwznc8uxrg] {
        font-size: 7.5rem;
        font-weight: 400;
        line-height: 7.75rem;
    }

    .counter-block .counter-block-back[b-nwznc8uxrg] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bs-body-color);
        opacity: 0.05;
        border-radius: 1rem;
        z-index: -2;
    }
.main[b-nwznc8uxrg] {
    flex: 1; /* Füllt den restlichen Platz */
    background: #f0f0f0;
    padding: 20px;
    overflow: auto; /* falls Inhalt scrollbar werden soll */
}
/* _content/rewacoConstration2/Components/Pages/ArticleDetails.razor.rz.scp.css */
/* Root scale vars */
:root[b-pal0cnilre] {
    --ad-gap: 1rem;
    --ad-gap-sm: .65rem;
    --ad-radius: .75rem;
    --ad-border: #e2e5e9;
    --ad-card-bg: var(--bs-body-bg, #fff);
    --ad-text-light: #5d646b;
    --ad-shadow: 0 6px 18px -4px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
}

/* Basis für NoChrome Layout falls nicht vorhanden */
.nochrome-page[b-pal0cnilre] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ad-page-bg, var(--bs-body-bg));
}

.details-wrapper[b-pal0cnilre] {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100dvh; /* stabile Höhe auch auf Mobile (dynamische Viewport Einheit) */
    padding: clamp(.75rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

.details-card[b-pal0cnilre] {
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    background: var(--ad-card-bg);
    border: 1px solid var(--ad-border);
    border-radius: var(--ad-radius);
    box-shadow: var(--ad-shadow);
    padding: clamp(1rem, 2.2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.details-header[b-pal0cnilre] { display:flex; flex-direction:column; gap:.35rem; border-bottom:1px solid var(--ad-border); padding-bottom:.75rem; }
.details-title[b-pal0cnilre] { margin:0; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height:1.15; font-weight:600; }
.details-subtitle[b-pal0cnilre] { font-size:.9rem; color:var(--ad-text-light); letter-spacing:.5px; }

.details-grid[b-pal0cnilre] { display:grid; gap:var(--ad-gap); grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); }
.details-item[b-pal0cnilre] { display:flex; flex-direction:column; gap:.4rem; background:#f8f9fa; border:1px solid #eceff2; border-radius:.55rem; padding:.85rem .95rem; min-height:92px; }
.details-item .label[b-pal0cnilre] { font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; font-weight:600; color:#4f5962; }
.details-item .value[b-pal0cnilre] { font-size:.95rem; font-weight:500; line-height:1.35; word-break:break-word; }
.value.multiline[b-pal0cnilre] { white-space:pre-wrap; }

.details-notes[b-pal0cnilre] { display:flex; flex-direction:column; gap:.5rem; background:#f4f9ff; border:1px solid #d4e6f9; padding:1rem 1.1rem; border-radius:.6rem; }
.details-footer[b-pal0cnilre] { margin-top:.25rem; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:#768087; border-top:1px solid var(--ad-border); padding-top:.6rem; }

/* Platz unten für feste Aktionsleiste */
.details-card[b-pal0cnilre] { padding-bottom: 4.5rem; /* Platz für feste Leiste */ }

.details-fab-bar[b-pal0cnilre] {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: .75rem;
    justify-content: center;
    padding: .65rem .75rem calc(env(safe-area-inset-bottom,0) + .65rem);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border-top: 1px solid #e0e4e7;
    box-shadow: 0 -2px 6px -2px rgba(0,0,0,.08);
    box-sizing: border-box;
    z-index: 50;
}

.details-fab-bar .dx-button[b-pal0cnilre] { min-width: 230px; font-size: .95rem; }

@media (prefers-color-scheme: dark) {
    .details-fab-bar[b-pal0cnilre] { background: rgba(255,255,255,0.08); border-top:1px solid #2f353a; }
}

.status[b-pal0cnilre] { width:100%; max-width:640px; margin:2rem auto; padding:1rem 1.25rem; border-radius:.75rem; font-size:1rem; text-align:center; line-height:1.4; background:#f1f5f9; border:1px solid #d8dee4; }
.status.loading[b-pal0cnilre] { background:#e8f2ff; border-color:#b7d6ff; }
.status.error[b-pal0cnilre] { background:#ffecec; border-color:#ffb4b4; color:#a80000; }
.status.empty[b-pal0cnilre] { background:#fcf8e8; border-color:#e9dc9d; }

.button-link[b-pal0cnilre] { text-decoration:none; }

@media (max-width: 820px) {
    .details-card[b-pal0cnilre] { gap:1rem; }
    .details-grid[b-pal0cnilre] { gap:var(--ad-gap-sm); }
    .details-item[b-pal0cnilre] { padding:.75rem .85rem; min-height:unset; }
    .details-wrapper[b-pal0cnilre] { padding:.9rem; }
}

@media (max-width: 480px) {
    .details-title[b-pal0cnilre] { font-size:1.4rem; }
    .details-grid[b-pal0cnilre] { grid-template-columns:1fr; }
    .details-wrapper[b-pal0cnilre] { padding:.75rem; }
}

@media (max-height: 640px) {
    .details-card[b-pal0cnilre] { padding:1rem 1rem 1.25rem; }
}

/* Dark-Mode deaktiviert: Wir erzwingen überall das helle Schema */
@media (prefers-color-scheme: dark) {
    :root[b-pal0cnilre] { color-scheme: light; }
}
/* _content/rewacoConstration2/Components/Pages/ArticleFiles.razor.rz.scp.css */
.stacklayout-item[b-6pmdeiohom] {
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    height: 100%;
    padding: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stacklayout-item[b-6pmdeiohom]:before {
        content: " ";
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0.4;
    }

.stacklayout-header[b-6pmdeiohom]:before {
    background-color: var(--bs-red);
}

.stacklayout-content[b-6pmdeiohom]:before {
    background-color: var(--bs-yellow);
}

.stacklayout-left-side-bar[b-6pmdeiohom]:before {
    background-color: var(--bs-green);
}

.stacklayout-right-side-bar[b-6pmdeiohom]:before {
    background-color: var(--bs-info);
}

.stacklayout-footer[b-6pmdeiohom]:before {
    background-color: var(--bs-blue);
    opacity: 0.5;
}

@media (max-width: 575.98px) {
    .stacklayout-item[b-6pmdeiohom] {
        font-size: 0.9em;
    }
}



.svg-explorer-grid[b-6pmdeiohom] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.3rem;
}

.svg-explorer-item[b-6pmdeiohom] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0rem;
    background: #fafbfc;
    box-shadow: 0 2px 2px #0001;
}

.svg-icon-large[b-6pmdeiohom] {
    width:36px;
    height: 36px;
    margin-bottom: 0.0rem;
     
}

.svg-filename[b-6pmdeiohom] {
    font-size: 0.9rem;
    text-align: center;
    word-break: break-word;
}
/* _content/rewacoConstration2/Components/Pages/ArticleMaster.razor.rz.scp.css */
.counter-block[b-fpq2anr9mz] {
    display: flex;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    border-radius: 1rem;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 16.875rem;
    height: 100rem;
    position: relative;
    margin-left: 2rem;
    max-width:60vh;
    max-height:80vh; 
}

    .counter-block .counter-content[b-fpq2anr9mz] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .counter-block .counter-count[b-fpq2anr9mz] {
        font-size: 7.5rem;
        font-weight: 400;
        line-height: 7.75rem;
    }

    .counter-block .counter-block-back[b-fpq2anr9mz] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bs-body-color);
        opacity: 0.05;
        border-radius: 1rem;
        z-index: -2;
    }
/* _content/rewacoConstration2/Components/Pages/ArticleMoreDetails.razor.rz.scp.css */
/* Styling für erweiterte Artikeldetailseite */
.more-wrapper[b-ok3vkiqscv] { height:100dvh; padding:clamp(.75rem,2vw,1.5rem); padding-bottom:5.5rem; display:flex; flex-direction:column; gap:.75rem; overflow-y:auto; box-sizing:border-box; }
.more-card[b-ok3vkiqscv] { background:#fff; border:1px solid #e1e5e9; border-radius:.75rem; padding:clamp(1rem,2vw,1.5rem); padding-bottom:4.5rem; box-shadow:0 6px 18px -6px rgba(0,0,0,.08),0 2px 4px -1px rgba(0,0,0,.04); display:flex; flex-direction:column; gap:1rem; }
.more-header[b-ok3vkiqscv] { border-bottom:1px solid #e1e5e9; padding-bottom:.5rem; display:flex; flex-direction:column; gap:.35rem; }
.more-title[b-ok3vkiqscv] { margin:0; font-size:clamp(1.25rem,2.2vw,1.75rem); line-height:1.15; font-weight:600; }
.more-sub[b-ok3vkiqscv] { font-size:.85rem; color:#606a70; letter-spacing:.5px; }
.more-grid[b-ok3vkiqscv] { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:.85rem; }
.more-item[b-ok3vkiqscv] { background:#f7f9fb; border:1px solid #e4e8eb; border-radius:.55rem; padding:.25rem .35rem; display:flex; flex-direction:column; gap:.4rem; min-height:44px; }
.more-item .label[b-ok3vkiqscv] { font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; font-weight:600; color:#4f5962; }
.more-item .value[b-ok3vkiqscv] { font-size:.92rem; font-weight:500; line-height:1.3; word-break:break-word; }
.more-notes[b-ok3vkiqscv] { background:#f4f9ff; border:1px solid #d4e6f9; padding:1rem 1.1rem; border-radius:.6rem; display:flex; flex-direction:column; gap:.5rem; }
.more-footer[b-ok3vkiqscv] { margin-top:.25rem; font-size:.7rem; letter-spacing:.08em; color:#7a848b; border-top:1px solid #dde2e6; padding-top:.5rem; }
.more-fab-bar[b-ok3vkiqscv] { position:fixed; left:0; bottom:0; width:100%; display:flex; justify-content:center; gap:.75rem; padding:.65rem .75rem calc(env(safe-area-inset-bottom,0) + .65rem); background:rgba(255,255,255,.85); backdrop-filter:blur(8px) saturate(150%); -webkit-backdrop-filter:blur(8px) saturate(150%); border-top:1px solid #e0e4e7; box-shadow:0 -2px 6px -2px rgba(0,0,0,.08); z-index:60; }
.more-fab-bar .dx-button[b-ok3vkiqscv] { min-width:160px; }
.more-files-section[b-ok3vkiqscv] { margin-top:.75rem; background:#fff; border:1px solid #e1e5e9; border-radius:.75rem; padding:1rem 1.1rem 1.25rem; box-shadow:0 4px 12px -4px rgba(0,0,0,.06),0 2px 4px -1px rgba(0,0,0,.05); }
.files-title[b-ok3vkiqscv] { margin:0 0 .85rem; font-size:1.05rem; font-weight:600; letter-spacing:.5px; }
.files-empty-hint[b-ok3vkiqscv] { font-size:.8rem; color:#6b7379; }

/* etwas Luft falls Files-Komponente sehr groß wird */
.more-files-section:has(.dx-listbox)[b-ok3vkiqscv] { padding-bottom:0.75rem; }

@media (max-width:560px){ .more-grid[b-ok3vkiqscv] { grid-template-columns:1fr; } }

/* Gruppierte Felder */
.more-all-fields[b-ok3vkiqscv] { margin-top:1rem; background:#fff; border:1px solid #e1e5e9; border-radius:.75rem; padding:1rem 1.1rem; box-shadow:0 4px 12px -4px rgba(0,0,0,.06),0 2px 4px -1px rgba(0,0,0,.05); }
.more-all-fields h3[b-ok3vkiqscv] { margin:0 0 .5rem; font-size:1.05rem; font-weight:600; letter-spacing:.02em; }
.more-all-fields h4[b-ok3vkiqscv] { margin:.75rem 0 .35rem; font-size:.95rem; font-weight:600; color:#3c4650; }
.group-block[b-ok3vkiqscv] { margin-bottom:.5rem; }
.more-all-table[b-ok3vkiqscv] { width:100%; border-collapse:collapse; }
.more-all-table th[b-ok3vkiqscv] { text-align:left; padding:4px 8px; white-space:nowrap; font-weight:600; color:#4f5962; border-bottom:1px dashed #e5e9ec; }
.more-all-table td[b-ok3vkiqscv] { padding:4px 8px; border-bottom:1px dashed #f0f2f4; word-break:break-word; }
.more-all-table .multiline[b-ok3vkiqscv] { white-space: pre-wrap; }
.more-bottom-spacer[b-ok3vkiqscv] { height:3rem; }
/* _content/rewacoConstration2/Components/Pages/ArticleStockEdit.razor.rz.scp.css */
/* Styling für Lagerbestände bearbeiten */
.stock-wrapper[b-6dhm0hla9o] { height: 100dvh; padding: clamp(.75rem,2vw,1.5rem); padding-bottom: 5.5rem; display:flex; flex-direction:column; gap:.75rem; overflow-y:auto; box-sizing:border-box; }
.stock-card[b-6dhm0hla9o] { background:#fff; border:1px solid #e1e5e9; border-radius:.75rem; padding:clamp(1rem,2vw,1.5rem); box-shadow:0 6px 18px -6px rgba(0,0,0,.08),0 2px 4px -1px rgba(0,0,0,.04); display:flex; flex-direction:column; gap:1rem; }
.stock-header[b-6dhm0hla9o] { border-bottom:1px solid #e1e5e9; padding-bottom:.5rem; display:flex; flex-direction:column; gap:.35rem; }
.stock-title[b-6dhm0hla9o] { margin:0; font-size:clamp(1.25rem,2.2vw,1.5rem); font-weight:600; }
.stock-sub[b-6dhm0hla9o] { font-size:.85rem; color:#606a70; }
.stock-grid[b-6dhm0hla9o] { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
fieldset[b-6dhm0hla9o] { border:1px solid #e4e8eb; border-radius:.5rem; padding:.75rem .85rem; }
legend[b-6dhm0hla9o] { font-size:.9rem; font-weight:600; color:#3c4650; padding:0 .35rem; }
.form-row[b-6dhm0hla9o] { display:flex; flex-direction:column; gap:.35rem; margin:.5rem 0; }
.form-row label[b-6dhm0hla9o] { font-size:.8rem; color:#4f5962; }
.form-row input[b-6dhm0hla9o] { padding:.45rem .55rem; border:1px solid #dfe5ea; border-radius:.4rem; font-size:.95rem; }
.status.ok[b-6dhm0hla9o] { color:#0a7; }
.status.error[b-6dhm0hla9o] { color:#c33; }
.stock-fab-bar[b-6dhm0hla9o] { position:fixed; left:0; bottom:0; width:100%; display:flex; justify-content:center; gap:.75rem; padding:.65rem .75rem calc(env(safe-area-inset-bottom,0) + .65rem); background:rgba(255,255,255,.85); backdrop-filter:blur(8px) saturate(150%); -webkit-backdrop-filter:blur(8px) saturate(150%); border-top:1px solid #e0e4e7; box-shadow:0 -2px 6px -2px rgba(0,0,0,.08); z-index:60; }
.stock-fab-bar .dx-button[b-6dhm0hla9o] { min-width:160px; }
/* _content/rewacoConstration2/Components/Pages/Counter.razor.rz.scp.css */
.counter-block[b-46jmek78sa] {
    display: flex;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    border-radius: 1rem;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 16.875rem;
    height: 17rem;
    position: relative;
    margin-left: 2rem;
}

    .counter-block .counter-content[b-46jmek78sa] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .counter-block .counter-count[b-46jmek78sa] {
        font-size: 7.5rem;
        font-weight: 400;
        line-height: 7.75rem;
    }

    .counter-block .counter-block-back[b-46jmek78sa] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bs-body-color);
        opacity: 0.05;
        border-radius: 1rem;
        z-index: -2;
    }
/* _content/rewacoConstration2/Components/Pages/Index.razor.rz.scp.css */
[b-b78ixli14k] .welcome-gridlayout {
    margin: auto;
    width: auto;
    height: auto;
}

    [b-b78ixli14k] .welcome-gridlayout .dxbl-gridlayout-root {
        align-content: center;
        justify-content: center;
    }


[b-b78ixli14k] .title {
    text-align: center;
}

[b-b78ixli14k] .welcome-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

[b-b78ixli14k] .welcome-card {
    width: 26.25rem;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    border-radius: 1rem;
    color: var(--bs-link-color-rgb);
    gap: 1.5rem;
    text-decoration: none;
    position: relative;
}

    [b-b78ixli14k] .welcome-card:hover {
        box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

    [b-b78ixli14k] .welcome-card .welcome-card-img {
        width: 6.5rem;
        height: 6.5rem;
        margin-top:1.5rem;
        
    }

    [b-b78ixli14k] .welcome-card .welcome-card-text {
        font-size: 1.75rem;
        font-weight: 600;
        letter-spacing: 0em;
        text-align: center;
        text-decoration: unset;
    }

[b-b78ixli14k] .icon-fill {
    fill: var(--bs-primary);
}

[b-b78ixli14k] .welcome-card .welcome-card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bs-body-color);
    opacity: 0.5;
    border-radius: 1rem;
    z-index: -2;
}


.wrapper[b-b78ixli14k] {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.svg-background[b-b78ixli14k] {
    position: absolute;
    inset: 0;
    background-image: url('/images/constraction.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Nur das Bild transparent */
    z-index: 0;
}

.foreground-content[b-b78ixli14k] {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: black;
}

.btn-like[b-b78ixli14k] {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    user-select: none;
    margin-bottom: 1rem;
}

    .btn-like:hover[b-b78ixli14k], .btn-like:focus[b-b78ixli14k] {
        background-color: #0056b3;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        text-decoration: none;
        outline: none;
    }



/* Beispiel: Passe die welcome-card und das Layout für kleine Bildschirme an */
@media (max-width: 600px) {
    /* Gesamten sichtbaren Bereich vertikal zentrieren */
    .foreground-content[b-b78ixli14k] {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem; /* etwas kompakter auf kleineren Screens */
    }

    /* Das Grid etwas schmaler einpassen und zentrieren */
    .welcome-gridlayout[b-b78ixli14k] {
        width: 100%;
    }

    .welcome-card[b-b78ixli14k] {
        width: 95vw;
        min-width: unset;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .welcome-card-img[b-b78ixli14k] {
        min-width: 60vw !important;
        max-width: 90vw;
    }

    .welcome-card-text[b-b78ixli14k] {
        font-size: 1.2rem;
        padding: 0.7rem 0.5rem;
    }

    .welcome-cards[b-b78ixli14k] {
        flex-direction: column;
        align-items: center;
    }

    .title-header-text[b-b78ixli14k], .title-content-text[b-b78ixli14k] {
        font-size: 1.1rem;
        text-align: center;
    }
}
/* _content/rewacoConstration2/Components/Pages/QrScan.razor.rz.scp.css */
.scan-wrapper[b-8klgphgo0v] { height:100dvh; display:flex; flex-direction:column; gap:1rem; padding:1rem; box-sizing:border-box; overflow:hidden; position:relative; }
.scan-top[b-8klgphgo0v] { display:flex; align-items:center; gap:.75rem; }

.scan-status[b-8klgphgo0v] {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: #666;
    color: #fff;
    line-height: 1;
}
.scan-status.on[b-8klgphgo0v] { background: #1b873f; }
.scan-status.off[b-8klgphgo0v] { background: #a53b3b; }

/* Stage soll scrollbar sein falls kleineren Viewports */

.scan-stage[b-8klgphgo0v] { position:relative; height:50vh; max-height:50vh; display:flex; align-items:center; justify-content:center; }

video#qr-video[b-8klgphgo0v] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.overlay[b-8klgphgo0v] {
    position: absolute;
    inset: 0;
    box-shadow: 0 0 0 200vmax rgba(0,0,0,0.35);
    pointer-events: none;
    border: 2px dashed rgba(255,255,255,0.7);
    border-radius: 0.5rem;
}

.result[b-8klgphgo0v] { font-size:1rem; opacity:.9; margin-bottom:4.5rem; }

.scan-fab-bar[b-8klgphgo0v] { position:fixed; left:0; bottom:0; width:100%; display:flex; justify-content:center; gap:.75rem; padding:.65rem .75rem calc(env(safe-area-inset-bottom,0) + .65rem); background:rgba(255,255,255,.85); backdrop-filter:blur(8px) saturate(150%); -webkit-backdrop-filter:blur(8px) saturate(150%); border-top:1px solid #e0e4e7; box-shadow:0 -2px 6px -2px rgba(0,0,0,.08); z-index:70; }
.scan-fab-bar .dx-button[b-8klgphgo0v] { min-width:120px; }
