@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/SearchableDropdown.razor.rz.scp.css */
.searchable-dropdown-container[b-dm2kpaqs06] {
    position: relative;
    width: 100%;
}

.searchable-dropdown-menu[b-dm2kpaqs06] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.searchable-input-wrapper[b-dm2kpaqs06] {
    position: relative;
}

.clear-button[b-dm2kpaqs06] {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0;
}

    .clear-button:hover[b-dm2kpaqs06] {
        color: #000;
    }
/* /Components/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-ui4p63esjt] {
    position: relative;
    display: inline-block;
}

.tooltip-box[b-ui4p63esjt] {
    position: absolute;
    z-index: 9999;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

    /* placement */
    .tooltip-box.top[b-ui4p63esjt] {
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 6px;
    }

    .tooltip-box.bottom[b-ui4p63esjt] {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 6px;
    }

    .tooltip-box.left[b-ui4p63esjt] {
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 6px;
    }

    .tooltip-box.right[b-ui4p63esjt] {
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 6px;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-u3m44c3vc8] {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
}
.top-row[b-u3m44c3vc8] {
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
   
}

.top-row-header[b-u3m44c3vc8] {
    color: #d7d7d7;
    font-size: 1.75em;
    font-weight: 100;
}
.main[b-u3m44c3vc8] {
    flex: 1;
}
/* /Layout/MobileNavBar.razor.rz.scp.css */
.navbar-nav .collapse .nav-link[b-kr5bh5i7t1] {
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #ccc;
}

.navbar-nav .collapse .nav-link:hover[b-kr5bh5i7t1] {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}
/* /Layout/SideBar.razor.rz.scp.css */
.nav .collapse .nav-link[b-bisrwy7kf0] {
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #ccc;
}

.nav .nav-link:hover[b-bisrwy7kf0] {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}
/* /Pages/ApplicationUser/EditApplicationUser.razor.rz.scp.css */
.scroll-panel[b-39ogqbl6wz] {
    max-height: 500px;
    overflow-y: auto;
}

.scroll-panel thead th[b-39ogqbl6wz] {
    position: sticky;
    top: 0;
    z-index: 1;
}
/* /Pages/AreaCropImageHistory/EditAreaCropImageHistory.razor.rz.scp.css */
.upload-overlay[b-6hg9stn7we] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    backdrop-filter: blur(2px);
}
/* /Pages/Area/AreaDashboard.razor.rz.scp.css */
td[b-a5y1b32nya] {
    height: 50px;
}

/* Prevent horizontal scroll jitter while swiping */
.slide-wrapper[b-a5y1b32nya] {
    overflow: hidden;
    height: 100%;
}

/* Make vertical scroll work while allowing horizontal swipe */
.swipe-container[b-a5y1b32nya] {
    touch-action: pan-y pan-x;
    user-select: none;
    height: 100%;
}
/* Animate the incoming card depending on direction */
.slide-left .card-anim[b-a5y1b32nya] {
    animation: slideInFromRight-b-a5y1b32nya 220ms ease both;
}

.slide-right .card-anim[b-a5y1b32nya] {
    animation: slideInFromLeft-b-a5y1b32nya 220ms ease both;
}

@keyframes slideInFromRight-b-a5y1b32nya {
    from {
        transform: translateX(24px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft-b-a5y1b32nya {
    from {
        transform: translateX(-24px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.area-table-wrapper[b-a5y1b32nya] {
    height: calc(100vh - 100px); /* adjust if header spacing differs */
    overflow: hidden; /* container controls flow */
}

.sticky-top1[b-a5y1b32nya] {
    position: sticky;
    top: 0;
    z-index: 3;
}
/* /Pages/Area/AreaPlanManagement.razor.rz.scp.css */
td[b-svj2dkkfm4] {
  height: 50px;
}

.area-table-wrapper[b-svj2dkkfm4] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-svj2dkkfm4] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/Area/EditArea.razor.rz.scp.css */
.tab-pane.active#areaDetails[b-lgajvcp6bl] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#editPadddock_Map[b-lgajvcp6bl] {
    flex-grow: 1;
    min-height: 200px;
}

@media (max-width: 768px) {
    .nav-tabs .nav-item[b-lgajvcp6bl] {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
        text-align: center;
    }

    .nav-tabs .nav-link[b-lgajvcp6bl] {
        display: block;
        font-size: 0.85rem;
        padding: 0.5rem;
        white-space: nowrap; /* no line break */
        overflow: hidden; /* hide overflow */
        text-overflow: ellipsis; /* show ... */
        text-align: center;
        width: 100%;
    }
}
/* /Pages/Area/OnboardArea.razor.rz.scp.css */
body[b-anwrxjo1l1] {
}

.map-overlay[b-anwrxjo1l1] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99; /* above the map tiles */
}
/* /Pages/Area/SampleTestView.razor.rz.scp.css */
/* /Pages/AssetCategory/SearchAssetCategory.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-l4qn5xseg3] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-l4qn5xseg3] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/Asset/EditAsset.razor.rz.scp.css */
.card-scroll-body[b-k9zlnyfipx] {
    overflow-x: hidden;
}

/* Mobile / tablet: allow inner scrolling */
@media (max-width: 991.98px) {
    .card-scroll-body[b-k9zlnyfipx] {
        max-height: 60dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Desktop: no forced scroll */
@media (min-width: 992px) {
    .card-scroll-body[b-k9zlnyfipx] {
        max-height: none;
        overflow-y: visible;
    }
}

/* Show on mobile/tablet */
.nfc-mobile-only[b-k9zlnyfipx] {
    display: block;
}

/* Hide on desktop */
@media (min-width: 992px) {
    .nfc-mobile-only[b-k9zlnyfipx] {
        display: none !important;
    }
}
/* /Pages/Asset/SearchAsset.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-gx8dwjrdlt] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-gx8dwjrdlt] {
    position: sticky;
    top: 0;
    z-index: 2;
}

.table-hover > tbody > tr:hover > td[b-gx8dwjrdlt],
.table-hover > tbody > tr:hover > th[b-gx8dwjrdlt] {
    background-color: #f2f6ff !important;
    cursor: pointer;
}

.asset-mobile-list-scroll[b-gx8dwjrdlt] {
    max-height: calc(100dvh - 270px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 2px;
}

.asset-table-scroll[b-gx8dwjrdlt] {
    max-height: calc(100dvh - 270px);
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* /Pages/Carbon/CarbonEmission.razor.rz.scp.css */
.carbon-page[b-1otyv7emza] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    /* adjust 100px depending on navbar/header height */
}

.table-container[b-1otyv7emza] {
    flex: 1;
    overflow-y: auto;
}

.table-container thead th[b-1otyv7emza] {
    position: sticky;
    top: 0;
    z-index: 2;
}

.table-container tfoot th[b-1otyv7emza] {
    position: sticky;
    bottom: 0;
    z-index: 2;
}
/* /Pages/CommodityCat/SearchCommodityCat.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-98kaq7wahc] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-98kaq7wahc] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/CommodityLevel/SearchCommodityLevel.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-51pm0ps41x] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-51pm0ps41x] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/CommodityType/SearchCommodityType.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-h9zxa373pu] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-h9zxa373pu] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/Commodity/SearchCommodity.razor.rz.scp.css */
.table-wrapper[b-5iiy2qk95o] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}
/* /Pages/Customer/EditCustomer.razor.rz.scp.css */
.esg-profile-table[b-mz4lifdpbj] {
    max-height: 400px;
    overflow-y: auto;
}

.esg-profile-table thead th[b-mz4lifdpbj] {
    position: sticky;
    top: 0;
    z-index: 1;
}
/* /Pages/FarmSetup/FarmSetup.razor.rz.scp.css */
.circle[b-yxdf8ifvyw] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bs-primary);
    background: #fff;
}

    .circle.done[b-yxdf8ifvyw] {
        background: var(--bs-primary);
        color: #fff;
    }

    .circle.active[b-yxdf8ifvyw] {
        border-width: 3px; /* emphasis */
    }

.step small[b-yxdf8ifvyw] {
    margin-top: 0.25rem;
    font-size: 0.85rem;
}
/* /Pages/Home.razor.rz.scp.css */
html[b-my3pn19f03], body[b-my3pn19f03] {
    height: 100%;
    overflow: hidden; /* Disable browser scrolling */
}

.app-container[b-my3pn19f03] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.scroll-section[b-my3pn19f03] {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
/* /Pages/InboundCommodity/EditInboundCommodity.razor.rz.scp.css */
.table-container[b-cwqckrc64f] {
    max-height: calc(100vh - 420px); /* adjust the 320px if needed */
    overflow-y: auto;
    overflow-x: hidden;
}

.table-container table thead th[b-cwqckrc64f] {
    position: sticky;
    top: 0;
    z-index: 5;
}
/* /Pages/Job/EditJobAssetCommodityUsageList.razor.rz.scp.css */
.table-responsive[b-vif2ichqob],
.card-body[b-vif2ichqob],
.modal-body[b-vif2ichqob] {
    overflow: visible !important;
}

.waste-details-row > td[b-vif2ichqob] {
    border-top: 0;
}

.waste-details-row .bg-light[b-vif2ichqob] {
    border-left: 4px solid var(--bs-success);
}
/* /Pages/Login.razor.rz.scp.css */
.download-overlay[b-w98jdk21og] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
/* /Pages/Map/MapEditModal.razor.rz.scp.css */

.button-bar[b-9ue6xpud6m] {
    padding: 10px;
    flex-shrink: 0; /* don’t let buttons collapse */
    background: #fff; /* optional: keep buttons visible */
}
.h-80vh[b-9ue6xpud6m] {
    height: 80vh !important;
}
/* /Pages/SampleImportConfiguration/EditSampleImportConfiguration.razor.rz.scp.css */
/*.table-responsive thead th {
    position: sticky;
    top: 0;
    background: #212529;*/ /* match .table-dark */
    /*z-index: 2;
}*/
/* /Pages/SampleTestReport/SampleTestReport.razor.rz.scp.css */
.report-page[b-s0rud0ivdv] {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: white;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.report-header[b-s0rud0ivdv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.logo-box[b-s0rud0ivdv] {
    border: 1px solid #4caf50;
    padding: 18px 30px;
    width: 420px;
}

.logo-text[b-s0rud0ivdv] {
    color: green;
    font-size: 34px;
    font-weight: bold;
}

.logo-subtitle[b-s0rud0ivdv] {
    color: green;
    font-size: 18px;
    font-weight: bold;
}

.report-number[b-s0rud0ivdv] {
    font-weight: bold;
}

.client-box[b-s0rud0ivdv] {
    display: grid;
    grid-template-columns: 90px 1fr;
    margin-bottom: 15px;
}

    .client-box .value[b-s0rud0ivdv] {
        background: #ffff99;
        padding: 8px;
        min-height: 45px;
    }

.info-table[b-s0rud0ivdv] {
    width: 450px;
    border-collapse: collapse;
    margin-bottom: 15px;
}

    .info-table td[b-s0rud0ivdv] {
        border: 1px solid black;
        padding: 4px 6px;
    }

.content-grid[b-s0rud0ivdv] {
    display: grid;
    grid-template-columns: 450px 300px;
    /*gap: 25px;*/
    align-items: start;
}

.result-table[b-s0rud0ivdv] {
    width: 100%;
    border-collapse: collapse;
}

    .result-table th[b-s0rud0ivdv],
    .result-table td[b-s0rud0ivdv] {
        border: 1px solid black;
        padding: 5px 6px;
        vertical-align: top;
    }

    .result-table th[b-s0rud0ivdv] {
        text-align: center;
        font-weight: bold;
    }

.category-cell[b-s0rud0ivdv] {
    width: 100px;
    font-weight: bold;
}

.result-cell[b-s0rud0ivdv] {
    font-weight: bold;
    text-align: center;
}

.chart-section[b-s0rud0ivdv] {
    padding-top: 40px;
    text-align: center;
    width: 100%;
}

    .chart-section h4[b-s0rud0ivdv] {
        font-size: 22px;
        font-weight: bold;
    }

.placeholder-chart[b-s0rud0ivdv] {
    width: 280px;
    height: 180px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.chart-note[b-s0rud0ivdv] {
    font-size: 11px;
    color: #666;
}
/* /Pages/SampleTestReport/SampleTestReportWithRange.razor.rz.scp.css */
.result-cell[b-qxbiz5opqp] {
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Within adequate range */
.result-good[b-qxbiz5opqp] {
    background-color: #d1e7dd;
    color: #0f5132;
}

/* Slightly outside adequate */
.result-warning-light[b-qxbiz5opqp] {
    background-color: #fff3cd;
    color: #664d03;
}

/* Far outside */
.result-warning-strong[b-qxbiz5opqp] {
    background-color: #ffb366;
    color: #842029;
}
/* /Pages/SampleTest/EditSampleTest.razor.rz.scp.css */
.table[b-pu79oi78zn] {
    table-layout: auto; /* let columns shrink/grow to content */
    white-space: nowrap; /* prevent wrapping if you want tight fit */
    
}

    .table .fit[b-pu79oi78zn] {
        width: 1%; /* allows the browser to shrink to fit content */
        padding: 0.5rem; /* adjust padding as needed */
    }
/* /Pages/SampleTest/EditSampleTestPlanHistoryList.razor.rz.scp.css */
.map-wrapper[b-yovdwg2c7f] {
    position: relative;
    transition: all 0.3s ease-in-out;
}

    .map-wrapper.collapsed[b-yovdwg2c7f] {
        height: 300px;
    }

    .map-wrapper.expanded[b-yovdwg2c7f] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        z-index: 2000;
        background: #fff;
        padding: 0;
        margin: 0;
        border-radius: 0;
    }

.map-inner[b-yovdwg2c7f] {
    width: 100%;
    height: 100%;
}

/* Floating buttons */
.map-btn-one[b-yovdwg2c7f],
.map-btn-two[b-yovdwg2c7f],
.map-btn-three[b-yovdwg2c7f] {
    position: absolute;
    z-index: 2100;
    right: 10px;
}

.map-btn-one[b-yovdwg2c7f] {
    top: 10px;
}

.map-btn-two[b-yovdwg2c7f] {
    top: 50px;
}

.map-btn-three[b-yovdwg2c7f] {
    top: 90px;
}

.map-instruction[b-yovdwg2c7f] {
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 2100;
}
/* /Pages/SampleTest/ImportSampleResult.razor.rz.scp.css */


input#input[b-svt06exk4d] {
    display: none;
}

.hover[b-svt06exk4d] {
    border-style: solid;
    background-color: #dddddd;
    color: #555555;
}

.image-container[b-svt06exk4d] {
    display: flex;
    justify-content: center;
}

    .image-container img[b-svt06exk4d] {
        width: 50%;
    }

[b-svt06exk4d] input[type=file] {
    width: 100%;
    padding: 20px;
}

.error-message-container[b-svt06exk4d] {
    color: red;
    text-align: center;
}
/* /Pages/ShoppingCartExample.razor.rz.scp.css */
.cart-item img[b-hyqmbg430i] {
    max-width: 100px;
    height: auto;
}

.quantity-input[b-hyqmbg430i] {
    width: 50px;
}

.cart-summary[b-hyqmbg430i] {
    background-color: #f8f9fa;
    border-radius: 10px;
}
/* /Pages/SiteCommodity/SearchSiteCommodity.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-3rgnigfeyg] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-3rgnigfeyg] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/Site/SearchFarm.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-71d7os8s06] {
    height: calc(100vh - 140px); /* auto-adjust space under header; tweak if needed */
    overflow: hidden;
}

.sticky-top1[b-71d7os8s06] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/StockTake/EditStockTake.razor.rz.scp.css */
.stocktake-table-container[b-l006r5nza9] {
    max-height: calc(100vh - 320px); /* adjust the 320px if needed */
    overflow-y: auto;
    overflow-x: hidden;
}

.stocktake-table-container table thead th[b-l006r5nza9] {
    position: sticky;
    top: 0;
    z-index: 5;
}
/* /Pages/StockTake/SearchStockTake.razor.rz.scp.css */
/*td {
    height: 50px;
}
*/
.table-wrapper[b-2c2tybiy22] {
    position: relative;
    padding-bottom: 50px; /* reserve space for the fixed footer */
}

.pagination-bar[b-2c2tybiy22] {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 8px 12px;
    border-top: 1px solid #ddd;
    z-index: 10;
}

.sticky-top1[b-2c2tybiy22] {
    position: sticky;
    top: 0;
    z-index: 2;
}
/* /Pages/SwipeContainer.razor.rz.scp.css */
.swipe-container[b-b59i5hrw0l] {
    touch-action: pan-y;
    user-select: none;
    height: 100%;
}
