/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
#components-reconnect-modal[b-bw3zfhyhaq] {
    display: none;
}

    #components-reconnect-modal.components-reconnect-show[b-bw3zfhyhaq],
    #components-reconnect-modal.components-reconnect-failed[b-bw3zfhyhaq],
    #components-reconnect-modal.components-reconnect-rejected[b-bw3zfhyhaq] {
        display: flex;
    }

.reconnect-shell[b-bw3zfhyhaq] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.22);
}

.reconnect-card[b-bw3zfhyhaq] {
    min-width: 320px;
    max-width: 520px;
    margin: 20px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.reconnect-title[b-bw3zfhyhaq] {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reconnect-body[b-bw3zfhyhaq] {
    display: none;
    font-size: 14px;
    line-height: 1.4;
}

#components-reconnect-modal.components-reconnect-show .reconnect-show[b-bw3zfhyhaq] {
    display: block;
}

#components-reconnect-modal.components-reconnect-failed .reconnect-failed[b-bw3zfhyhaq] {
    display: block;
}

#components-reconnect-modal.components-reconnect-rejected .reconnect-rejected[b-bw3zfhyhaq] {
    display: block;
}

.reconnect-attempts[b-bw3zfhyhaq] {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}
/* /Components/Login/Login.razor.rz.scp.css */

.password-wrapper[b-z8gsmyhavx] {
    position: relative;
}

.password-input[b-z8gsmyhavx] {
    padding-right: 45px;
}

.password-toggle[b-z8gsmyhavx] {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #777;
}

    .password-toggle:hover[b-z8gsmyhavx] {
        color: #111;
    }

.disabled-link[b-z8gsmyhavx] {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}
/* /Components/Login/Register.razor.rz.scp.css */
.validation-message[b-1233f7watu] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.password-rules small[b-1233f7watu] {
    line-height: 1.5;
}

.password-wrapper[b-1233f7watu] {
    position: relative;
}

.password-input[b-1233f7watu] {
    padding-right: 45px;
}

.password-toggle[b-1233f7watu] {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .password-toggle:hover[b-1233f7watu] {
        color: #111;
    }

    .password-toggle:focus[b-1233f7watu] {
        outline: none;
        box-shadow: none;
    }

.validation-message[b-1233f7watu] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.password-rules small[b-1233f7watu] {
    line-height: 1.5;
}
/* /Pages/Products/ProductList.razor.rz.scp.css */
.mobile-filter-trigger[b-ue2vy0sqag] {
    display: inline-block;
    cursor: pointer;
}

.filters-sidebar[b-ue2vy0sqag] {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

    .filters-sidebar[b-ue2vy0sqag]::-webkit-scrollbar {
        width: 8px;
    }

    .filters-sidebar[b-ue2vy0sqag]::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.15);
        border-radius: 10px;
    }


.mobile-filter-overlay[b-ue2vy0sqag] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1040;
}

    .mobile-filter-overlay.open[b-ue2vy0sqag] {
        opacity: 1;
        visibility: visible;
    }

.mobile-filter-drawer[b-ue2vy0sqag] {
    position: fixed;
    top: 0;
    left: 0;
    width: min(85vw, 360px);
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0,0,0,.18);
}

    .mobile-filter-drawer.open[b-ue2vy0sqag] {
        transform: translateX(0);
    }

.mobile-filter-header[b-ue2vy0sqag] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

    .mobile-filter-header h5[b-ue2vy0sqag] {
        margin: 0;
    }

.mobile-filter-close[b-ue2vy0sqag] {
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.mobile-filter-body[b-ue2vy0sqag] {
    flex: 1;
    overflow-y: auto;
    padding: 10px 20px 30px 20px;
}

.mobile-filter-footer[b-ue2vy0sqag] {
    padding: 15px 20px 20px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}

.mobile-filter-search[b-ue2vy0sqag] {
    position: relative;
}

    .mobile-filter-search input[b-ue2vy0sqag] {
        width: 100%;
        padding: 10px 40px 10px 12px;
    }

    .mobile-filter-search p[b-ue2vy0sqag] {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

@media (min-width: 1200px) {
    .mobile-filter-overlay[b-ue2vy0sqag],
    .mobile-filter-drawer[b-ue2vy0sqag] {
        display: none;
    }
}


.desktop-filters-content[b-ue2vy0sqag] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    background: #fff;
}
    .desktop-filters-content[b-ue2vy0sqag]::-webkit-scrollbar {
        width: 8px;
    }
    .desktop-filters-content[b-ue2vy0sqag]::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,.15);
        border-radius: 10px;
    }
.desktop-filter-trigger[b-ue2vy0sqag] {
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s ease;
}

    .desktop-filter-trigger:hover[b-ue2vy0sqag] {
        border-color: rgba(0,0,0,.3);
    }

.desktop-filters-wrapper[b-ue2vy0sqag] {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.desktop-filters-header[b-ue2vy0sqag] {
    font-weight: 600;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: #fff;
    flex-shrink: 0;
}

.filters-col[b-ue2vy0sqag],
.products-col[b-ue2vy0sqag] {
    width: 100%;
    min-width: 0;
}

@media (min-width: 1200px) {
    .filters-col[b-ue2vy0sqag] {
        flex: 0 0 auto;
        overflow: hidden;
        transition: flex-basis .35s ease, max-width .35s ease, opacity .25s ease, padding .35s ease, margin .35s ease;
    }

        .filters-col.open[b-ue2vy0sqag] {
            flex-basis: 25%;
            max-width: 25%;
            opacity: 1;
        }

        .filters-col.closed[b-ue2vy0sqag] {
            flex-basis: 0;
            max-width: 0;
            opacity: 0;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin: 0 !important;
        }

    .products-col[b-ue2vy0sqag] {
        flex: 0 0 auto;
        transition: flex-basis .35s ease, max-width .35s ease;
        min-width: 0;
    }

        .products-col.with-filters[b-ue2vy0sqag] {
            flex-basis: 75%;
            max-width: 75%;
        }

        .products-col.full[b-ue2vy0sqag] {
            flex-basis: 100%;
            max-width: 100%;
        }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-bft3u7zxbl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-bft3u7zxbl] {
    flex: 1;
}

.sidebar[b-bft3u7zxbl] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-bft3u7zxbl] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bft3u7zxbl]  a, .top-row[b-bft3u7zxbl]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-bft3u7zxbl]  a:hover, .top-row[b-bft3u7zxbl]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-bft3u7zxbl]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-bft3u7zxbl] {
        display: none;
    }

    .top-row.auth[b-bft3u7zxbl] {
        justify-content: space-between;
    }

    .top-row[b-bft3u7zxbl]  a, .top-row[b-bft3u7zxbl]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bft3u7zxbl] {
        flex-direction: row;
    }

    .sidebar[b-bft3u7zxbl] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bft3u7zxbl] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-bft3u7zxbl]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-bft3u7zxbl], article[b-bft3u7zxbl] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
