/* /Components/Controls/ImageGalleryModal.razor.rz.scp.css */
/* CSS for ImageGalleryModal component */
/* The initial clickable image */
.gallery-trigger[b-ruf2sbvdw0] {
    cursor: pointer;
    max-width: 300px; /* Adjust as needed */
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

    .gallery-trigger:hover[b-ruf2sbvdw0] {
        transform: scale(1.03);
    }

/* Dark overlay behind the modal */
.gallery-modal-backdrop[b-ruf2sbvdw0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it floats above other UI */
}

/* The actual modal box */
.gallery-modal-content[b-ruf2sbvdw0] {
    position: relative;
    background: #111;
    padding: 20px;
    border-radius: 8px;
    width: 90vw;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* X button in the top right */
.close-btn[b-ruf2sbvdw0] {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    color: white;
    border: none;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

    .close-btn:hover[b-ruf2sbvdw0] {
        color: #ccc;
    }

/* Main image area with arrows */
.main-image-container[b-ruf2sbvdw0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60vh;
    margin-bottom: 20px;
}

.main-image[b-ruf2sbvdw0] {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

/* Left/Right navigation arrows */
.nav-btn[b-ruf2sbvdw0] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

    .nav-btn:hover:not(:disabled)[b-ruf2sbvdw0] {
        background: rgba(255, 255, 255, 0.3);
    }

    .nav-btn:disabled[b-ruf2sbvdw0] {
        opacity: 0.2;
        cursor: not-allowed;
    }

/* The thumbnail strip */
.thumbnail-container[b-ruf2sbvdw0] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    max-width: 100%;
    padding: 5px 0;
}

    /* Custom scrollbar for thumbnails (Webkit browsers) */
    .thumbnail-container[b-ruf2sbvdw0]::-webkit-scrollbar {
        height: 8px;
    }

    .thumbnail-container[b-ruf2sbvdw0]::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 4px;
    }

.thumbnail[b-ruf2sbvdw0] {
    height: 70px;
    width: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 4px;
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
}

    .thumbnail:hover[b-ruf2sbvdw0] {
        opacity: 0.8;
    }

/* Highlights the currently selected thumbnail */
.active-thumb[b-ruf2sbvdw0] {
    border-color: #0d6efd; /* Bootstrap blue, adjust if needed */
    opacity: 1;
}
/* /Components/Controls/LoadingButton.razor.rz.scp.css */
/* CSS for LoadingButton component */
/* Simple CSS Spinner */
.rolling[b-i915ptuasm] {
    width: 100%;
    height: auto;
    animation: spin-b-i915ptuasm 4s linear infinite;
}

svg[b-i915ptuasm] {
    width: 100%;
    height: auto; /* Keeps the aspect ratio intact */
}

@keyframes spin-b-i915ptuasm {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Controls/LoadingModal.razor.rz.scp.css */
/* CSS for LoadingModal component */
.loading-modal-backdrop[b-g07r7z65nk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it stays on top of all elements */
}

.loading-modal-content[b-g07r7z65nk] {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100vc;
    height: 100vc;
}

.loading-text[b-g07r7z65nk] {
    position: relative;
    top: 45px;
    width: 100%;
    margin-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 500;
    color: #333;
}

/* Simple CSS Spinner */
.spinner[b-g07r7z65nk] {
    border: 4px none #f3f3f3;
    border-top: 6px solid lightblue;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-g07r7z65nk 1s linear infinite;
    z-index: 10;
    position: absolute;
}

/* Simple CSS Spinner */
.spinner2[b-g07r7z65nk] {
    border: 6px solid blue;
    border-top: 6px none #0078d4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-g07r7z65nk 1s linear infinite;
    z-index: 10;
    position: absolute;
}

@keyframes spin-b-g07r7z65nk {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-vblgdo7vnt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vblgdo7vnt] {
    flex: 1;
}

.sidebar[b-vblgdo7vnt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-vblgdo7vnt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vblgdo7vnt]  a, .top-row[b-vblgdo7vnt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-vblgdo7vnt]  a:hover, .top-row[b-vblgdo7vnt]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vblgdo7vnt]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-vblgdo7vnt] {
        justify-content: space-between;
    }

    .top-row[b-vblgdo7vnt]  a, .top-row[b-vblgdo7vnt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vblgdo7vnt] {
        flex-direction: row;
    }

    .sidebar[b-vblgdo7vnt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vblgdo7vnt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vblgdo7vnt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vblgdo7vnt], article[b-vblgdo7vnt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-vblgdo7vnt] {
    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-vblgdo7vnt] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-yesfaupr8k] {
    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-yesfaupr8k] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-yesfaupr8k] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-yesfaupr8k] {
    font-size: 1.1rem;
}

.bi[b-yesfaupr8k] {
    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-yesfaupr8k] {
    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-yesfaupr8k] {
    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-yesfaupr8k] {
    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");
}

.bi-lock-nav-menu[b-yesfaupr8k] {
    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 d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-file-earmark-spreadsheet-fill[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-earmark-spreadsheet-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6 12v-2h3v2z'/%3E%3Cpath d='M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1M3 9h10v1h-3v2h3v1h-3v2H9v-2H6v2H5v-2H3v-1h2v-2H3z'/%3E%3C/svg%3E");
}

.bi-file-earmark-spreadsheet[b-yesfaupr8k] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-earmark-spreadsheet' viewBox='0 0 16 16'%3E%3Cpath d='M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2M9.5 3A1.5 1.5 0 0 0 11 4.5h2V9H3V2a1 1 0 0 1 1-1h5.5zM3 12v-2h2v2zm0 1h2v2H4a1 1 0 0 1-1-1zm3 2v-2h3v2zm4 0v-2h3v1a1 1 0 0 1-1 1zm3-3h-3v-2h3zm-7 0v-2h3v2z'/%3E%3C/svg%3E");
}

.nav-item[b-yesfaupr8k] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-yesfaupr8k] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-yesfaupr8k] {
        padding-bottom: 1rem;
    }

    .nav-item[b-yesfaupr8k]  .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-yesfaupr8k]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-yesfaupr8k]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-yesfaupr8k] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-yesfaupr8k] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-yesfaupr8k] {
        display: none;
    }

    .nav-scrollable[b-yesfaupr8k] {
        /* 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-rxcx8pd0ua],
.components-reconnect-repeated-attempt-visible[b-rxcx8pd0ua],
.components-reconnect-failed-visible[b-rxcx8pd0ua],
.components-pause-visible[b-rxcx8pd0ua],
.components-resume-failed-visible[b-rxcx8pd0ua],
.components-rejoining-animation[b-rxcx8pd0ua] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-retrying[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-failed[b-rxcx8pd0ua],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-rxcx8pd0ua] {
    display: block;
}


#components-reconnect-modal[b-rxcx8pd0ua] {
    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-rxcx8pd0ua 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-rxcx8pd0ua 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-rxcx8pd0ua 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-rxcx8pd0ua]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-rxcx8pd0ua 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-rxcx8pd0ua {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-rxcx8pd0ua {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-rxcx8pd0ua {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-rxcx8pd0ua] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-rxcx8pd0ua] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-rxcx8pd0ua] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-rxcx8pd0ua] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-rxcx8pd0ua] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-rxcx8pd0ua] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-rxcx8pd0ua] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-rxcx8pd0ua 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-rxcx8pd0ua] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-rxcx8pd0ua {
    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/ListingTemplatesVirtualized.razor.rz.scp.css */
/* CSS for ListingTemplatesTest component */

.scroll-table-container[b-pf5dz3z7u5] {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: auto;
    width: 100%;
    display: block;
    border: 1px solid #ccc;
    max-width: 100%;
    box-sizing: border-box;
}

.scroll-table[b-pf5dz3z7u5] {
    width: 100%;
    border-collapse: collapse;
}

.scroll-table thead th.stuck[b-pf5dz3z7u5] {
    position: sticky;
    top: 0;
    background-color: #0073e6;
    color: white;
    z-index: 1;
}

.subby thead th[b-pf5dz3z7u5] {
    padding: 4px;
    background-color: #0052b4;
    color: white;
}

.subby tr td[b-pf5dz3z7u5] {
    padding: 0px;
}

.scroll-table th[b-pf5dz3z7u5], td[b-pf5dz3z7u5] {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.thumbnail[b-pf5dz3z7u5] {
    height: 100px;
    width: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid;
    border-radius: 4px;
}

/* Apply this to the element the user grabs to drag (e.g., a grip icon) */
.drag-handle[b-pf5dz3z7u5] {
    touch-action: none; /* CRITICAL: Prevents mobile browser scroll hijacking */
    cursor: grab;
}

.drag-handle:active[b-pf5dz3z7u5] {
    cursor: grabbing;
}

/* The ghost element that follows the cursor */
.drag-ghost[b-pf5dz3z7u5] {
    position: fixed;
    pointer-events: none; /* Prevents the ghost from blocking hover events below it */
    z-index: 9999;
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* The empty space indicating where the row will drop */
.drag-placeholder[b-pf5dz3z7u5] {
    background-color: #f0f0f0;
    outline: 2px dashed #ccc;  /* Doesn't affect the row size like border does */
    outline-offset: -2px; /* Prevents the layout from shifting or jiggling */
}

.table-row.drop-target[b-pf5dz3z7u5] {
    box-shadow: 0 -1px 2px 1px #007bff;
    /* outline: 2px dashed #007bff;  Clean blue dashed indicator */
    /* outline-offset: -2px; Prevents the layout from shifting or jiggling */
    /* background-color: #f0f7ff; Optional: give it a subtle tint */
}

.layered-border[b-pf5dz3z7u5] {
    border: 2px outset #ccc;
    border-radius: 5px;
    outline: 2px inset #ccc;

}

.bi[b-pf5dz3z7u5] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    background-position: center
}

.bi-file-image[b-pf5dz3z7u5] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-image' viewBox='0 0 16 16'%3E%3Cpath d='M8.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0'/%3E%3Cpath d='M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M3 2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v8l-2.083-2.083a.5.5 0 0 0-.76.063L8 11 5.835 9.7a.5.5 0 0 0-.611.076L3 12z'/%3E%3C/svg%3E");
}

.bi-file-image-fill[b-pf5dz3z7u5] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-image-fill' viewBox='0 0 16 16'%3E%3Cpath d='M4 0h8a2 2 0 0 1 2 2v8.293l-2.73-2.73a1 1 0 0 0-1.52.127l-1.889 2.644-1.769-1.062a1 1 0 0 0-1.222.15L2 12.292V2a2 2 0 0 1 2-2m4.002 5.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0'/%3E%3Cpath d='M10.564 8.27 14 11.708V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-.293l3.578-3.577 2.56 1.536 2.426-3.395z'/%3E%3C/svg%3E");
}

.bi-download[b-pf5dz3z7u5] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-download' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z'/%3E%3C/svg%3E");
}

.bi-search[b-pf5dz3z7u5] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
}

.bi-caret-down-square[b-pf5dz3z7u5] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M3.626 6.832A.5.5 0 0 1 4 6h8a.5.5 0 0 1 .374.832l-4 4.5a.5.5 0 0 1-.748 0z'/%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z'/%3E%3C/svg%3E");
}

select[b-pf5dz3z7u5] {
    appearance: base-select;
    color: #71717a;
    background-color: transparent;
    min-width: 180px;
    max-width: fit-content;
    padding: 0.5rem 0.75rem;
    margin: 0.5rem;
    border: 1px solid currentColor;
    border-radius: calc(0.5rem - 2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;

    & > button {
        all: revert;
        display: flex;
        width: 100%;
        font-family: inherit;
        color: currentColor;
        white-space: nowrap;

        & > svg {
            margin: 0 0 0 auto;
            width: 1.2rem;
            height: 1.2rem;
        }
    }

    &:has(option:not([hidden]):checked)[b-pf5dz3z7u5] {
        color: #18181b;
    }

    &:focus-visible[b-pf5dz3z7u5] {
        outline: 2px solid #a1a1aa;
        outline-offset: -1px;
    }

    &:disabled[b-pf5dz3z7u5] {
        background-color: #f2f2f2;
    }

    &[b-pf5dz3z7u5]::picker-icon {
        display: none;
    }

    &[b-pf5dz3z7u5]::picker(select) {
        appearance: base-select;
        border: 1px solid black;
        padding: 0.25rem;
        margin-top: 0.25rem;
        border-radius: calc(0.5rem - 2px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        cursor: default;
        transition: opacity 225ms ease-in-out, transform 225ms ease-in-out;
        transform-origin: top;
        transform: translateY(0);
        opacity: 1;

        @starting-style {
            transform: translateY(-0.25rem) scale(0.95);
            opacity: 0;
        }
    }

    & optgroup label[b-pf5dz3z7u5] {
        display: block;
        padding: 0.375rem 0.5rem;
    }

    & option[b-pf5dz3z7u5] {
        padding: 0.375rem 0.5rem;
        border-radius: calc(0.5rem - 4px);
        outline: none;

        &::after {
            content: "";
            width: 1rem;
            height: 1.5rem;
            margin-left: auto;
            opacity: 0;
            background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2318181b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
        }

        &[b-pf5dz3z7u5]::checkmark {
            display: none;
        }

        &:checked[b-pf5dz3z7u5] {
            background-color: transparent;

            &::after {
                opacity: 1;
            }
        }

        &:hover[b-pf5dz3z7u5],
        &:focus-visible[b-pf5dz3z7u5] {
            background-color: #e6e6fa;
            color: #18181b;
        }
    }
}
/* /Components/Pages/SVGTableDesigner.razor.rz.scp.css */
/* CSS for SVGTableDesigner component */
.designer-toolbar[b-e2nlam985o] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.toolbar-group[b-e2nlam985o] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.toolbar-group input[b-e2nlam985o] {
    width: 70px;
}

.primary-button[b-e2nlam985o] {
    padding: 6px 12px;
}

.canvas-container[b-e2nlam985o] {
    width: 100%;
    height: 800px;
    border: 1px solid #999;
    overflow: hidden;
    position: relative;
}

.designer-canvas[b-e2nlam985o] {
    width: 100%;
    height: 100%;
    background-color: #fafafa;
}

.table-cell[b-e2nlam985o] {
    fill: white;
    stroke: #555;
    stroke-width: 0.5;
}

.table-outline[b-e2nlam985o] {
    fill: transparent;
    stroke: #0078d4;
    stroke-width: 1.5;
    cursor: move;
}

.resize-handle[b-e2nlam985o] {
    fill: #0078d4;
    cursor: nwse-resize;
}
/* /Components/Pages/WarehouseTest.razor.rz.scp.css */
/* CSS for WarehouseTest component */
/* Stack tables on small screens */
@media screen and (max-width: 600px) {
    table[b-3h668io4rf], thead[b-3h668io4rf], tbody[b-3h668io4rf], th[b-3h668io4rf], td[b-3h668io4rf], tr[b-3h668io4rf] {
        display: block; /* Force table elements to stack */
    }

    /* Hide the desktop headers */
    thead tr[b-3h668io4rf] {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    /* Style the 'rows' like cards */
    tr[b-3h668io4rf] {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        padding: 10px;
    }

    /* Create data labels for each stacked cell */
    td[b-3h668io4rf] {
        border: none;
        position: relative;
        padding-left: 50%;
    }

    td[b-3h668io4rf]::before {
        content: attr(data-label); /* Pulls label from the td's data-label attribute */
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        font-weight: bold;
    }
}
