/* /Components/Controls/LiveIndicator.razor.rz.scp.css */





/* Basis dot-styling */
.dot[b-yqxjr6hozr] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Pulse animatie */
@keyframes pulse-b-yqxjr6hozr {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* Status-kleuren */
.live-indicator.live .dot[b-yqxjr6hozr] {
    background-color: #28a745; /* groen */
}

.live-indicator.reconnecting .dot[b-yqxjr6hozr] {
    background-color: #ffc107; /* geel */
}

.live-indicator.offline .dot[b-yqxjr6hozr] {
    background-color: #dc3545; /* rood */
}

.live-indicator.connecting .dot[b-yqxjr6hozr] {
    background-color: #ffc107; /* geel */
}

.live-indicator.live .dot[b-yqxjr6hozr],
.live-indicator.connecting .dot[b-yqxjr6hozr],
.live-indicator.reconnecting .dot[b-yqxjr6hozr] {
    animation: pulse-b-yqxjr6hozr 1.4s infinite ease-in-out;
}

/* tyling van de tekst */
.live-indicator .text[b-yqxjr6hozr] {
    font-size: 0.9rem;
    font-weight: 600;
}
.live-indicator.live .text[b-yqxjr6hozr] {
    color: #28a745; /* groen */
}
.live-indicator.reconnecting .text[b-yqxjr6hozr] {
    color: #FF8C00; /* darkorange */
}
.live-indicator.connecting .text[b-yqxjr6hozr] {
    color: #FF8C00; /* darkorange */
}
.live-indicator.offline .text[b-yqxjr6hozr] {
    color: #dc3545; /* rood */
}
.live-indicator.incomming .text[b-yqxjr6hozr] {
    color: #007bff;
}

.live-indicator.incomming .dot[b-yqxjr6hozr] {
    background-color: #007bff; /* blauw */
    animation: pulse-fast-b-yqxjr6hozr 0.5s ease-in-out;
}

@keyframes pulse-fast-b-yqxjr6hozr {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.6);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-n873nxtm5x] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-n873nxtm5x] {
    flex: 1;
}

/* De witte topbalk op de pagina (met login/logout) */
.top-row[b-n873nxtm5x] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-n873nxtm5x]  a, .top-row[b-n873nxtm5x]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-n873nxtm5x]  a:hover, .top-row[b-n873nxtm5x]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-n873nxtm5x]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* Mobiel breekpunt voor de algemene lay-out */
@media (max-width: 640.98px) {
    .top-row[b-n873nxtm5x] {
        justify-content: space-between;
    }

        .top-row[b-n873nxtm5x]  a, .top-row[b-n873nxtm5x]  .btn-link {
            margin-left: 0;
        }
}

/* Desktop breekpunt voor de algemene lay-out */
@media (min-width: 641px) {
    .page[b-n873nxtm5x] {
        flex-direction: row; /* Zet sidebar en main naast elkaar */
    }

    .top-row[b-n873nxtm5x] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-n873nxtm5x]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-n873nxtm5x], article[b-n873nxtm5x] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Blazor foutmelding onderin */
#blazor-error-ui[b-n873nxtm5x] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-n873nxtm5x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.sidebar {
    height: 100vh;
    position: sticky;
    top: 0;
}
.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/
/*@media (max-width: 900px) {
    .sidebar {
        width: 70px;
    }
}*/

/*#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.sidebar {
    width: 250px;
    transition: width 0.25s ease;
    overflow: hidden;
}

    .sidebar.collapsed {
        width: 70px;
    }*/

/* Aanvulling op uw bestaande CSS */
/*@media (max-width: 640.98px) {
    .sidebar {
        width: 100% !important;*/ /* Maak menu menubalk over de hele breedte op mobiel */
        /*height: auto !important;*/ /* Geen 100vh op mobiel als het menu dicht is */
        /*position: relative;
    }

    .collapse-toggle {
        display: none;*/ /* Verberg de desktop pijl-knop op mobiel */
    /*}
}*/

/* Stijl voor de desktop pijlknop houder */
/*.desktop-toggle-container {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
}

.collapse-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (min-width: 641px) {
    .desktop-toggle-container {
        display: flex;
    }
}*/
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/*.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
    display: none;*/ /* Standaard verborgen op desktop */
/*}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
}*/

/* De paars/blauwe container */
.sidebar[b-jofk95i1bu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

/* Stijl voor de desktop pijlknop houder */
.desktop-toggle-container[b-jofk95i1bu] {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
}

.collapse-toggle[b-jofk95i1bu] {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Desktop weergave logica */
@media (min-width: 641px) {
    .sidebar[b-jofk95i1bu] {
        height: 100vh;
        position: sticky;
        top: 0;
        width: 250px;
        transition: width 0.25s ease;
        overflow: hidden;
    }

        /* Gecollapste status op desktop */
        .sidebar.collapsed[b-jofk95i1bu] {
            width: 70px;
        }

    .desktop-toggle-container[b-jofk95i1bu] {
        display: flex;
    }
}

/* Mobiele weergave logica (De magische omslag naar topbar) */
@media (max-width: 640.98px) {
    .sidebar[b-jofk95i1bu] {
        width: 100% !important; /* Volledige breedte bovenin */
        height: auto !important; /* Krimpt in als het menu dicht is */
        position: relative;
    }

    .collapse-toggle[b-jofk95i1bu] {
        display: none; /* Verberg de desktop pijl op mobiel */
    }
}
/* Zorg dat de top-row flexibel is */
.container-fluid[b-jofk95i1bu] {
    padding: 0;
    display: flex;
    width: 100%;
}

/* Stijl voor de desktop pijl/icoon knop */
.desktop-collapse-btn[b-jofk95i1bu] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

    .desktop-collapse-btn:hover[b-jofk95i1bu] {
        color: white;
    }

/* --- DESKTOP LOGICA (> 641px) --- */
@media (min-width: 641px) {
    .navbar-toggler[b-jofk95i1bu] {
        display: none !important; /* Verberg hamburger op desktop */
    }

    /* Als de zijbalk is ingeklapt (70px breed) */
    .sidebar.collapsed .brand-text[b-jofk95i1bu] {
        display: none; /* Verberg de tekst 'Ku-Drive' */
    }

    .sidebar.collapsed .container-fluid[b-jofk95i1bu] {
        justify-content: center !important; /* Centreer het icoon in de 70px balk */
    }
}

/* --- MOBIELE LOGICA (< 640.98px) --- */
@media (max-width: 640.98px) {
    .desktop-collapse-btn[b-jofk95i1bu] {
        display: none !important; /* Verberg de desktop-pijl op mobiel */
    }

    .navbar-toggler[b-jofk95i1bu] {
        display: block !important; /* Toon de hamburger op mobiel */
    }
}


.navbar-toggler[b-jofk95i1bu] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    display: none;
}

    .navbar-toggler:checked[b-jofk95i1bu] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-jofk95i1bu] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-jofk95i1bu] {
    font-size: 1.1rem;
}

.nav-item[b-jofk95i1bu] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-jofk95i1bu] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-jofk95i1bu] {
        padding-bottom: 1rem;
    }

    .nav-item[b-jofk95i1bu]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }
/* Flex-box voor de menu-items zodat icoon en tekst rechtstaan */
.nav-item[b-jofk95i1bu]  a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

    .nav-item[b-jofk95i1bu]  a.active {
        background-color: rgba(255,255,255,0.25);
        color: white;
    }

    .nav-item[b-jofk95i1bu]  a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

/* Verberg de tekst vloeiend als de sidebar op desktop inklapt */
[b-jofk95i1bu] .sidebar.collapsed .nav-text {
    display: none;
}

/* Mobiele weergave (Sluit aan op uw 640.98px breekpunt) */
@media (max-width: 640.98px) {
    .navbar-toggler[b-jofk95i1bu] {
        display: block; /* Toon hamburger op mobiel */
    }

    .top-row[b-jofk95i1bu] {
        width: 100%;
        justify-content: space-between;
        padding-right: 1rem;
    }

    .collapse[b-jofk95i1bu] {
        display: none; /* Verberg menu-items als het menu dicht is */
    }

    .nav-scrollable[b-jofk95i1bu] {
        background-color: rgba(0,0,0,0.1);
        padding-bottom: 0.5rem;
    }
}

.bi-house-door-fill-nav-menu[b-jofk95i1bu],
.bi-plus-square-fill-nav-menu[b-jofk95i1bu] {
    display: inline-block;
    width: 1.5rem; /* Breedte van het icoon */
    height: 1.5rem; /* Hoogte van het icoon */
    margin-right: 0.75rem; /* Ruimte tussen icoon en tekst */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0; /* Voorkomt dat het icoon vervormt bij inklappen */
}

/* Zorg dat de SVG-afbeeldingen correct gekoppeld zijn */
/*.bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.2a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L12 3.207V1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v2.207L1 7.5a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L3 7.207V14.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}*/
.bi[b-jofk95i1bu] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* SVG data voor pijl naar links */
.bi-chevron-left[b-jofk95i1bu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* SVG data voor pijl naar rechts */
.bi-chevron-right[b-jofk95i1bu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.bi-house-door-fill-nav-menu[b-jofk95i1bu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.2a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L12 3.207V1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v2.207L1 7.5a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L3 7.207V14.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
}

/*.bi bi-clock-history-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}*/

.bi-clock-history-nav-menu[b-jofk95i1bu] {
/*    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;*/
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-clock-history' viewBox='0 0 16 16'%3E%3Cpath d='M8.515 1.019A7 7 0 1 0 15 8h-1a6 6 0 1 1-6-6V1a.5.5 0 0 0-.485-.5zM7.5 3a.5.5 0 0 1 .5.5v4l3 1.5a.5.5 0 1 1-.5.866L7 8.5V3.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-lightning-charge-fill-nav-menu[b-jofk95i1bu] {
/*    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;*/
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-lightning-charge-fill' viewBox='0 0 16 16'%3E%3Cpath d='M11.3 1L6 8h3l-1 7 5.3-7H10l1.3-7z'/%3E%3C/svg%3E");
}


/* MAGIE: Als de sidebar gecollapsed is op desktop, verberg de tekst */
@media (min-width: 641px) {
    /* ::deep zoekt door de Blazor componentgrenzen heen naar de .collapsed klasse op de sidebar */
    [b-jofk95i1bu] .sidebar.collapsed .nav-text {
        display: none !important;
    }

    /* Centreer het icoon netjes in de 70px brede balk */
    [b-jofk95i1bu] .sidebar.collapsed .nav-item px-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    [b-jofk95i1bu] .sidebar.collapsed .nav-link {
        justify-content: center;
    }

    [b-jofk95i1bu] .sidebar.collapsed .bi-house-door-fill-nav-menu,
    [b-jofk95i1bu] .sidebar.collapsed .bi-plus-square-fill-nav-menu {
        margin-right: 0; /* Verwijder de rechter marge als er geen tekst is */
    }
}

/* Desktop weergave (Vanaf 641px) */
@media (min-width: 641px) {
    /*.nav-scrollable {
        display: block !important;*/ /* Altijd tonen op desktop */
    /*}*/
    .nav-scrollable[b-jofk95i1bu] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
    /* 1. Centreer het bovenste pijltje exact in het midden van de 70px balk */
    .sidebar.collapsed .container-fluid[b-jofk95i1bu] {
        justify-content: center !important;
        padding: 0 !important;
    }

    /* 2. Zorg dat de links de volledige breedte pakken en hun inhoud centreren */
    .sidebar.collapsed .nav-item[b-jofk95i1bu]  a {
        justify-content: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }

    /* 3. Haal de rechtermarge van álle menu-iconen af als er geen tekst meer naast staat */
    .sidebar.collapsed .bi-house-door-fill-nav-menu[b-jofk95i1bu],
    .sidebar.collapsed .bi-plus-square-fill-nav-menu[b-jofk95i1bu] {
        margin-right: 0 !important;
    }
}

/*.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.1rem;
    color: white;
}*/

/* Iconen basisstijl */
/*.bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.2a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L12 3.207V1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v2.207L1 7.5a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L3 7.207V14.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item ::deep a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        text-decoration: none;
    }

        .nav-item ::deep a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }*/

/* Responsive logica via Media Queries */
/*@media (min-width: 768px) {
    .navbar-toggler {
        display: none;*/ /* Verberg hamburger op desktop */
    /*}

    .nav-scrollable {
        display: block !important;*/ /* Altijd tonen op desktop */
    /*}
}

@media (max-width: 767.98px) {
    .collapse {
        display: none;*/ /* Verberg menu-items op mobiel als inklapt */
    /*}
}*/

/*.*//*navbar-toggler {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 1.1rem;
}*/

/*.bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.1rem;
    color: white;
}*/

/* Iconen basisstijl */
/*.bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.2a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L12 3.207V1.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v2.207L1 7.5a.5.5 0 0 0 .146.354l.5.5a.5.5 0 0 0 .708-.708L3 7.207V14.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item ::deep a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        text-decoration: none;
    }

        .nav-item ::deep a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item ::deep a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }*/

/* Responsive logica via Media Queries */
/*@media (min-width: 768px) {
    .navbar-toggler {
        display: none;*/ /* Verberg hamburger op desktop */
    /*}

    .nav-scrollable {
        display: block !important;*/ /* Altijd tonen op desktop */
    /*}
}

@media (max-width: 767.98px) {
    .collapse {
        display: none;*/ /* Verberg menu-items op mobiel als inklapt */
    /*}
}*/


/*.nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .nav-item ::deep .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item ::deep a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item ::deep .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler {
        display: none;
    }

    .nav-scrollable {*/
        /* Never collapse the sidebar for wide screens */
        /*display: block;*/

        /* Allow sidebar to scroll for tall menus */
        /*height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}*/
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bhgfemzvjp],
.components-reconnect-repeated-attempt-visible[b-bhgfemzvjp],
.components-reconnect-failed-visible[b-bhgfemzvjp],
.components-pause-visible[b-bhgfemzvjp],
.components-resume-failed-visible[b-bhgfemzvjp],
.components-rejoining-animation[b-bhgfemzvjp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-retrying[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-failed[b-bhgfemzvjp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bhgfemzvjp] {
    display: block;
}


#components-reconnect-modal[b-bhgfemzvjp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bhgfemzvjp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bhgfemzvjp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bhgfemzvjp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bhgfemzvjp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bhgfemzvjp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bhgfemzvjp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bhgfemzvjp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bhgfemzvjp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bhgfemzvjp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bhgfemzvjp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bhgfemzvjp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bhgfemzvjp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bhgfemzvjp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bhgfemzvjp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bhgfemzvjp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bhgfemzvjp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bhgfemzvjp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bhgfemzvjp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ActionsPage.razor.rz.scp.css */
.kantor-list[b-iwyfwx95mm] {
    font-size: 0.95rem;
}

    .kantor-list option[b-iwyfwx95mm] {
        padding: 6px;
    }

        .kantor-list option:hover[b-iwyfwx95mm] {
            background-color: #eef5ff;
        }
