/* _content/RayportNG/Components/AppleUI/AnimatedCheck.razor.rz.scp.css */
.apple-check[b-9fq161tqac] {
    --size: 30px; /* default; parametre ile geliyor */
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    user-select: none;
}

    /* input görünmez ama odaklanabilir olmalı */
    .apple-check input[b-9fq161tqac] {
        position: absolute;
        opacity: 0;
    }

        /* Odak halinde hafif büyütme */
        .apple-check input:focus + label[b-9fq161tqac] {
            transform: scale(1.03);
        }

        /* Kutu */
        .apple-check input + label[b-9fq161tqac] {
            display: block;
            width: var(--size);
            height: var(--size);
            border-radius: 6px;
            border: 2px solid var(--border, rgb(240,240,240));
            cursor: pointer;
            transition: transform .2s ease, border-radius .2s ease, box-shadow .2s ease, background .2s ease;
            background: transparent;
            box-shadow: 0 1px 2px rgb(0 0 0 / .05);
        }

            /* Basılı efekt */
            .apple-check input + label:active[b-9fq161tqac] {
                transform: scale(1.05);
                border-radius: 12px;
            }

    /* Disabled */
    .apple-check label.is-disabled[b-9fq161tqac] {
        opacity: .6;
        cursor: not-allowed;
    }

    /* Tik SVG */
    .apple-check input + label svg[b-9fq161tqac] {
        pointer-events: none;
        padding: 5%;
        width: 100%;
        height: 100%;
    }

        .apple-check input + label svg path[b-9fq161tqac] {
            fill: none;
            stroke: var(--tick, rgb(247, 247, 247));
            stroke-width: 4px;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 100;
            stroke-dashoffset: 101;
            transition: stroke-dashoffset 250ms cubic-bezier(1,0,.37,.91);
        }

    /* Checked olduğunda çizgiyi tamamla + arkaplanı vurgula */
    .apple-check input:checked + label[b-9fq161tqac] {
        background: var(--accent, #0a84ff); /* macOS mavi (uygun görürsen Tailwind değişkeni bağlayabilirsin) */
        border-color: var(--accent, #0a84ff);
        box-shadow: 0 4px 12px rgb(10 132 255 / .25);
    }

        .apple-check input:checked + label svg path[b-9fq161tqac] {
            stroke-dashoffset: 0;
        }

    /* Yan yazı */
    .apple-check .apple-check-text[b-9fq161tqac] {
        font-size: 0.95rem;
        line-height: 1;
        cursor: pointer;
    }

    /* indeterminate görünümü: kutuyu vurgula, tik gizli kalsın, ortada çizgi */
    .apple-check.is-indeterminate input + label[b-9fq161tqac] {
        background: var(--accent, #0a84ff);
        border-color: var(--accent, #0a84ff);
        box-shadow: 0 4px 12px rgb(10 132 255 / .25);
    }

        .apple-check.is-indeterminate input + label svg path[b-9fq161tqac] {
            stroke-dashoffset: 101; /* tik görünmesin */
        }

        .apple-check.is-indeterminate input + label .ind-bar[b-9fq161tqac] {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 56%;
            height: 3px;
            transform: translate(-50%, -50%);
            border-radius: 2px;
            background: var(--tick, rgb(247,247,247));
            pointer-events: none;
        }
/* _content/RayportNG/Components/AppleUI/AppleDialog/AppleDialog.razor.rz.scp.css */
/* AppleDataGrid.razor.css */

/* ===== GLOBAL VARIABLES ===== */
:root[b-7pwxrwcra7] {
    --macos-accent: #0a84ff;
    --agx-border-light: rgba(0,0,0,.1);
    --agx-border-dark: rgba(255,255,255,.1);
    --agx-bg-light: #fcfcfd;
    --agx-bg-dark: #1a1a1a;
}

/* ===== MAIN CONTAINER ===== */
.agx[b-7pwxrwcra7] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
}

    /* ===== GRID STRUCTURE ===== */
    .agx .grid-container[b-7pwxrwcra7] {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        border-radius: 0.5rem;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        ring: 1px solid var(--agx-border-light);
        overflow: hidden;
    }

.dark .agx .grid-container[b-7pwxrwcra7] {
    ring: 1px solid var(--agx-border-dark);
}

/* Fixed height mode */
.agx .grid-container.fixed-height[b-7pwxrwcra7] {
    height: 100%;
}

/* Auto height mode */
.agx .grid-container.auto-height[b-7pwxrwcra7] {
    height: fit-content;
    max-height: calc(100vh - 200px);
}

/* ===== TABLE SCROLL CONTAINER ===== */
.agx .table-scroll-container[b-7pwxrwcra7] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

    .agx .table-scroll-container.auto-height[b-7pwxrwcra7] {
        overflow: visible;
        flex: none;
    }

    /* ===== SCROLLBAR STYLING ===== */
    .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar,
    .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar-track,
    .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar-track {
        background: transparent;
    }

    .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar-thumb,
    .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }

        .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar-thumb:hover,
        .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.4);
        }

/* Dark mode scrollbar */
.dark .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar-thumb,
.dark .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

    .dark .agx .table-scroll-container[b-7pwxrwcra7]::-webkit-scrollbar-thumb:hover,
    .dark .custom-scrollbar[b-7pwxrwcra7]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.4);
    }

/* ===== TABLE STYLING ===== */
.agx table[b-7pwxrwcra7] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.agx thead[b-7pwxrwcra7] {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
}

.dark .agx thead[b-7pwxrwcra7] {
    background: rgba(23, 23, 23, 0.8);
}

/* ===== SELECTION CHECKBOXES ===== */
[b-7pwxrwcra7] .agx input.agx-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.25);
    background: linear-gradient(#fcfcfd,#f4f4f6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
}

    [b-7pwxrwcra7] .agx input.agx-select:hover {
        border-color: rgba(0,0,0,.35);
        transform: scale(1.05);
    }

    [b-7pwxrwcra7] .agx input.agx-select:active {
        filter: brightness(.98);
        transform: scale(0.95);
    }

    [b-7pwxrwcra7] .agx input.agx-select:checked {
        background: var(--macos-accent);
        border-color: var(--macos-accent);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
    }

        [b-7pwxrwcra7] .agx input.agx-select:checked::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 1px;
            width: 6px;
            height: 9px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(40deg);
        }

/* Dark mode checkboxes */
.dark[b-7pwxrwcra7]  .agx input.agx-select {
    border-color: rgba(255,255,255,.25);
    background: linear-gradient(#2a2a2a,#1a1a1a);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

    .dark[b-7pwxrwcra7]  .agx input.agx-select:hover {
        border-color: rgba(255,255,255,.35);
    }

/* ===== BOOLEAN DISPLAY (READ-ONLY) ===== */
[b-7pwxrwcra7] .agx-bool {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.25);
    background: linear-gradient(#fcfcfd,#f4f4f6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
    transition: all 0.15s ease;
}

    [b-7pwxrwcra7] .agx-bool.on {
        background: var(--macos-accent);
        border-color: var(--macos-accent);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
        position: relative;
    }

        [b-7pwxrwcra7] .agx-bool.on::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 1px;
            width: 6px;
            height: 9px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(40deg);
        }

    [b-7pwxrwcra7] .agx-bool.off {
        opacity: .35;
    }

/* Dark mode boolean */
.dark[b-7pwxrwcra7]  .agx-bool {
    border-color: rgba(255,255,255,.25);
    background: linear-gradient(#2a2a2a,#1a1a1a);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

/* ===== FILTER INPUTS ===== */
[b-7pwxrwcra7] .agx thead th input {
    height: var(--filter-h) !important;
    font-size: var(--filter-fs) !important;
    padding: 0 6px !important;
    width: 100%;
    border: 1px solid var(--agx-border-light);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    transition: all 0.15s ease;
}

    [b-7pwxrwcra7] .agx thead th input:focus {
        outline: none;
        border-color: var(--macos-accent);
        box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.2);
    }

.dark[b-7pwxrwcra7]  .agx thead th input {
    background: rgba(23, 23, 23, 0.8);
    border-color: var(--agx-border-dark);
    color: #fff;
}

    .dark[b-7pwxrwcra7]  .agx thead th input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

/* ===== CONTEXT MENU ===== */
.agx .context-menu[b-7pwxrwcra7] {
    position: fixed;
    z-index: 99999;
    min-width: 160px;
    border-radius: 12px;
    border: 1px solid var(--agx-border-light);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    backdrop-filter: blur(16px);
    padding: 4px;
    font-size: 12px;
}

.dark .agx .context-menu[b-7pwxrwcra7] {
    background: rgba(23, 23, 23, 0.95);
    border-color: var(--agx-border-dark);
}

/* ===== LAYOUT HELPERS ===== */
.page-container[b-7pwxrwcra7] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.grid-page[b-7pwxrwcra7] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1rem;
}

    .grid-page .agx[b-7pwxrwcra7] {
        flex: 1;
        min-height: 0;
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .grid-page[b-7pwxrwcra7] {
        padding: 0.5rem;
    }

    .agx[b-7pwxrwcra7] {
        font-size: 12px;
    }

    [b-7pwxrwcra7] .agx input.agx-select,
    [b-7pwxrwcra7] .agx-bool {
        width: 12px;
        height: 12px;
    }

        [b-7pwxrwcra7] .agx input.agx-select:checked::after,
        [b-7pwxrwcra7] .agx-bool.on::after {
            left: 2px;
            top: 0px;
            width: 5px;
            height: 7px;
        }
}

/* ===== SIDEBAR TRANSITIONS ===== */
@media (min-width: 1024px) {
    .sidebar-transition[b-7pwxrwcra7] {
        transition: width 0.3s ease-in-out;
    }
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay[b-7pwxrwcra7] {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 30;
    backdrop-filter: blur(4px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn-b-7pwxrwcra7 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agx .context-menu[b-7pwxrwcra7] {
    animation: fadeIn-b-7pwxrwcra7 0.15s ease-out;
}

/* ===== FOCUS MANAGEMENT ===== */
.agx *:focus-visible[b-7pwxrwcra7] {
    outline: 2px solid var(--macos-accent);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.agx.loading[b-7pwxrwcra7] {
    pointer-events: none;
    opacity: 0.6;
}

    .agx.loading[b-7pwxrwcra7]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid var(--macos-accent);
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin-b-7pwxrwcra7 1s linear infinite;
    }

@keyframes spin-b-7pwxrwcra7 {
    to {
        transform: rotate(360deg);
    }
}
/* _content/RayportNG/Components/AppleUI/AppleGrid/AppleDataGrid.razor.rz.scp.css */
/* AppleDataGrid.razor.css */

/* Global değişken */
:root[b-jk81nmvvgs] {
    --macos-accent: #0a84ff;
}

/* --- Seçim sütunu checkbox'ları (native input) --- */
[b-jk81nmvvgs] .agx input.agx-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.25);
    background: linear-gradient(#fcfcfd,#f4f4f6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    [b-jk81nmvvgs] .agx input.agx-select:hover {
        border-color: rgba(0,0,0,.35);
    }

    [b-jk81nmvvgs] .agx input.agx-select:active {
        filter: brightness(.98);
    }

    [b-jk81nmvvgs] .agx input.agx-select:checked {
        background: var(--macos-accent);
        border-color: var(--macos-accent);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
    }

        [b-jk81nmvvgs] .agx input.agx-select:checked::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 1px;
            width: 6px;
            height: 9px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(40deg);
        }

/* --- Bool hücre (read-only span) --- */
[b-jk81nmvvgs] .agx-bool {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.25);
    background: linear-gradient(#fcfcfd,#f4f4f6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

    [b-jk81nmvvgs] .agx-bool.on {
        background: var(--macos-accent);
        border-color: var(--macos-accent);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
        position: relative;
    }

        [b-jk81nmvvgs] .agx-bool.on::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 1px;
            width: 6px;
            height: 9px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(40deg);
        }

    [b-jk81nmvvgs] .agx-bool.off {
        opacity: .35;
    }

/* --- Başlıktaki filtre input'ları --- */
[b-jk81nmvvgs] .agx thead th input {
    height: var(--filter-h) !important;
    font-size: var(--filter-fs) !important;
    padding: 0 6px !important;
}

/* --- Scroll bar styling --- */
[b-jk81nmvvgs] .agx .overflow-auto::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

[b-jk81nmvvgs] .agx .overflow-auto::-webkit-scrollbar-track {
    background: transparent;
}

[b-jk81nmvvgs] .agx .overflow-auto::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

    [b-jk81nmvvgs] .agx .overflow-auto::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.4);
    }

/* Dark mode scrollbar */
.dark[b-jk81nmvvgs]  .agx .overflow-auto::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

    .dark[b-jk81nmvvgs]  .agx .overflow-auto::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.4);
    }
/* _content/RayportNG/Components/AppleUI/AppleTopBar/AppleTopBar.razor.rz.scp.css */
:root[b-5ltmspjafq] {
    --macos-accent: #0a84ff;
}

.apple-topbar[b-5ltmspjafq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    padding: 0 10px;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    gap: 8px;
}

    .apple-topbar.is-sticky[b-5ltmspjafq] {
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .apple-topbar .side[b-5ltmspjafq] {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .apple-topbar .side.left[b-5ltmspjafq] {
            min-width: 0;
        }

    .apple-topbar .title[b-5ltmspjafq] {
        font-size: 12px;
        font-weight: 600;
        color: #111827;
    }

    .apple-topbar .sep[b-5ltmspjafq] {
        width: 1px;
        height: 18px;
        background: rgba(0,0,0,.10);
        margin: 0 2px;
    }

.tb-btn[b-5ltmspjafq] {
    height: 22px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 22px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.12);
    background: linear-gradient(#fcfcfd,#f4f4f6);
    color: #111827;
}

    .tb-btn:hover[b-5ltmspjafq] {
        filter: brightness(.98);
    }

    .tb-btn:disabled[b-5ltmspjafq] {
        opacity: .45;
        cursor: not-allowed;
    }

    .tb-btn.primary[b-5ltmspjafq] {
        background: var(--macos-accent);
        color: #fff;
        border-color: var(--macos-accent);
    }

    .tb-btn.danger[b-5ltmspjafq] {
        color: #b91c1c;
        border-color: rgba(185,28,28,.25);
        background: linear-gradient(#fff,#fdf2f2);
    }

/* dropdown */
.menu[b-5ltmspjafq] {
    position: relative;
}

    .menu .chev[b-5ltmspjafq] {
        font-size: 10px;
        margin-left: 4px;
        opacity: .7;
    }

.menu-pop[b-5ltmspjafq] {
    position: absolute;
    top: 26px;
    left: 0;
    min-width: 160px;
    padding: 4px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    display: none;
    z-index: 50;
}

    .menu-pop.open[b-5ltmspjafq] {
        display: block;
    }

.menu-item[b-5ltmspjafq] {
    width: 100%;
    text-align: left;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.2;
    color: #111827;
}

    .menu-item:hover[b-5ltmspjafq] {
        background: rgba(0,0,0,.05);
    }

    .menu-item.danger[b-5ltmspjafq] {
        color: #b91c1c;
    }

    .menu-item kbd[b-5ltmspjafq] {
        margin-left: auto;
        font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        border-bottom-width: 2px;
        border-radius: 6px;
        padding: 1px 4px;
        color: #374151;
    }

/* search + chip */
.search[b-5ltmspjafq] {
    position: relative;
}

    .search input[b-5ltmspjafq] {
        height: 22px;
        font-size: 11px;
        padding: 0 24px 0 8px;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,.12);
        background: linear-gradient(#fcfcfd,#f4f4f6);
        min-width: 180px;
    }

    .search .x[b-5ltmspjafq] {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid rgba(0,0,0,.15);
        background: #fff;
        font-size: 12px;
        line-height: 14px;
    }

.chip[b-5ltmspjafq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    font-size: 11px;
    color: #111827;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}
/* _content/RayportNG/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4abl8cuw8a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-4abl8cuw8a] {
    flex: 1;
}

.sidebar[b-4abl8cuw8a] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-4abl8cuw8a] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-4abl8cuw8a]  a, .top-row[b-4abl8cuw8a]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-4abl8cuw8a]  a:hover, .top-row[b-4abl8cuw8a]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-4abl8cuw8a]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-4abl8cuw8a] {
        justify-content: space-between;
    }

    .top-row[b-4abl8cuw8a]  a, .top-row[b-4abl8cuw8a]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-4abl8cuw8a] {
        flex-direction: row;
    }

    .sidebar[b-4abl8cuw8a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-4abl8cuw8a] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-4abl8cuw8a]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-4abl8cuw8a], article[b-4abl8cuw8a] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-4abl8cuw8a] {
    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-4abl8cuw8a] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/RayportNG/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-padg2vf6u5] {
    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-padg2vf6u5] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-padg2vf6u5] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-padg2vf6u5] {
    font-size: 1.1rem;
}

.bi[b-padg2vf6u5] {
    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-padg2vf6u5] {
    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-padg2vf6u5] {
    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-padg2vf6u5] {
    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-padg2vf6u5] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-padg2vf6u5] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-padg2vf6u5] {
        padding-bottom: 1rem;
    }

    .nav-item[b-padg2vf6u5]  .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-padg2vf6u5]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-padg2vf6u5]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-padg2vf6u5] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-padg2vf6u5] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-padg2vf6u5] {
        display: none;
    }

    .nav-scrollable[b-padg2vf6u5] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/RayportNG/Components/Toast.razor.rz.scp.css */
.toast-message-container[b-qjqavkwt0b] {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    animation: slide-in-b-qjqavkwt0b 0.5s ease-out, slide-out-b-qjqavkwt0b 0.5s ease-in 5s forwards;
}

.toast-message-box[b-qjqavkwt0b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.toast-message-success[b-qjqavkwt0b] {
    background-color: #28a745;
}

.toast-message-failure[b-qjqavkwt0b] {
    background-color: #dc3545;
}

.toast-message-alert[b-qjqavkwt0b] {
    background-color: #ffc107;
    color: #212529;
}

.toast-message-warning[b-qjqavkwt0b] {
    background-color: #ff8800;
}

.toast-message-default[b-qjqavkwt0b] {
    background-color: #17a2b8;
}

.toast-close-button[b-qjqavkwt0b] {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

    .toast-close-button:hover[b-qjqavkwt0b] {
        color: #000;
    }

@keyframes slide-in-b-qjqavkwt0b {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-b-qjqavkwt0b {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
