/* /Layout/MainLayout.razor.rz.scp.css */
/* ============================
   Algemeen (Base)
   ============================ */
.page[b-wvpzi7ue15] {
    display: flex;
    flex-direction: column;
    position: relative;
}

main[b-wvpzi7ue15] {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
}

.logo[b-wvpzi7ue15], #top-row-right[b-wvpzi7ue15] {
    cursor: pointer;
}

/* ============================
   Wrapper
   ============================ */
#wrapper[b-wvpzi7ue15] {
    max-width: 100vw;
    transition: all 0.3s ease;
}

/* ============================
   Sidebar (off-canvas)
   ============================ */
#sidebar-wrapper[b-wvpzi7ue15] {
    background-color: #2F404B;
    position: fixed;
    top: 5rem;
    bottom: 0;
    left: 0;
    width: 18rem;
    transform: translateX(-100%); 
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 90000;
    transition: transform 0.3s ease;

}

/* Als menu open is → schuif in beeld */
#wrapper.nav-open #sidebar-wrapper[b-wvpzi7ue15] {
    transform: translateX(0);
}

.sidebar-nav[b-wvpzi7ue15] {
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 18rem;
}

/* ============================
   Pagina-inhoud
   ============================ */
#page-content-wrapper[b-wvpzi7ue15] {
    margin-top: 5rem;
    width: 100vw;
    transition: margin-left 0.3s ease, width 0.3s ease;
}

/* ============================
   Top Row (Header)
   ============================ */
.top-row[b-wvpzi7ue15] {
    align-items: center;
    background-color: #4C8BCD;
    display: flex;
    height: 5rem;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 50;
    color: #fff;
}

    .top-row .logo[b-wvpzi7ue15] {
        height: 4rem;
    }

    .top-row .top-row-side[b-wvpzi7ue15],
    .top-row-right[b-wvpzi7ue15] {
        align-items: center;
        display: flex;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 50;
    }

.top-row-right[b-wvpzi7ue15] {
    gap: 1rem;
}

.top-row[b-wvpzi7ue15]  a,
.top-row[b-wvpzi7ue15]  .btn-link {
    color: #4C8BCD;
    margin-left: 1.5rem;
    text-decoration: none;
    white-space: nowrap;
}

    .top-row[b-wvpzi7ue15]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-row[b-wvpzi7ue15]  a:hover,
    .top-row[b-wvpzi7ue15]  .btn-link:hover {
        border-bottom: solid 0.1rem #0044f9;
    }

/* ============================
   Navbar Toggler (hamburger)
   ============================ */
.navbar-toggler[b-wvpzi7ue15] {
    appearance: none;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem;
    color: white;
    border: none !important;
    cursor: pointer;
    height: 2.5rem;
    width: 3.5rem;
    box-shadow: none;
}


/* ============================
   Deep/Global Overrides
   ============================ */
[b-wvpzi7ue15] .logout-link {
    background-color: #96D152 !important;
    border-radius: .5rem;
    padding: 1rem;
    border: none;
    font-size: 1rem;
}

[b-wvpzi7ue15] .dxbl-btn:not(.dxbl-disabled):not(:disabled):hover {
    border: none;
}

/* ============================
   Foutmelding UI (Blazor)
   ============================ */
#blazor-error-ui[b-wvpzi7ue15] {
    background: red;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-wvpzi7ue15] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ============================
   Mobiel (<768px)
   ============================ */
@media (max-width: 640.98px) {
    .top-row[b-wvpzi7ue15] {
        align-items: center;
        display: flex;
        flex-direction: row; 
        flex-wrap: nowrap; 
        justify-content: space-between;
        gap: 0.5rem;
        height: 4rem; 
        padding: 0 0.5rem;
    }

        .top-row .logo[b-wvpzi7ue15] {
            height: 2.5rem; 
        }

    .top-row-side[b-wvpzi7ue15],
    .top-row-right[b-wvpzi7ue15] {
        align-items: center;
        display: flex;
        justify-content: center;
        position: static; 
    }

    .top-row-right[b-wvpzi7ue15] {
        gap: 0.5rem;
        max-width: 55vw; 
    }

        .top-row-right p[b-wvpzi7ue15] {
            margin: 0;
            font-size: 0.85rem;
            white-space: nowrap; 
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .top-row[b-wvpzi7ue15]  a,
    .top-row[b-wvpzi7ue15]  .btn-link {
        margin-left: 0;
    }

    #page-content-wrapper[b-wvpzi7ue15] {
        margin-top: 4rem; 
        width: 100vw;
    }

    #sidebar-wrapper[b-wvpzi7ue15] {
        top: 4rem;
    }

    #wrapper[b-wvpzi7ue15],
    #wrapper.nav-open[b-wvpzi7ue15] {
        padding-left: 0 !important;
    }

        #wrapper.nav-open #page-content-wrapper[b-wvpzi7ue15] {
            margin-left: 0;
            width: 100vw;
        }
}

/* ============================
   Tablet/Desktop (≥768px)
   ============================ */
@media only screen and (min-width: 768px) {
    /* Op desktop: als menu open → content naast menu */
    #wrapper.nav-open #page-content-wrapper[b-wvpzi7ue15] {
        margin-left: 18rem;
        width: calc(100vw - 18rem);
    }

    /* Menu mag standaard ook openstaan als je wilt */
    /* #sidebar-wrapper {
        transform: translateX(0);
    } */
}

/* ============================
   Groot (>1024px)
   ============================ */
@media (min-width: 1024px) {
    .page[b-wvpzi7ue15] {
        flex-direction: row;
    }

    .top-row[b-wvpzi7ue15],
    article[b-wvpzi7ue15] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .top-row[b-wvpzi7ue15] {
        position: fixed;
        z-index: 55;
    }

        .top-row.auth[b-wvpzi7ue15]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }
}
/* /Layout/NavMenu.razor.rz.scp.css */
[b-yzo9hz3752] .dxbl-treeview {
    --dxbl-treeview-item-content-indent: 2.75rem;
}

[b-yzo9hz3752] .bi {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    top: -1px;
    background-size: cover;
}

/*.nav-scrollable {
    padding-top: 1rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    z-index: 9999;
}*/

.nav-scrollable[b-yzo9hz3752] {
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-scroll[b-yzo9hz3752] {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.flexContainerNav[b-yzo9hz3752] {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    z-index: 2;
}



[b-yzo9hz3752] .dxbl-treeview .dxbl-treeview-item > .dxbl-treeview-item-content > .dxbl-treeview-item-container:not(.dxbl-disabled):not(:disabled).dxbl-active::before {
    background-color: transparent;
    padding: 0;
}

[b-yzo9hz3752] .dxbl-expandable-container .dxbl-treeview-item-content .dxbl-image {
    width: 0.2rem; /* Zorgt ervoor dat de insprong minder groot is bij de subitems*/
}

[b-yzo9hz3752] .dxbl-treeview-item.dxbl-active .dxbl-treeview-item-text {
    border-bottom: solid 0.15rem #fff;
    color: white;
    font-weight: bold;
    width: auto;
}

[b-yzo9hz3752] .dxbl-image:not(.dxbl-image-fill) {
    fill: White;
}

[b-yzo9hz3752] .dxbl-treeview-item-text {
    font-size: 1rem;
    color: #fff;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.flexContainerNav .logo[b-yzo9hz3752] {
    max-width: 7rem;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


.hidden[b-yzo9hz3752] {
    display: none;
}

.versie[b-yzo9hz3752] {
    margin: 0;
    font-size: 0.6rem;
    color: white;
    padding: 0.2rem;
}

.flexContainerNav[b-yzo9hz3752] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

[b-yzo9hz3752] .logout-link {
    width: 100%;
    max-width: 11rem;
    border-radius: 999px !important;
    background-color: #0078d4 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600;
    padding: 0.4rem 1rem !important;
}


    [b-yzo9hz3752] .logout-link:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.22);
        transform: translateY(-1px);
    }
/* /Pages/CustomerFunctions/Destination/DestinationsOvw.razor.rz.scp.css */
@keyframes fadeIn-b-f1xtnkfuwl {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-f1xtnkfuwl {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-f1xtnkfuwl] {
    animation-duration: 2s;
    animation-name: fadeIn-b-f1xtnkfuwl;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters.hidden[b-f1xtnkfuwl] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-f1xtnkfuwl;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-f1xtnkfuwl] .ApplyButton {
    background-color: #95D453;
    border: none;
}

[b-f1xtnkfuwl] .ApplyButton:hover {
    background-color: #95D453 !important;
    border: none;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

[b-f1xtnkfuwl] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
}

[b-f1xtnkfuwl] .ClearFilterButton:hover {
    background-color: #303F4B !important;
    border: none;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

[b-f1xtnkfuwl] .filter-button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}
/* /Pages/CustomerFunctions/Receipts/ReceiptDetail.razor.rz.scp.css */
@media (max-width: 991px) {
    .dxbl-fl .dxbl-fl-item[b-nrwf08bi2h] {
        width: 100% !important;
    }
}

[b-nrwf08bi2h] .dxbl-group expanded {
    border-color: #84d9f5 !important;
}
/* /Pages/CustomerFunctions/Receipts/ReceiptsOvw.razor.rz.scp.css */
@keyframes fadeIn-b-7z3ojhq7lm {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-7z3ojhq7lm {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-7z3ojhq7lm] {
    animation-duration: 2s;
    animation-name: fadeIn-b-7z3ojhq7lm;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters.hidden[b-7z3ojhq7lm] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-7z3ojhq7lm;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-7z3ojhq7lm] .ApplyButton {
    background-color: #95D453;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-7z3ojhq7lm] .ApplyButton:hover {
        background-color: #709f3e !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-7z3ojhq7lm] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-7z3ojhq7lm] .ClearFilterButton:hover {
        background-color: #72818d !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-7z3ojhq7lm] .filter-button {
    margin-bottom: 1.25rem !important;
}

/*::deep label[for="prodId"] {
    width: fit-content !important;
}*/
/* /Pages/CustomerFunctions/Receipts/Report/ReportViewer.razor.rz.scp.css */
/* /Pages/Customer/CustomerOvw.razor.rz.scp.css */
@keyframes fadeIn-b-s3k4sivwhq {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-s3k4sivwhq {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-s3k4sivwhq] {
    animation-duration: 2s;
    animation-name: fadeIn-b-s3k4sivwhq;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters.hidden[b-s3k4sivwhq] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-s3k4sivwhq;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-s3k4sivwhq] .ApplyButton {
    background-color: #95D453;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

[b-s3k4sivwhq] .ApplyButton:hover {
    background-color: #709f3e !important;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

[b-s3k4sivwhq] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

[b-s3k4sivwhq] .ClearFilterButton:hover {
    background-color: #72818d !important;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

[b-s3k4sivwhq] .filter-button {
    margin-bottom: 0 !important;
}

[b-s3k4sivwhq] .buttons-note {
    margin-bottom: .75rem;
}
/* /Pages/FksFuncties/CustomerEntry/FksReceiptDetail.razor.rz.scp.css */
@keyframes fadeIn-b-sriwdm955m {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-sriwdm955m {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-sriwdm955m] {
    animation-duration: 2s;
    animation-name: fadeIn-b-sriwdm955m;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters[b-sriwdm955m] {
    padding: 1rem;
}

.filters.hidden[b-sriwdm955m] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-sriwdm955m;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-sriwdm955m] .ApplyButton {
    background-color: #95D453;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-sriwdm955m] .ApplyButton:hover {
        background-color: #709f3e !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-sriwdm955m] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-sriwdm955m] .ClearFilterButton:hover {
        background-color: #72818d !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-sriwdm955m] .filter-button {
    margin-bottom: 0 !important;
}

[b-sriwdm955m] .buttons-note {
    margin-bottom: .75rem;
}

@media (max-width: 991px) {
    .dxbl-fl .dxbl-fl-item[b-sriwdm955m] {
        width: 100% !important;
    }
}

/* /Pages/FksFuncties/CustomerEntry/FksReceiptsOvw.razor.rz.scp.css */
@keyframes fadeIn-b-0hotboydzd {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-0hotboydzd {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-0hotboydzd] {
    animation-duration: 2s;
    animation-name: fadeIn-b-0hotboydzd;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters.hidden[b-0hotboydzd] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-0hotboydzd;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-0hotboydzd] .ApplyButton {
    background-color: #95D453;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-0hotboydzd] .ApplyButton:hover {
        background-color: #709f3e !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-0hotboydzd] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-0hotboydzd] .ClearFilterButton:hover {
        background-color: #72818d !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-0hotboydzd] .filter-button {
    margin-bottom: 1.25rem !important;
}

/*::deep label[for="prodId"] {
    width: fit-content !important;
}*/
/* /Pages/FksFuncties/Processing/Processing.razor.rz.scp.css */
@keyframes fadeIn-b-t78v6wc0ne {
    from {
        opacity: 0;
        max-height: 0;
        display: block;
    }

    to {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }
}

@keyframes fadeOut-b-t78v6wc0ne {
    from {
        opacity: 1;
        max-height: 25rem; /* Zorg ervoor dat deze hoogte voldoende is voor je inhoud */
    }

    to {
        opacity: 0;
        max-height: 0;
        display: none;
    }
}

.filters.visible[b-t78v6wc0ne] {
    animation-duration: 2s;
    animation-name: fadeIn-b-t78v6wc0ne;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

.filters.hidden[b-t78v6wc0ne] {
    max-height: 0;
    animation-duration: 0.5s;
    animation-name: fadeOut-b-t78v6wc0ne;
    animation-fill-mode: forwards; /* Houdt de laatste stap van de animatie vast */
}

[b-t78v6wc0ne] .ApplyButton {
    background-color: #95D453;
    border: none;
}

[b-t78v6wc0ne] .ApplyButton:hover {
    background-color: #95D453 !important;
    border: none;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

[b-t78v6wc0ne] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
}

[b-t78v6wc0ne] .ClearFilterButton:hover {
    background-color: #303F4B !important;
    border: none;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

[b-t78v6wc0ne] .filter-button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}
/* /Pages/LoginPage.razor.rz.scp.css */
.page-container[b-2w00qq3636] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    padding: 1.5rem;
}

.content-container[b-2w00qq3636] {
    background-color: #4C8BCD;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group[b-2w00qq3636] {
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

[b-2w00qq3636] .dxbl-text-edit {
    width: 100%
}

[b-2w00qq3636] .dxbl-text {
    color: white;
}

.logo[b-2w00qq3636] {
    width: 15rem;
}

.logoJorosoft[b-2w00qq3636] {
    width: 10rem;
}


.logoKLant[b-2w00qq3636] {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}


.button-container[b-2w00qq3636] {
    margin-top: 15px;
}

button[b-2w00qq3636] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #4C8BCD;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.dropdown-container[b-2w00qq3636] {
    position: fixed;
    bottom: 0;
    left: 0;
    align-self: start;
}

.dropdown-container img[b-2w00qq3636] {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
/* /Pages/Profiel/Usersettings.razor.rz.scp.css */
.toolbar[b-8yafxpu0e5] {
    margin-bottom: 1rem;
}

[b-8yafxpu0e5] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: 0px !important;
    background-size: cover;
}
/* /Shared/Dialogs/FileUpload.razor.rz.scp.css */

[b-pbj79c5yjm] .preview {
    background-color: lightgray;

}

[b-pbj79c5yjm] .preview img {
    width: 25px;
}

/* --- Window / dialog --- */
.file-upload-window[b-pbj79c5yjm] {

}

.file-upload-dialog[b-pbj79c5yjm] {
    padding: 1rem;
}

.upload-layout[b-pbj79c5yjm] {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* --- Drop zone --- */
.custom-drop-zone[b-pbj79c5yjm] {
    padding: 1.5rem 1rem !important;
    border-style: dashed;
    border-width: 2px !important;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(183, 183, 183, 0.1);
    box-sizing: border-box;
    text-align: center;
}

    .custom-drop-zone.custom-drop-zone-hover[b-pbj79c5yjm] {
        border-style: solid;
    }

    .custom-drop-zone svg[b-pbj79c5yjm] {
        width: 42px;
        height: 42px;
    }

    .custom-drop-zone > *:not(#overviewDemoSelectButton)[b-pbj79c5yjm] {
        pointer-events: none;
    }

.drop-file-icon[b-pbj79c5yjm] {
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: #ADB5BD;
    width: 48px;
    height: 48px;
    -webkit-mask-image: url("Icons/UploadIcon.svg");
    mask-image: url("Icons/UploadIcon.svg");
}

.drop-file-label[b-pbj79c5yjm] {
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* --- Buttons --- */
.button-bar[b-pbj79c5yjm] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

    .button-bar .dxbl-button[b-pbj79c5yjm] {
        /* DevExpress knop-class; zo nodig aanpassen naar de juiste */
        flex: 1 1 auto;
    }

/* --- Responsiveness --- */

/* Tablets / kleine laptops */
@media (max-width: 992px) {
    .upload-layout[b-pbj79c5yjm] {
        max-width: 100%;
    }

    .custom-drop-zone[b-pbj79c5yjm] {
        height: 200px;
    }
}

/* Mobiel */
@media (max-width: 576px) {
    .file-upload-dialog[b-pbj79c5yjm] {
        padding: 0.75rem;
    }

    .custom-drop-zone[b-pbj79c5yjm] {
        height: auto;
        padding: 1.25rem 0.75rem !important;
    }

    .drop-file-label[b-pbj79c5yjm] {
        font-size: 0.95rem;
    }

    .button-bar[b-pbj79c5yjm] {
        flex-direction: column;
        align-items: stretch;
    }

        .button-bar .dxbl-button[b-pbj79c5yjm],
        .button-bar .m-1[b-pbj79c5yjm] {
            width: 100%;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
}
/* /Shared/FormItems/JoroDropdownMultiColumn.razor.rz.scp.css */
.combo-container[b-bk9s0p1swe] {
    position: relative;
}

.combo-buttons[b-bk9s0p1swe] {
    position: absolute;
    left: 100%;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.combo-input[b-bk9s0p1swe] {
    /* padding-right: 70px; */
}

.btn-custom[b-bk9s0p1swe] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 1rem;
    height: 32px;
    min-width: 32px;
    padding: 0 8px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

.hidden[b-bk9s0p1swe] {
    display: none;
}

.btn-custom .bi[b-bk9s0p1swe] {
    width: 16px;
    height: 16px;
}

/* hover zonder layout shift */
.btn-custom:hover[b-bk9s0p1swe] {
    background-color: #f7f7f7;
}

@media (max-width: 991px) {
    .combo-container[b-bk9s0p1swe] {
        flex-direction: column;  
        align-items: stretch;
    }

    .combo-buttons[b-bk9s0p1swe] {
        position: static; 
        transform: none;
        margin-top: 6px; 
        justify-content: flex-start;
    }

    .combo-input[b-bk9s0p1swe] {
        width: 100%;
    }
}
/* /Shared/FormItems/JoroFilterPanel.razor.rz.scp.css */
/* -------------------------------
   ROOT / LAYOUT
-------------------------------- */

.customer-filters-layout-item[b-5l7c33rdnf] {
    border-top: 2px solid #b2bdbd;
    position: relative;
    padding-top: 1.5rem;
}

.customer-filters-layout-item.open[b-5l7c33rdnf] {
    border: 2px solid #b2bdbd;
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    overflow: visible;
}


/* -------------------------------
   HEADER
-------------------------------- */

.filter-header[b-5l7c33rdnf] {
/*    position: absolute;*/
    top: -12px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LABEL op de border */
.filter-title[b-5l7c33rdnf] {
    background: white;
    padding: 0 8px;
    font-weight: 500;
    margin-top: -0.4rem;
}

/* -------------------------------
   TOGGLE BUTTON
-------------------------------- */

[b-5l7c33rdnf] .toggle-button {
    border-radius: 50% !important;
    padding: 0.25rem 0.75rem;
    height: 32px;
    width: 32px;
    text-align: center;
    margin-top: -0.2rem;
    border: solid #b2bdbd 1px;
    background-color: white;
    color: black;
}

[b-5l7c33rdnf] .toggle-button:hover {
    border-radius: 50% !important;
    padding: 0.25rem 0.75rem !important;
    height: 32px;
    width: 32px;
    text-align: center !important;
    margin-top: -0.2rem !important;
    border: solid #b2bdbd 1px !important;
    background-color: white !important;
    color: black !important;
}

/* -------------------------------
   CONTENT (OPEN / CLOSED)
-------------------------------- */

.filter-container[b-5l7c33rdnf] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.filter-container.open[b-5l7c33rdnf] {
    max-height: 500px; /* groot genoeg voor filters */
    opacity: 1;
    overflow: visible;
}

[b-5l7c33rdnf] .ApplyButton {
    background-color: #95D453;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-5l7c33rdnf] .ApplyButton:hover {
        background-color: #709f3e !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-5l7c33rdnf] .ClearFilterButton {
    background-color: #303F4B;
    border: none;
    margin: 0.5rem 0.5rem 1.25rem 0;
}

    [b-5l7c33rdnf] .ClearFilterButton:hover {
        background-color: #72818d !important;
        border: none;
        margin: 0.5rem 0.5rem 1.25rem 0;
    }

[b-5l7c33rdnf] .filter-button {
    margin-bottom: 0 !important;
}
/* /Shared/Grids/Jorogrid.razor.rz.scp.css */
.toolbar[b-bu00p2l6wi] {
    margin-bottom: 1rem;
}

[b-bu00p2l6wi] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: 0px !important;
    background-size: cover;
}
/* /Shared/Toolbar/ToolbarDetail.razor.rz.scp.css */
.toolbar[b-nsc3lpvsdv]{
    margin-bottom: 1rem;
}

[b-nsc3lpvsdv] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: 0px !important;
    background-size: cover;
}
/* /Shared/Toolbar/ToolbarDetailNavigation.razor.rz.scp.css */
[b-d54cdm405b] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: 0px !important;
    background-size: cover;
}

.card-header[b-d54cdm405b] {
    margin-bottom: 2rem;
}

/* /Shared/Toolbar/ToolbarGrid.razor.rz.scp.css */
.toolbar[b-jkgiao762k] {
    margin-bottom: 1rem;
}

[b-jkgiao762k] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: 0px !important;
    background-size: cover;
}
