@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Components/SelectFromAPModal.razor.rz.scp.css */
ul[b-8ak6fjorgg] {
    list-style-type: none;
    padding-left: 2rem;
    display: none;
    margin-bottom: 0;
}

    ul.root[b-8ak6fjorgg] {
        display: block;
        padding-left: 0;
    }

.AP-tree[b-8ak6fjorgg] {
    list-style-type: none;
}

    .AP-tree.open > ul[b-8ak6fjorgg] {
        display: block;
    }

    .AP-tree.has-children > .AP-produit > .produit-libelle[b-8ak6fjorgg] {
        cursor: pointer;
    }

        .AP-tree.has-children > .AP-produit > .produit-libelle[b-8ak6fjorgg]::before {
            content: "\25B6";
            display: inline-block;
            margin-right: 7px;
            transform: rotate(0deg);
        }

    .AP-tree.loading-children > .AP-produit > .produit-libelle[b-8ak6fjorgg] {
        margin-left: 20px;
    }

        .AP-tree.loading-children > .AP-produit > .produit-libelle[b-8ak6fjorgg]::before {
            content: '';
            position: absolute;
            left: -19px;
            width: 12px;
            height: 12px;
            top: 3px;
            border-radius: 10px;
            border: 3px solid white;
            border-top-color: rgb(var(--primary-color));
            animation: loading-b-8ak6fjorgg 2s linear infinite;
        }

    .AP-tree.open > .AP-produit > .produit-libelle[b-8ak6fjorgg]::before {
        transform: rotate(90deg);
    }

.AP-produit[b-8ak6fjorgg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 3px 10px;
}

    .AP-produit:hover[b-8ak6fjorgg] {
        background-color: #0000000a;
        border-radius: 5px;
    }
    
    .AP-produit.highlight[b-8ak6fjorgg] {
        background-color: #e5f4da;
        border-radius: 5px;
    }

.produit-libelle[b-8ak6fjorgg] {
    position: relative;
    font-weight: 500;
}

.produit-code[b-8ak6fjorgg] {
    font-size: 0.9rem;
    font-weight: 300;
}

@keyframes loading-b-8ak6fjorgg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-xbdbzn9cla] {
    position: relative;
    display: inline-block;
}

.tooltip-trigger[b-xbdbzn9cla] {
    cursor: help;
    display: inline-block;
}

.tooltip-content[b-xbdbzn9cla] {
    position: absolute;
    z-index: 9999;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 
                0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    color: #232323;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: tooltipFadeIn-b-xbdbzn9cla 0.2s ease-out;
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
    width: fit-content;
}

.tooltip-inner-content[b-xbdbzn9cla] {
    position: relative;
    z-index: 1;
}

/* Arrow styles */
.tooltip-arrow[b-xbdbzn9cla] {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
    z-index: 0;
}

/* Position-specific styles */
.tooltip-top[b-xbdbzn9cla] {
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-top .tooltip-arrow[b-xbdbzn9cla] {
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    border-top: none;
    border-left: none;
}

.tooltip-bottom[b-xbdbzn9cla] {
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-bottom .tooltip-arrow[b-xbdbzn9cla] {
    top: -6px;
    left: 50%;
    margin-left: -6px;
    border-bottom: none;
    border-right: none;
}

.tooltip-left[b-xbdbzn9cla] {
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
}

.tooltip-left .tooltip-arrow[b-xbdbzn9cla] {
    right: -6px;
    top: 50%;
    margin-top: -6px;
    border-left: none;
    border-bottom: none;
}

.tooltip-right[b-xbdbzn9cla] {
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
}

.tooltip-right .tooltip-arrow[b-xbdbzn9cla] {
    left: -6px;
    top: 50%;
    margin-top: -6px;
    border-right: none;
    border-top: none;
}

/* Animation */
@keyframes tooltipFadeIn-b-xbdbzn9cla {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tooltip-bottom[b-xbdbzn9cla] {
    animation: tooltipFadeInBottom-b-xbdbzn9cla 0.2s ease-out;
}

@keyframes tooltipFadeInBottom-b-xbdbzn9cla {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tooltip-left[b-xbdbzn9cla] {
    animation: tooltipFadeInLeft-b-xbdbzn9cla 0.2s ease-out;
}

@keyframes tooltipFadeInLeft-b-xbdbzn9cla {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.tooltip-right[b-xbdbzn9cla] {
    animation: tooltipFadeInRight-b-xbdbzn9cla 0.2s ease-out;
}

@keyframes tooltipFadeInRight-b-xbdbzn9cla {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(5px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Content styling suggestions */
.tooltip-content h6[b-xbdbzn9cla],
.tooltip-content .tooltip-title[b-xbdbzn9cla] {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #232323;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
}

.tooltip-content p[b-xbdbzn9cla] {
    margin: 0 0 8px 0;
}

.tooltip-content p:last-child[b-xbdbzn9cla] {
    margin-bottom: 0;
}

.tooltip-content ul[b-xbdbzn9cla],
.tooltip-content ol[b-xbdbzn9cla] {
    margin: 0;
    padding-left: 20px;
}

.tooltip-content li[b-xbdbzn9cla] {
    margin-bottom: 4px;
}

.tooltip-content .tooltip-label[b-xbdbzn9cla] {
    font-weight: 600;
    color: rgb(var(--primary-color));
    margin-right: 4px;
}

.tooltip-content .tooltip-value[b-xbdbzn9cla] {
    color: #555;
}

.tooltip-content .badge[b-xbdbzn9cla] {
    font-size: 0.75rem;
    padding: 2px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tooltip-content[b-xbdbzn9cla] {
        max-width: 250px !important;
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .tooltip-content[b-xbdbzn9cla] {
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        border-color: rgba(255, 255, 255, 0.2);
        color: #e0e0e0;
    }

    .tooltip-arrow[b-xbdbzn9cla] {
        background: #2c2c2c;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .tooltip-content h6[b-xbdbzn9cla],
    .tooltip-content .tooltip-title[b-xbdbzn9cla] {
        color: #e0e0e0;
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .tooltip-content .tooltip-value[b-xbdbzn9cla] {
        color: #b0b0b0;
    }
}

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-e5rzr3gegr] {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: var(--main-bg-color);
    font-family: 'Rubik', sans-serif;
    color: var(--dark-color);
}

main[b-e5rzr3gegr] {
    flex-grow: 1;
    height: 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.profile[b-e5rzr3gegr] {
    cursor: pointer;
}

.profile-pic[b-e5rzr3gegr] {
    background-color: var(--grey-color);
    width: 40px;
    height: 40px;
    border-radius: 40px;
}

.sidebar-container[b-e5rzr3gegr] {
    transition: left 0.3s ease-in-out;
    position: absolute;
    height: 100%;
    width: 200px;
}

.sidebar-hidden[b-e5rzr3gegr] {
    left: -200px;
    overflow: hidden;
}

.sidebar-visible[b-e5rzr3gegr] {
    left: 0;
}

.content[b-e5rzr3gegr] {
    flex-grow: 1;
    transition: margin-left 0.3s ease-in-out;
}

/* Adjust main content margin when sidebar is hidden */
.sidebar-hidden + .content[b-e5rzr3gegr] {
    margin-left: 0;
}

.sidebar-visible + .content[b-e5rzr3gegr] {
    margin-left: 200px;
}

/* Sidebar Toggle Button */
.sidebar-toggle[b-e5rzr3gegr] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

    .sidebar-toggle:hover[b-e5rzr3gegr] {
        color: rgb(var(--primary-color));
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.sidebar[b-wgh830swq6] {
    height: 100%;
    background-color: white;
    width: 100%;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.sidebar-item[b-wgh830swq6] {
    border-radius: 10px;
    padding: 5px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sidebar-link.active .sidebar-item[b-wgh830swq6] {
    background-color: rgba(var(--primary-color), 0.15);
    font-weight: 500;
}

.subitem[b-wgh830swq6] {
    padding-left: 2rem;
}

.sidebar-bottom[b-wgh830swq6] {
    margin-top: auto;
    width: 100%;
    border-top: 2px solid #9395ae33;
}
/* /Pages/AborescenceProduits/APList.razor.rz.scp.css */
ul[b-itqauve9gy] {
    list-style-type: none;
    padding-left: 2rem;
    display: none;
    margin-bottom: 0;
}

    ul.root[b-itqauve9gy] {
        display: block;
        padding-left: 0;
    }

.AP-tree[b-itqauve9gy] {
    list-style-type: none;
}

    .AP-tree.open > ul[b-itqauve9gy] {
        display: block;
    }

    .AP-tree.has-children > .AP-produit .produit-libelle[b-itqauve9gy] {
        cursor: pointer;
    }

        .AP-tree.has-children > .AP-produit .produit-libelle[b-itqauve9gy]::before {
            content: "\25B6";
            display: inline-block;
            margin-right: 7px;
            transform: rotate(0deg);
        }

    .AP-tree.loading-children > .AP-produit .produit-libelle[b-itqauve9gy] {
        margin-left: 20px;
    }

        .AP-tree.loading-children > .AP-produit .produit-libelle[b-itqauve9gy]::before {
            content: '';
            position: absolute;
            left: -19px;
            width: 12px;
            height: 12px;
            top: 3px;
            border-radius: 10px;
            border: 3px solid white;
            border-top-color: rgb(var(--primary-color));
            animation: loading-b-itqauve9gy 2s linear infinite;
        }

    .AP-tree.open > .AP-produit .produit-libelle[b-itqauve9gy]::before {
        transform: rotate(90deg);
    }

.AP-produit[b-itqauve9gy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 3px 10px;
}

    .AP-produit:hover[b-itqauve9gy] {
        background-color: #0000000a;
        border-radius: 5px;
    }

.produit-libelle[b-itqauve9gy] {
    position: relative;
    font-weight: 500;
}

.produit-code[b-itqauve9gy] {
    font-size: 0.9rem;
    font-weight: 300;
}

@keyframes loading-b-itqauve9gy {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/Estimations/EstimationList.razor.rz.scp.css */
ul[b-341uaj0om5] {
    list-style-type: none;
    padding-left: 2rem;
    display: none;
    margin-bottom: 0;
}

    ul.root[b-341uaj0om5] {
        display: block;
        padding-left: 0;
    }

.AP-tree[b-341uaj0om5] {
    list-style-type: none;
}

    .AP-tree.open > ul[b-341uaj0om5] {
        display: block;
    }

    .AP-tree.has-children > .AP-produit > .produit-libelle[b-341uaj0om5] {
        cursor: pointer;
    }

        .AP-tree.has-children > .AP-produit > .produit-libelle[b-341uaj0om5]::before {
            content: "\25B6";
            display: inline-block;
            margin-right: 7px;
            transform: rotate(0deg);
        }

    .AP-tree.loading-children > .AP-produit > .produit-libelle[b-341uaj0om5] {
        margin-left: 20px;
    }

        .AP-tree.loading-children > .AP-produit > .produit-libelle[b-341uaj0om5]::before {
            content: '';
            position: absolute;
            left: -19px;
            width: 12px;
            height: 12px;
            top: 3px;
            border-radius: 10px;
            border: 3px solid white;
            border-top-color: rgb(var(--primary-color));
            animation: loading-b-341uaj0om5 2s linear infinite;
        }

    .AP-tree.open > .AP-produit > .produit-libelle[b-341uaj0om5]::before {
        transform: rotate(90deg);
    }

.AP-produit[b-341uaj0om5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 3px 10px;
}

    .AP-produit:hover[b-341uaj0om5] {
        background-color: #0000000a;
        border-radius: 5px;
    }

.produit-libelle[b-341uaj0om5] {
    position: relative;
    font-weight: 500;
}

.produit-code[b-341uaj0om5] {
    font-size: 0.9rem;
    font-weight: 300;
}

@keyframes loading-b-341uaj0om5 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/Exigences/ExigenceList.razor.rz.scp.css */
/* Ensure the grid takes up the full width of its container */

[b-x9v8pbv3o0] .quickgrid {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: auto;
}

    [b-x9v8pbv3o0] .quickgrid.no-th th {
        display: none;
    }
    /* Style for the table header */
    [b-x9v8pbv3o0] .quickgrid > thead > tr > th {
        color: #333;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #e1e1e1;
        padding: 0;
    }

    [b-x9v8pbv3o0] .quickgrid .col-title {
        color: #333;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
    }

    [b-x9v8pbv3o0] .quickgrid > tbody > tr > td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

    /* Hover effect for table rows */
    [b-x9v8pbv3o0] .quickgrid :not(thead) tr:hover {
        background-color: rgba(var(--primary-color), 0.15);
    }

/* Hover effect for table rows */
[b-x9v8pbv3o0] .paginator {
    padding: 12px 15px;
    border-top: none;
}

.searchInput[b-x9v8pbv3o0] {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

    .searchInput:focus[b-x9v8pbv3o0], .searchInput:active[b-x9v8pbv3o0] {
        outline: none;
        border: none;
        box-shadow: none;
    }

.error-box[b-x9v8pbv3o0] {
    max-height: 200px;
    overflow: auto;
    background-color: #ff00000d;
    border-radius: 10px;
    padding: 10px 35px;
}
/* /Pages/Interfaces/DynamicTable.razor.rz.scp.css */
.drag-handle[b-ltezjizag5] {
    cursor: grab;
    width: 20px;
    text-align: center;
}

.drag-handle i[b-ltezjizag5] {
    color: #666;
}

.drag-chosen[b-ltezjizag5] {
    opacity: 0.4;
}

.drag-ghost[b-ltezjizag5] {
    background-color: #e9ecef !important;
    opacity: 0.8;
}
/* /Pages/Interfaces/InterfaceDetail.razor.rz.scp.css */
.statusEnCours[b-q0wsvrs8l5] {
    background-color: rgba(var(--primary-color), 0.2)
}
/* /Pages/Interfaces/InterfaceList.razor.rz.scp.css */
/* Ensure the grid takes up the full width of its container */

[b-rdtswnty8x] .quickgrid {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: auto;
}

    [b-rdtswnty8x] .quickgrid.no-th th {
        display: none;
    }
    /* Style for the table header */
    [b-rdtswnty8x] .quickgrid > thead > tr > th {
        color: #333;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #e1e1e1;
        padding: 0;
    }

    [b-rdtswnty8x] .quickgrid .col-title {
        color: #333;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
    }

    [b-rdtswnty8x] .quickgrid > tbody > tr > td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

    /* Hover effect for table rows */
    [b-rdtswnty8x] .quickgrid :not(thead) tr:hover {
        background-color: rgba(var(--primary-color), 0.15);
    }

/* Hover effect for table rows */
[b-rdtswnty8x] .paginator {
    padding: 12px 15px;
    border-top: none;
}

.searchInput[b-rdtswnty8x] {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

    .searchInput:focus[b-rdtswnty8x], .searchInput:active[b-rdtswnty8x] {
        outline: none;
        border: none;
        box-shadow: none;
    }

.error-box[b-rdtswnty8x] {
    max-height: 200px;
    overflow: auto;
    background-color: #ff00000d;
    border-radius: 10px;
    padding: 10px 35px;
}
/* /Pages/Interfaces/InterfaceMatrix.razor.rz.scp.css */
td.disabled[b-ekq18y03aq] {
    background-color: #f6f6f6;
}
/* /Pages/Lots/LotDetail.razor.rz.scp.css */
.statusEnCours[b-0u18gjpoy4] {
    background-color: rgba(var(--primary-color), 0.2)
}
/* /Pages/Lots/LotList.razor.rz.scp.css */
/* Ensure the grid takes up the full width of its container */

[b-ulhr45q2a6] .quickgrid {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: auto;
}

    [b-ulhr45q2a6] .quickgrid.no-th th {
        display: none;
    }
    /* Style for the table header */
    [b-ulhr45q2a6] .quickgrid > thead > tr > th {
        color: #333;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #e1e1e1;
        padding: 0;
    }

    [b-ulhr45q2a6] .quickgrid .col-title {
        color: #333;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
    }

    [b-ulhr45q2a6] .quickgrid > tbody > tr > td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

    /* Hover effect for table rows */
    [b-ulhr45q2a6] .quickgrid :not(thead) tr:hover {
        background-color: rgba(var(--primary-color), 0.15);
    }

/* Hover effect for table rows */
[b-ulhr45q2a6] .paginator {
    padding: 12px 15px;
    border-top: none;
}

.searchInput[b-ulhr45q2a6] {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

    .searchInput:focus[b-ulhr45q2a6], .searchInput:active[b-ulhr45q2a6] {
        outline: none;
        border: none;
        box-shadow: none;
    }

.error-box[b-ulhr45q2a6] {
    max-height: 200px;
    overflow: auto;
    background-color: #ff00000d;
    border-radius: 10px;
    padding: 10px 35px;
}
/* /Pages/Profile/ProfileDetail.razor.rz.scp.css */
.statusEnCours[b-vik81sz4j6] {
    background-color: rgba(var(--primary-color), 0.2)
}
/* /Pages/Projects/ProjectDetail.razor.rz.scp.css */
.statusEnCours[b-dpk92kgv6w] {
    background-color: rgba(var(--primary-color), 0.2)
}
/* /Pages/Projects/ProjectList.razor.rz.scp.css */
/* Ensure the grid takes up the full width of its container */

[b-gswxyneu9a] .quickgrid {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: auto;
}

    [b-gswxyneu9a] .quickgrid.no-th th {
        display: none;
    }
    /* Style for the table header */
    [b-gswxyneu9a] .quickgrid > thead > tr > th {
        color: #333;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #e1e1e1;
        padding: 0;
    }

    [b-gswxyneu9a] .quickgrid .col-title {
        color: #333;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
    }

    [b-gswxyneu9a] .quickgrid > tbody > tr > td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

    /* Hover effect for table rows */
    [b-gswxyneu9a] .quickgrid :not(thead) tr:hover {
        background-color: rgba(var(--primary-color), 0.15);
    }

/* Hover effect for table rows */
[b-gswxyneu9a] .paginator {
    padding: 12px 15px;
    border-top: none;
}

.searchInput[b-gswxyneu9a] {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

    .searchInput:focus[b-gswxyneu9a], .searchInput:active[b-gswxyneu9a] {
        outline: none;
        border: none;
        box-shadow: none;
    }

.error-box[b-gswxyneu9a] {
    max-height: 200px;
    overflow: auto;
    background-color: #ff00000d;
    border-radius: 10px;
    padding: 10px 35px;
}
/* /Pages/Users/UserDetail.razor.rz.scp.css */
.statusEnCours[b-ii3n8t07xi] {
    background-color: rgba(var(--primary-color), 0.2)
}
/* /Pages/Users/UserList.razor.rz.scp.css */
/* Ensure the grid takes up the full width of its container */

[b-4qg76hxdus] .quickgrid {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: auto;
}

    /* Style for the table header */
    [b-4qg76hxdus] .quickgrid > thead > tr > th {
        color: #333;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #e1e1e1;
        padding: 0;
    }

    [b-4qg76hxdus] .quickgrid .col-title {
        color: #333;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
    }

    [b-4qg76hxdus] .quickgrid > tbody > tr > td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e1e1e1;
    }

    /* Hover effect for table rows */
    [b-4qg76hxdus] .quickgrid :not(thead) tr:hover {
        background-color: rgba(var(--primary-color), 0.15);
    }

/* Hover effect for table rows */
[b-4qg76hxdus] .paginator {
    padding: 12px 15px;
    border-top: none;
}

.searchInput[b-4qg76hxdus] {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

    .searchInput:focus[b-4qg76hxdus], .searchInput:active[b-4qg76hxdus] {
        outline: none;
        border: none;
        box-shadow: none;
    }
