/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-u2mchouhgf] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 238px minmax(0, 1fr);
    background: #f4eee3;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar[b-u2mchouhgf] {
    height: 100vh;
    box-sizing: border-box;
    padding: 22px 18px 18px;

    background:
        radial-gradient(
            circle at 65% 8%,
            rgba(255, 215, 0, .12),
            transparent 22%
        ),
        linear-gradient(
            180deg,
            #171714,
            #10100e
        );

    color: white;

    border-right:
        1px solid rgba(255,255,255,.06);

    position: sticky;
    top: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    z-index: 110;
}


/* =========================================================
   HEADER / BRAND
   ========================================================= */

.sidebar-header[b-u2mchouhgf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

.brand[b-u2mchouhgf] {
    min-width: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.brand-icon[b-u2mchouhgf] {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-zzzeff[b-u2mchouhgf] {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

.brand-text[b-u2mchouhgf] {
    min-width: 0;
}

.brand-name[b-u2mchouhgf] {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.brand-name span[b-u2mchouhgf] {
    color: #f7d000;
}

.brand-tagline[b-u2mchouhgf] {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.15;
    color: #aaa79e;
    white-space: nowrap;
}

.brand-tagline-second[b-u2mchouhgf] {
    display: inline-block;
    margin-top: 2px;
    font-size: 14px;
}

.brand-tagline strong[b-u2mchouhgf] {
    color: #f7d000;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button[b-u2mchouhgf] {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    border:
        1px solid rgba(255,215,0,.25);

    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: #f7d000;

    font-size: 26px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================================
   SIDEBAR CONTENT
   ========================================================= */

.sidebar-content[b-u2mchouhgf] {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navigation[b-u2mchouhgf] {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto;
}

/* =========================================================
   PLANZZZ HEX 3D NAV BUTTONS
   ========================================================= */

.nav-item[b-u2mchouhgf] {
    min-height: 50px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0 16px;

    position: relative;
    isolation: isolate;

    color: #f3efe4;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    background: transparent;
    border: 0;
    border-radius: 0;

    clip-path: none;

    cursor: pointer;

    transition:
        color .15s ease,
        transform .10s ease;
}


/* GELE HEX-SOKKEL */

.nav-item[b-u2mchouhgf]::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: -2;

    clip-path:
        polygon(
            14px 0,
            calc(100% - 14px) 0,
            100% 50%,
            calc(100% - 14px) 100%,
            14px 100%,
            0 50%
        );

    background:
        linear-gradient(
            180deg,
            #fff06a 0%,
            #ffd900 22%,
            #c79f00 65%,
            #715900 100%
        );

    filter:
        drop-shadow(0 5px 4px rgba(0,0,0,.48))
        drop-shadow(0 0 5px rgba(255,210,0,.18));
}


/* ZWARTE BOLLE DRUKPLAAT */

.nav-item[b-u2mchouhgf]::after {
    content: "";

    position: absolute;

    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 7px;

    z-index: -1;

    clip-path:
        polygon(
            13px 0,
            calc(100% - 13px) 0,
            100% 50%,
            calc(100% - 13px) 100%,
            13px 100%,
            0 50%
        );

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255,255,255,.14),
            transparent 48%
        ),
        linear-gradient(
            180deg,
            #3c3b2d 0%,
            #29281e 30%,
            #171711 72%,
            #0b0b08 100%
        );

    box-shadow:
        inset 0 2px 1px rgba(255,255,255,.13),
        inset 0 -5px 7px rgba(0,0,0,.65);

    transition:
        top .10s ease,
        bottom .10s ease,
        background .15s ease,
        filter .15s ease;
}


/* TEKST EN ICONEN BOVEN DE KNOP */

.nav-item > *[b-u2mchouhgf] {
    position: relative;
    z-index: 2;

    transition:
        transform .10s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.nav-item:hover[b-u2mchouhgf] {
    color: #fff2a1;
    transform: translateY(-1px);
}

.nav-item:hover[b-u2mchouhgf]::before {
    background:
        linear-gradient(
            180deg,
            #fff68e 0%,
            #ffe12e 22%,
            #d7ad00 65%,
            #806500 100%
        );

    filter:
        drop-shadow(0 6px 5px rgba(0,0,0,.50))
        drop-shadow(0 0 10px rgba(255,210,0,.30));
}

.nav-item:hover[b-u2mchouhgf]::after {
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255,235,130,.19),
            transparent 50%
        ),
        linear-gradient(
            180deg,
            #45432d 0%,
            #302e1c 30%,
            #1a1910 72%,
            #0b0b07 100%
        );
}


/* =========================================================
   ACTIEVE PAGINA
   ========================================================= */

.nav-item.active[b-u2mchouhgf] {
    color: #ffe33d;
}

.nav-item.active[b-u2mchouhgf]::before {
    background:
        linear-gradient(
            180deg,
            #fff58a 0%,
            #ffdf18 22%,
            #d1a700 65%,
            #755c00 100%
        );

    filter:
        drop-shadow(0 5px 5px rgba(0,0,0,.48))
        drop-shadow(0 0 11px rgba(255,210,0,.34));
}

.nav-item.active[b-u2mchouhgf]::after {
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255,225,80,.22),
            transparent 52%
        ),
        linear-gradient(
            180deg,
            #464126 0%,
            #302b17 32%,
            #19160c 72%,
            #0c0b07 100%
        );
}


/* =========================================================
   ECHT INDRUKKEN
   ========================================================= */

.nav-item:active[b-u2mchouhgf] {
    transform: translateY(0);
}

.nav-item:active[b-u2mchouhgf]::after {
    top: 6px;
    bottom: 3px;

    background:
        linear-gradient(
            180deg,
            #252419,
            #12120d
        );

    box-shadow:
        inset 0 4px 8px rgba(0,0,0,.70),
        inset 0 1px 1px rgba(255,255,255,.05);
}

.nav-item:active > *[b-u2mchouhgf] {
    transform: translateY(4px);
}

.nav-symbol[b-u2mchouhgf] {
    width: 28px;
    height: 32px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    text-align: center;
    font-size: 18px;
    line-height: 1;
}

.nav-label[b-u2mchouhgf] {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   BOTTOM AREA
   ========================================================= */

.sidebar-bottom[b-u2mchouhgf] {
    margin-top: auto;
    padding-top: 16px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    flex: 0 0 auto;
}


/* =========================================================
   ZZZEFF SIDEBAR
   ========================================================= */

.zzzeff-sidebar[b-u2mchouhgf] {
    min-height: 62px;
    box-sizing: border-box;

    padding: 10px 11px;

    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr) auto;

    align-items: center;

    gap: 9px;

    border-radius: 13px;

    border:
        1px solid rgba(255,215,0,.22);

    background:
        linear-gradient(
            150deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );
}

.zzzeff-icon[b-u2mchouhgf] {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    font-size: 27px;
}

.zzzeff-content[b-u2mchouhgf] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.zzzeff-content strong[b-u2mchouhgf] {
    color: #ffdb00;
    font-size: 13px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zzzeff-content span[b-u2mchouhgf] {
    margin-top: 2px;

    color: #aaa69c;

    font-size: 11px;

    white-space: nowrap;
}

.zzzeff-button[b-u2mchouhgf] {
    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;

    padding: 0;

    border: 0;
    border-radius: 9px;

    display: grid;
    place-items: center;

    background: #f6d000;
    color: #161400;

    font-family: inherit;
    font-size: 19px;
    font-weight: 900;

    cursor: pointer;
}

.zzzeff-button:hover[b-u2mchouhgf] {
    background: #ffe341;
}


/* =========================================================
   USER
   ========================================================= */

.user-card[b-u2mchouhgf] {
    min-height: 58px;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 6px 10px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,.08);

    color: white;
    background: rgba(255,255,255,.015);
}

.user-avatar[b-u2mchouhgf] {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #eee7d9;

    color: #222;

    font-weight: 800;
}

.user-avatar-link[b-u2mchouhgf] {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    position: relative;

    display: block;

    text-decoration: none;
}

.user-beevatar[b-u2mchouhgf] {
    width: 50px;
    height: 50px;

    position: absolute;

    left: 50%;
    bottom: -2px;

    transform: translateX(-50%);

    object-fit: contain;

    transition:
        transform .18s ease,
        filter .18s ease;
}

.user-avatar-link:hover .user-beevatar[b-u2mchouhgf] {
    transform:
        translateX(-50%)
        translateY(-2px)
        scale(1.06);

    filter:
        drop-shadow(
            0 4px 8px rgba(0,0,0,.35)
        )
        drop-shadow(
            0 0 5px rgba(255,215,0,.18)
        );
}

.user-text[b-u2mchouhgf] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.user-text strong[b-u2mchouhgf] {
    overflow: hidden;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user-text span[b-u2mchouhgf] {
    margin-top: 2px;
    color: #aaa69c;
    font-size: 11px;
}


/* =========================================================
   MAIN
   ========================================================= */

.main-area[b-u2mchouhgf] {
    min-width: 0;

    background:
        radial-gradient(
            circle at 72% 15%,
            rgba(255,205,0,.21),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #fbf8f1,
            #f4ede2 55%,
            #eee2d2
        );
}


/* =========================================================
   ZZZEFF PANEL
   ========================================================= */

.zzzeff-panel-backdrop[b-u2mchouhgf] {
    position: fixed;
    inset: 0;

    z-index: 500;

    border: 0;

    background:
        rgba(18, 16, 12, .38);

    backdrop-filter: blur(2px);

    cursor: default;
}

.zzzeff-panel[b-u2mchouhgf] {
    width: min(440px, calc(100vw - 28px));
    height: calc(100vh - 28px);

    box-sizing: border-box;

    position: fixed;

    top: 14px;
    right: 14px;

    z-index: 510;

    padding: 22px;

    overflow-y: auto;

    border:
        1px solid #d8c99c;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 82% 5%,
            rgba(255, 215, 0, .19),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #fffdf8,
            #f6efe3
        );

    color: #1d1b17;

    box-shadow:
        0 22px 60px rgba(31, 24, 11, .28);

    animation:
        zzzeff-panel-in-b-u2mchouhgf .2s ease-out;
}

@keyframes zzzeff-panel-in-b-u2mchouhgf {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zzzeff-panel-header[b-u2mchouhgf] {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 18px;
}

.zzzeff-panel-title[b-u2mchouhgf] {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;
}

.zzzeff-panel-image[b-u2mchouhgf] {
    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    object-fit: contain;
}

.zzzeff-panel-eyebrow[b-u2mchouhgf] {
    color: #9d7d00;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.zzzeff-panel-title h2[b-u2mchouhgf] {
    margin: 3px 0 0;

    font-size: 27px;
}

.zzzeff-panel-close[b-u2mchouhgf] {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border: 1px solid #d9cebc;
    border-radius: 10px;

    background: rgba(255,255,255,.75);

    color: #625b50;

    font-size: 25px;

    cursor: pointer;
}

.zzzeff-panel-intro[b-u2mchouhgf] {
    margin-bottom: 16px;
    padding: 14px 15px;

    border: 1px solid #e2d4b7;
    border-radius: 12px;

    background: rgba(255,255,255,.58);
}

.zzzeff-panel-intro p[b-u2mchouhgf] {
    margin: 0;

    color: #70685b;

    font-size: 14px;
    line-height: 1.5;
}


/* OPTIONS */

.zzzeff-panel-options[b-u2mchouhgf] {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.zzzeff-panel-options button[b-u2mchouhgf] {
    width: 100%;

    padding: 14px;

    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) auto;

    align-items: center;

    gap: 11px;

    text-align: left;

    border: 1px solid #ddd2bf;
    border-radius: 12px;

    background: #fffdf8;

    color: #1d1b17;

    font-family: inherit;

    cursor: pointer;

    transition:
        transform .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}

.zzzeff-panel-options button:hover[b-u2mchouhgf] {
    transform: translateY(-1px);

    border-color: #d8b500;

    box-shadow:
        0 5px 12px rgba(70,55,30,.08);
}

.zzzeff-option-icon[b-u2mchouhgf] {
    font-size: 27px;

    text-align: center;
}

.zzzeff-panel-options button div[b-u2mchouhgf] {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.zzzeff-panel-options strong[b-u2mchouhgf] {
    font-size: 14px;
}

.zzzeff-panel-options button div span[b-u2mchouhgf] {
    color: #776f63;

    font-size: 11px;
}

.zzzeff-panel-options button b[b-u2mchouhgf] {
    color: #8a7200;

    font-size: 19px;
}


/* SUB MODES */

.zzzeff-panel-back[b-u2mchouhgf] {
    margin-bottom: 16px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #655d51;

    font-family: inherit;
    font-weight: 800;

    cursor: pointer;
}

.zzzeff-mode-heading[b-u2mchouhgf] {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}

.zzzeff-mode-heading > span[b-u2mchouhgf] {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #fff1a5;

    font-size: 25px;
}

.zzzeff-mode-heading h3[b-u2mchouhgf] {
    margin: 0;

    font-size: 23px;
}

.zzzeff-mode-heading p[b-u2mchouhgf] {
    margin: 3px 0 0;

    color: #766e62;

    font-size: 12px;
}


/* CHECK */

.zzzeff-check-summary[b-u2mchouhgf] {
    margin-bottom: 12px;
    padding: 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    border: 1px solid #dfc968;
    border-radius: 12px;

    background: #fff7d5;
}

.zzzeff-check-summary > span[b-u2mchouhgf] {
    font-size: 27px;
}

.zzzeff-check-summary strong[b-u2mchouhgf] {
    font-size: 13px;
}

.zzzeff-check-summary p[b-u2mchouhgf] {
    margin: 3px 0 0;

    color: #766b47;

    font-size: 11px;
}

.zzzeff-check-list[b-u2mchouhgf] {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.zzzeff-check-item[b-u2mchouhgf] {
    padding: 12px;

    display: grid;

    grid-template-columns:
        34px minmax(0, 1fr) 28px;

    align-items: center;

    gap: 9px;

    border: 1px solid #ddd2bf;
    border-radius: 11px;

    background: #fffdf8;
}

.zzzeff-check-item.good[b-u2mchouhgf] {
    border-color: #c6d9b8;
}

.zzzeff-check-item.warning[b-u2mchouhgf] {
    border-color: #dfc454;
    background: #fffaf0;
}

.zzzeff-check-item.neutral[b-u2mchouhgf] {
    border-color: #ddd2bf;
}

.zzzeff-check-icon[b-u2mchouhgf] {
    font-size: 22px;

    text-align: center;
}

.zzzeff-check-item strong[b-u2mchouhgf] {
    font-size: 13px;
}

.zzzeff-check-item p[b-u2mchouhgf] {
    margin: 2px 0 0;

    color: #766e62;

    font-size: 11px;
    line-height: 1.35;
}

.zzzeff-check-status[b-u2mchouhgf] {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f0eadf;

    color: #6e675c;

    font-size: 13px;
    font-weight: 900;
}

.good .zzzeff-check-status[b-u2mchouhgf] {
    background: #e4f1dc;
    color: #4f733a;
}

.warning .zzzeff-check-status[b-u2mchouhgf] {
    background: #fff0a6;
    color: #816800;
}


/* IDEAS */

.zzzeff-mini-grid[b-u2mchouhgf] {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px;
}

.zzzeff-mini-grid button[b-u2mchouhgf] {
    min-height: 105px;

    padding: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    border: 1px solid #ddd2bf;
    border-radius: 11px;

    background: #fffdf8;

    color: #1d1b17;

    font-family: inherit;

    cursor: pointer;
}

.zzzeff-mini-grid button[b-u2mchouhgf] {
    font-size: 23px;
}

.zzzeff-mini-grid strong[b-u2mchouhgf] {
    font-size: 12px;
}

.zzzeff-mini-grid span[b-u2mchouhgf] {
    color: #776f63;

    font-size: 10px;
}


/* PLANNING */

.zzzeff-planning-options[b-u2mchouhgf] {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.zzzeff-planning-options button[b-u2mchouhgf] {
    min-height: 78px;

    padding: 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 3px;

    border: 1px solid #ddd2bf;
    border-radius: 11px;

    background: #fffdf8;

    color: #1d1b17;

    font-family: inherit;
    font-size: 22px;

    cursor: pointer;
}

.zzzeff-planning-options strong[b-u2mchouhgf] {
    font-size: 13px;
}

.zzzeff-planning-options span[b-u2mchouhgf] {
    color: #776f63;

    font-size: 11px;
}

.zzzeff-coming[b-u2mchouhgf],
.zzzeff-message-card[b-u2mchouhgf] {
    margin-top: 15px;
    padding: 13px 14px;

    border: 1px solid #ded4c3;
    border-radius: 11px;

    background: rgba(255,255,255,.55);

    color: #746d61;

    font-size: 12px;
    line-height: 1.45;
}

.zzzeff-message-card strong[b-u2mchouhgf] {
    color: #312e29;
}

.zzzeff-message-card p[b-u2mchouhgf] {
    margin: 5px 0 0;
}


/* PLANZZZ ACTIEKNOPPEN IN ZZZEFF */

.zzzeff-planner-action[b-u2mchouhgf] {
    margin-top: 10px;
    min-height: 38px;
    padding: 9px 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d2ad00;
    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #ffe24a,
            #f3c900
        );

    color: #171500;

    font-family: inherit;
    font-size: 12px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(70,55,20,.10);

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.zzzeff-planner-action:hover[b-u2mchouhgf] {
    transform: translateY(-1px);

    background:
        linear-gradient(
            90deg,
            #ffe968,
            #ffd91f
        );

    box-shadow:
        0 5px 12px rgba(70,55,20,.16);
}

.zzzeff-planner-action:active[b-u2mchouhgf] {
    transform: translateY(0);

    box-shadow:
        0 2px 5px rgba(70,55,20,.12);
}

/* =========================================================
   LAGERE DESKTOPSCHERMEN
   ========================================================= */

@media (min-width: 1001px) and (max-height: 780px) {

    .sidebar[b-u2mchouhgf] {
        padding-top: 16px;
        padding-bottom: 12px;
    }

    .brand-name[b-u2mchouhgf] {
        font-size: 25px;
    }

    .brand-tagline[b-u2mchouhgf] {
        margin-top: 3px;
    }

    .navigation[b-u2mchouhgf] {
        margin-top: 20px;
        gap: 6px;
    }

    .nav-item[b-u2mchouhgf] {
        min-height: 46px;
    }

    .sidebar-bottom[b-u2mchouhgf] {
        padding-top: 10px;
        gap: 7px;
    }

    .zzzeff-sidebar[b-u2mchouhgf] {
        min-height: 54px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .user-card[b-u2mchouhgf] {
        min-height: 52px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) and (min-width: 651px) {

    .app-shell[b-u2mchouhgf] {
        grid-template-columns:
            78px minmax(0, 1fr);
    }

    .sidebar[b-u2mchouhgf] {
        padding:
            20px 10px 14px;
    }

    .sidebar-header[b-u2mchouhgf] {
        justify-content: center;
    }

    .brand-text[b-u2mchouhgf] {
        display: none;
    }

    .brand[b-u2mchouhgf] {
        justify-content: center;
    }

    .brand-icon[b-u2mchouhgf],
    .brand-zzzeff[b-u2mchouhgf] {
        width: 42px;
        height: 42px;
    }

    .navigation[b-u2mchouhgf] {
        margin-top: 24px;
        gap: 8px;
    }

    .nav-item[b-u2mchouhgf] {
        min-height: 50px;

        justify-content: center;

        padding: 0;
    }

    .nav-label[b-u2mchouhgf] {
        display: none;
    }

    .nav-symbol[b-u2mchouhgf] {
        width: 30px;
        height: 32px;

        flex: 0 0 30px;

        font-size: 19px;
    }

    .zzzeff-sidebar[b-u2mchouhgf] {
        min-height: 50px;

        display: flex;
        justify-content: center;

        padding: 5px;

        border-radius: 11px;
    }

    .zzzeff-icon[b-u2mchouhgf],
    .zzzeff-content[b-u2mchouhgf] {
        display: none;
    }

    .zzzeff-button[b-u2mchouhgf] {
        width: 44px;
        height: 44px;

        min-width: 44px;
        min-height: 44px;

        padding: 0;

        border-radius: 9px;
    }

    .user-card[b-u2mchouhgf] {
        min-height: 54px;

        justify-content: center;

        padding: 5px;
    }

    .user-text[b-u2mchouhgf] {
        display: none;
    }

    .user-avatar-link[b-u2mchouhgf] {
        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   GSM
   ========================================================= */

@media (max-width: 650px) {

    .app-shell[b-u2mchouhgf] {
        display: block;
    }

    .sidebar[b-u2mchouhgf] {
        width: 100%;
        height: 66px;
        min-height: 66px;

        padding: 10px 14px;

        position: sticky;
        top: 0;

        overflow: visible;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,215,0,.15);

        transition:
            height .2s ease;
    }

    .sidebar.mobile-open[b-u2mchouhgf] {
        height: auto;
        max-height: 100vh;

        position: fixed;

        left: 0;
        right: 0;
        top: 0;

        overflow-y: auto;
    }

    .sidebar-header[b-u2mchouhgf] {
        min-height: 46px;
    }

    .brand[b-u2mchouhgf] {
        gap: 8px;
    }

    .brand-icon[b-u2mchouhgf],
    .brand-zzzeff[b-u2mchouhgf] {
        width: 36px;
        height: 36px;
    }

    .brand-name[b-u2mchouhgf] {
        font-size: 24px;
    }

    .brand-tagline[b-u2mchouhgf] {
        display: none;
    }

    .mobile-menu-button[b-u2mchouhgf] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-content[b-u2mchouhgf] {
        display: none;
    }

    .sidebar.mobile-open .sidebar-content[b-u2mchouhgf] {
        display: flex;
        padding-top: 12px;
    }

    .navigation[b-u2mchouhgf] {
        margin-top: 0;
        gap: 7px;
    }

    .nav-item[b-u2mchouhgf] {
        min-height: 50px;

        padding:
            0 16px;

        font-size: 15px;
    }

    .nav-label[b-u2mchouhgf] {
        display: block;
    }

    .sidebar-bottom[b-u2mchouhgf] {
        margin-top: 18px;

        padding-top: 14px;

        border-top:
            1px solid rgba(255,255,255,.08);
    }

    .zzzeff-sidebar[b-u2mchouhgf] {
        min-height: 62px;
    }

    .zzzeff-content[b-u2mchouhgf] {
        display: flex;
    }

    .user-card[b-u2mchouhgf] {
        min-height: 60px;
    }

    .user-text[b-u2mchouhgf] {
        display: flex;
    }

    .mobile-backdrop[b-u2mchouhgf] {
        position: fixed;

        inset: 0;

        z-index: 100;

        border: 0;

        background:
            rgba(0,0,0,.42);

        cursor: default;
    }

    .main-area[b-u2mchouhgf] {
        width: 100%;
    }


    /* ZZZEFF OP GSM */

    .zzzeff-panel-backdrop[b-u2mchouhgf] {
        background:
            rgba(18, 16, 12, .48);
    }

    .zzzeff-panel[b-u2mchouhgf] {
        width: 100%;
        height: calc(100vh - 66px);

        top: 66px;
        right: 0;

        padding: 18px;

        border-left: 0;
        border-right: 0;
        border-bottom: 0;

        border-radius:
            18px 18px 0 0;
    }

    .zzzeff-panel-image[b-u2mchouhgf] {
        width: 58px;
        height: 58px;

        flex-basis: 58px;
    }

    .zzzeff-panel-title h2[b-u2mchouhgf] {
        font-size: 23px;
    }

    .zzzeff-mini-grid[b-u2mchouhgf] {
        grid-template-columns: 1fr 1fr;
    }

    .zzzeff-mini-grid button.selected[b-u2mchouhgf] {
    border-color: #d2ad00;
    background: #fff4b7;
}

.zzzeff-idea-results[b-u2mchouhgf] {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zzzeff-idea-results-title[b-u2mchouhgf] {
    padding: 12px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dfc85f;
    border-radius: 11px;
    background: #fff6cf;
}

.zzzeff-idea-results-title > span[b-u2mchouhgf] {
    font-size: 24px;
}

.zzzeff-idea-results-title p[b-u2mchouhgf] {
    margin: 3px 0 0;
    color: #756b4b;
    font-size: 11px;
    line-height: 1.35;
}

.zzzeff-idea-card[b-u2mchouhgf] {
    padding: 12px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    border: 1px solid #ddd2bf;
    border-radius: 11px;
    background: #fffdf8;
}

.zzzeff-idea-icon[b-u2mchouhgf] {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f7f0df;
    font-size: 21px;
}

.zzzeff-idea-card p[b-u2mchouhgf] {
    margin: 3px 0 0;
    color: #776f63;
    font-size: 11px;
    line-height: 1.4;
}

}



/* =========================================================
   PRIMARY NAV: HOME / ZZZEFF / BEEVATAR
   ========================================================= */

.sidebar-content > .navigation:first-child[b-u2mchouhgf] {
    flex: 0 0 auto;
}

.sidebar-content > .navigation:first-child > .nav-item[b-u2mchouhgf] {
    width: 100%;
    height: 54px;
    min-height: 54px;
    max-height: 54px;

    flex: 0 0 54px;

    overflow: hidden;
}


/* Tekst */

.nav-label-two-lines[b-u2mchouhgf] {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.1;
}

.nav-label-two-lines strong[b-u2mchouhgf] {
    display: block;

    overflow: hidden;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-label-two-lines small[b-u2mchouhgf] {
    display: block;

    margin-top: 3px;

    overflow: hidden;

    color: #aaa69c;

    font-size: 10px;
    font-weight: 500;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.nav-item:hover .nav-label-two-lines small[b-u2mchouhgf],
.nav-item.active .nav-label-two-lines small[b-u2mchouhgf] {
    color: #d8c875;
}


/* Iconen absoluut begrenzen */

.nav-symbol[b-u2mchouhgf] {
    width: 28px;
    height: 32px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.nav-symbol[b-u2mchouhgf] {
    border-radius: 10px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .045),
            rgba(0, 0, 0, .08)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        inset 0 -1px 0 rgba(0,0,0,.35);
}

.nav-item:hover .nav-symbol[b-u2mchouhgf],
.nav-item.active .nav-symbol[b-u2mchouhgf] {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        inset 0 -1px 0 rgba(0,0,0,.34),
        0 0 9px rgba(255, 211, 0, .10);
}

.nav-zzzeff-image[b-u2mchouhgf],
.nav-beevatar-image[b-u2mchouhgf],
.nav-hive-image[b-u2mchouhgf] {
    position: static !important;

    width: 28px !important;
    height: 28px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: 28px !important;
    max-height: 28px !important;

    display: block !important;

    object-fit: contain !important;

    transform: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) and (min-width: 651px) {

    .sidebar-content > .navigation:first-child > .nav-item[b-u2mchouhgf] {
        height: 50px;
        min-height: 50px;
        max-height: 50px;

        flex-basis: 50px;
    }

    .nav-label-two-lines[b-u2mchouhgf] {
        display: none;
    }

    .nav-symbol[b-u2mchouhgf] {
        width: 30px;
        height: 32px;

        flex-basis: 30px;
    }

    .nav-zzzeff-image[b-u2mchouhgf],
    .nav-beevatar-image[b-u2mchouhgf] {
        width: 28px !important;
    height: 28px !important;

        max-width: 28px !important;
    max-height: 28px !important;
    }
}


/* =========================================================
   GSM
   ========================================================= */

@media (max-width: 650px) {

    .sidebar-content > .navigation:first-child > .nav-item[b-u2mchouhgf] {
        height: 56px;
        min-height: 56px;
        max-height: 56px;

        flex: 0 0 56px;
    }

    .nav-label-two-lines[b-u2mchouhgf] {
        display: flex;
    }

    .nav-symbol[b-u2mchouhgf] {
        width: 30px;
        height: 34px;

        flex-basis: 30px;
    }

    .nav-zzzeff-image[b-u2mchouhgf],
    .nav-beevatar-image[b-u2mchouhgf] {
        width: 36px !important;
        height: 36px !important;

        max-width: 36px !important;
        max-height: 36px !important;
    }
}

/* =========================================================
   SIDEBAR POLISH
   ========================================================= */

.sidebar-content > .navigation:first-child[b-u2mchouhgf] {
    gap: 9px;
}

.sidebar-content > .navigation:first-child > .nav-item:first-child[b-u2mchouhgf] {
    margin-bottom: 4px;
}

.nav-label-two-lines small[b-u2mchouhgf] {
    color: #bdb8ad;
}

.nav-zzzeff-image[b-u2mchouhgf],
.nav-beevatar-image[b-u2mchouhgf],
.nav-hive-image[b-u2mchouhgf] {
    width: 28px !important;
    height: 28px !important;

    max-width: 28px !important;
    max-height: 28px !important;
}

.sidebar-secondary-navigation[b-u2mchouhgf] {
    gap: 6px;
}

.sidebar-secondary-navigation .nav-item[b-u2mchouhgf] {
    min-height: 46px;
}


/* TABLET */

@media (max-width: 1000px) and (min-width: 651px) {

    .sidebar-content > .navigation:first-child[b-u2mchouhgf] {
        gap: 8px;
    }

    .sidebar-content > .navigation:first-child > .nav-item:first-child[b-u2mchouhgf] {
        margin-bottom: 4px;
    }

    .nav-zzzeff-image[b-u2mchouhgf],
    .nav-beevatar-image[b-u2mchouhgf] {
        width: 28px !important;
    height: 28px !important;

        max-width: 28px !important;
    max-height: 28px !important;
    }

    .sidebar-secondary-navigation .nav-item[b-u2mchouhgf] {
        min-height: 46px;
    }
}


/* GSM */

@media (max-width: 650px) {

    .sidebar-content > .navigation:first-child[b-u2mchouhgf] {
        gap: 8px;
    }

    .sidebar-content > .navigation:first-child > .nav-item:first-child[b-u2mchouhgf] {
        margin-bottom: 5px;
    }

    .nav-label-two-lines small[b-u2mchouhgf] {
        color: #c2bdb2;
    }

    .nav-zzzeff-image[b-u2mchouhgf],
    .nav-beevatar-image[b-u2mchouhgf] {
        width: 38px !important;
        height: 38px !important;

        max-width: 38px !important;
        max-height: 38px !important;
    }

    .sidebar-secondary-navigation .nav-item[b-u2mchouhgf] {
        min-height: 48px;
    }
}

/* =========================================================
   FEED THE HIVE MODAL
   ========================================================= */

.support-backdrop[b-u2mchouhgf] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(28, 25, 19, .48);
    backdrop-filter: blur(5px);
}

.support-modal[b-u2mchouhgf] {
    position: relative;
    width: min(520px, 100%);
    padding: 34px 34px 28px;
    border: 1px solid #d8cbaa;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255, 216, 61, .25),
            transparent 30%
        ),
        #fffdf8;
    color: #1d1b17;
    box-shadow: 0 24px 70px rgba(30, 25, 15, .25);
    text-align: center;
}

.support-close[b-u2mchouhgf] {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #756f64;
    font-size: 27px;
    cursor: pointer;
}

.support-close:hover[b-u2mchouhgf] {
    background: #f3ecdd;
    color: #1d1b17;
}

.support-honey[b-u2mchouhgf] {
    margin-bottom: 8px;
    font-size: 44px;
}

.support-eyebrow[b-u2mchouhgf] {
    color: #a98500;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.support-modal h2[b-u2mchouhgf] {
    margin: 7px 0 15px;
    font-size: 31px;
    font-weight: 900;
}

.support-modal p[b-u2mchouhgf] {
    margin: 8px auto;
    max-width: 430px;
    color: #6f695e;
    font-size: 15px;
    line-height: 1.5;
}

.support-options[b-u2mchouhgf] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 25px 0 17px;
}

.support-pay-button[b-u2mchouhgf] {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #ddc76e;
    border-radius: 13px;
    background: linear-gradient(
        145deg,
        #fff8cf,
        #ffe56a
    );
    color: #292300;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.support-pay-button:hover[b-u2mchouhgf] {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(115, 86, 0, .14);
    color: #292300;
}

.support-pay-button strong[b-u2mchouhgf] {
    font-size: 16px;
    font-weight: 900;
}

.support-pay-button span[b-u2mchouhgf] {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    opacity: .7;
}

.support-note[b-u2mchouhgf] {
    display: block;
    color: #928a7c;
    font-size: 11px;
    font-style: italic;
}

@media (max-width: 520px) {
    .support-modal[b-u2mchouhgf] {
        padding: 30px 20px 24px;
    }
}


/* =========================================================
   FINAL NAV ICON BOUNDS
   Houdt alle iconen binnen de zwarte 3D-drukplaat
   ========================================================= */

.nav-item .nav-symbol[b-u2mchouhgf] {
    max-width: 30px;
    max-height: 34px;
    overflow: hidden;
}

.nav-item .nav-symbol img[b-u2mchouhgf] {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    object-fit: contain !important;
}

.sidebar-secondary-navigation .nav-symbol[b-u2mchouhgf] {
    font-size: 18px;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-fuo153cit1] {
    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[b-fuo153cit1] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-fuo153cit1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-fuo153cit1] {
    font-size: 1.1rem;
}

.bi[b-fuo153cit1] {
    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[b-fuo153cit1] {
    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[b-fuo153cit1] {
    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[b-fuo153cit1] {
    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");
}

.nav-item[b-fuo153cit1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-fuo153cit1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-fuo153cit1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-fuo153cit1]  .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[b-fuo153cit1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-fuo153cit1]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-fuo153cit1] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-fuo153cit1] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-fuo153cit1] {
        display: none;
    }

    .nav-scrollable[b-fuo153cit1] {
        /* 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-hf4tsflpev],
.components-reconnect-repeated-attempt-visible[b-hf4tsflpev],
.components-reconnect-failed-visible[b-hf4tsflpev],
.components-pause-visible[b-hf4tsflpev],
.components-resume-failed-visible[b-hf4tsflpev],
.components-rejoining-animation[b-hf4tsflpev] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-retrying[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-failed[b-hf4tsflpev],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-hf4tsflpev] {
    display: block;
}


#components-reconnect-modal[b-hf4tsflpev] {
    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-hf4tsflpev 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-hf4tsflpev 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-hf4tsflpev 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-hf4tsflpev]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-hf4tsflpev 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-hf4tsflpev {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-hf4tsflpev {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-hf4tsflpev {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-hf4tsflpev] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-hf4tsflpev] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-hf4tsflpev] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-hf4tsflpev] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-hf4tsflpev] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-hf4tsflpev] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-hf4tsflpev] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-hf4tsflpev 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-hf4tsflpev] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-hf4tsflpev {
    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;
    }
}
