@import '_content/NexusRazor/NexusRazor.uqs1249f61.bundle.scp.css';

/* _content/AppSite/Components/BaseControls/CtrlFlowBar_Horizontal.razor.rz.scp.css */
/* Horizontal Flow Bar — preserves progress bar colors from CtrlProgressBar_Horizontal and adds moving effect */

/* base */
.hflowbar[b-1ztm71h6y3] {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

/* outline (matches .hbar-outline styling) */
.hflowbar-outline[b-1ztm71h6y3] {
    position: relative;
    display: block;
    width: 100%;
    height: 26px;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15));
    border: 3px solid rgb(183 222 255);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

/* outline states */
.hflowbar-outline-active[b-1ztm71h6y3] {
    border-color: rgb(183 222 255);
}
/* keep same base border when active */
.hflowbar-outline-no-flow[b-1ztm71h6y3] {
    border-color: #bfbfbf;
}

/* fill bar (width animated) — preserve gradients from CtrlProgressBar */
.hflowbar-fill[b-1ztm71h6y3] {
    height: 100%;
    transition: width 0.6s ease-out;
    border-radius: 9px;
    box-shadow: inset 0 -6px 12px rgba(0,0,0,0.02);
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background: linear-gradient(90deg, #3fc3ff, #40bbf3); /* same as .hbar-fill-normal */
}

/* no-flow (idle) — muted appearance */
.hflowbar-fill-no-flow[b-1ztm71h6y3] {
    background: linear-gradient(90deg, #e6e6e6, #f7f7f7);
}

/* active flowing: keep same base colors but add animated overlay to suggest movement */
.hflowbar-fill-active[b-1ztm71h6y3] {
    /* base gradient (same colors) */
    background-image: linear-gradient(90deg, #3fc3ff 0%, #40bbf3 100%), repeating-linear-gradient( 45deg, rgba(255,255,255,0.08) 0 8px, rgba(255,255,255,0.02) 8px 16px );
    background-blend-mode: overlay;
    background-size: auto, 32px 32px;
    animation: hflowMove-b-1ztm71h6y3 1.0s linear infinite;
}

/* animation moves the repeating overlay to create the flowing effect */
@keyframes hflowMove-b-1ztm71h6y3 {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 0, 64px 0;
    }
}

/* centered label overlay — follow same label rules as CtrlProgressBar */
.hflowbar-label[b-1ztm71h6y3] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;

}

/* inner wrapper grouping percent + text */
.hflowbar-label-inner[b-1ztm71h6y3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hflowbar-label-left[b-1ztm71h6y3] {
    flex: 0 0 auto;
}

.hflowbar-label-right[b-1ztm71h6y3] {
    flex: 0 1 auto;
    max-width: 40ch;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* label color adjustments when no-flow (keep readable) */
.hflowbar-outline-no-flow .hflowbar-label[b-1ztm71h6y3] {
 
    text-shadow: none;
}

/* allow inner elements to shrink inside table cells */
.hflowbar .hflowbar-outline[b-1ztm71h6y3],
.hflowbar .hflowbar-fill[b-1ztm71h6y3] {
    min-width: 0;
}

/* responsive tweak */
@media (max-width: 480px) {
    .hflowbar-outline[b-1ztm71h6y3] {
        height: 24px;
        border-radius: 10px;
    }

    .hflowbar-label[b-1ztm71h6y3] {
        font-size: 0.82rem;
        padding: 0 0.4rem;
    }

    .hflowbar-label-right[b-1ztm71h6y3] {
        max-width: 30ch;
    }
}
/* _content/AppSite/Components/BaseControls/CtrlProgressBar_Horizontal.razor.rz.scp.css */
/* Horizontal Progress Bar — centered label wrapper */
.hbar[b-0z9vz37xtj] {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

    /* Reset possible inherited pseudo-elements */
    .hbar[b-0z9vz37xtj]::before,
    .hbar[b-0z9vz37xtj]::after,
    .hbar-outline[b-0z9vz37xtj]::before,
    .hbar-outline[b-0z9vz37xtj]::after {
        content: none !important;
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

/* Outline of the bar */
.hbar-outline[b-0z9vz37xtj] {
    position: relative;
    display: block;
    width: 100%;
    height: 26px;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15));
    border: 3px solid rgb(183 222 255);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

/* Outline state modifiers */
.hbar-outline-alert[b-0z9vz37xtj] {
    border-color: #ff7e5f;
}

.hbar-outline-empty[b-0z9vz37xtj] {
    border-color: #bfbfbf;
}

/* Fill element (width animated) */
.hbar-fill[b-0z9vz37xtj] {
    height: 100%;
    transition: width 0.6s ease-out;
    border-radius: 9px;
    box-shadow: inset 0 -6px 12px rgba(0,0,0,0.02);
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

/* Normal / alert / empty fills */
.hbar-fill-normal[b-0z9vz37xtj] {
    background: linear-gradient(90deg, #3fc3ff, #40bbf3);
}

.hbar-fill-alert[b-0z9vz37xtj] {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

.hbar-fill-empty[b-0z9vz37xtj] {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
}

/* Centered label overlay: wrap percentage + text and center as a unit */
.hbar-label[b-0z9vz37xtj] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
}

/* Inner wrapper that groups the percentage and the custom text */
.hbar-label-inner[b-0z9vz37xtj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Adjust label color when alert/empty */
.hbar-outline-alert .hbar-label[b-0z9vz37xtj] {

    text-shadow: none;
}

.hbar-outline-empty .hbar-label[b-0z9vz37xtj] {

    text-shadow: none;
}

/* Small responsive tweaks */
@media (max-width: 480px) {
    .hbar-outline[b-0z9vz37xtj] {
        height: 24px;
        border-radius: 10px;
    }

    .hbar-label[b-0z9vz37xtj] {
        font-size: 0.82rem;
        padding: 0 0.4rem;
    }

    .hbar-label-right[b-0z9vz37xtj] {
        max-width: 30ch;
    }
}
/* _content/AppSite/Components/Layout/BasicLayout.razor.rz.scp.css */
.page[b-91yob9cux5] {
    position: relative;
    display: flex;
    flex-direction: row;
}

main[b-91yob9cux5] {
    flex: 1;
}




#blazor-error-ui[b-91yob9cux5] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-91yob9cux5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AppSite/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-y8g36mcc8x] {
    position: relative;
    display: flex;
    flex-direction: row;
}

main[b-y8g36mcc8x] {
    flex: 1;
}




#blazor-error-ui[b-y8g36mcc8x] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-y8g36mcc8x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AppSite/Components/Layout/_NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kayunoaw44] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;

    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-kayunoaw44] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-kayunoaw44] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kayunoaw44] {
    font-size: 1.1rem;
}

.bi[b-kayunoaw44] {
    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-kayunoaw44] {
    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-kayunoaw44] {
    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-kayunoaw44] {
    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-kayunoaw44] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kayunoaw44] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kayunoaw44] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kayunoaw44]  .nav-link {

        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-kayunoaw44]  a.active {

}

.nav-item[b-kayunoaw44]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);

}

.nav-scrollable[b-kayunoaw44] {
    display: none;
    padding:0.5rem;
}

.navbar-toggler:checked ~ .nav-scrollable[b-kayunoaw44] {
    display: block;
}

/* _content/AppSite/Components/TelemetryDashboard/Device.razor.rz.scp.css */
.card[b-tv9dclyg9i] {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 12px;
    background-color: #f9fafc;
    border: 1px solid #e2e8f018;
    box-shadow: 0 .46875rem 2.1875rem rgba(31.5, 53, 108, .03), 0 .9375rem 1.40625rem rgba(31.5, 53, 108, .03), 0 .25rem .53125rem rgba(31.5, 53, 108, .05), 0 .125rem .1875rem rgba(31.5, 53, 108, .03);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.separator[b-tv9dclyg9i] {
    border-bottom: 2px solid rgb(0 0 0 / 11%);
    border-radius: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* _content/AppSite/Components/TelemetryDashboard/Flowmeter/_Flowmeter.razor.rz.scp.css */
.flowmeter[b-8eb2n2oro9] {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 12px;
    background-color: #f9fafc;
    border: 1px solid #e2e8f018;
    box-shadow: 0 .46875rem 2.1875rem rgba(31.5, 53, 108, .03), 0 .9375rem 1.40625rem rgba(31.5, 53, 108, .03), 0 .25rem .53125rem rgba(31.5, 53, 108, .05), 0 .125rem .1875rem rgba(31.5, 53, 108, .03);
    padding: 1rem;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.flowmeter-header[b-8eb2n2oro9] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    border-bottom: 1px solid #2f50a220;
}

.flowmeter:hover[b-8eb2n2oro9] {
    transform: translateY(-3px);
}

.flowmeter-heading[b-8eb2n2oro9] {
    font-weight: bold;
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.flowmeter-rate[b-8eb2n2oro9] {
    font-size: 1.1rem;
    color: #161616;
    font-weight: 500;
}

.flowmeter-timestamp[b-8eb2n2oro9] {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

.flow-bar-container[b-8eb2n2oro9] {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(90deg, #3fc3ff 0%, #a6e3ff 100%);
    overflow: hidden;
    margin-top: 0.5rem;
    border: 2px solid rgb(183 222 255);
}

/* The moving bar using a repeating gradient */
.flow-bar[b-8eb2n2oro9] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #3fc3ff 0%, #a6e3ff 100%);
    transform: translateX(0%);
}

    .flow-bar.no-flow[b-8eb2n2oro9] {
        background: #dbdbdb;
    }

.flow-bar-container:has(.flow-bar.no-flow)[b-8eb2n2oro9] {
    border: 2px solid #bfbfbf;
}
/* Active animation when RateTarget > 0 */
.flow-bar.active[b-8eb2n2oro9] {
    animation: flowPulse-b-8eb2n2oro9 8s linear infinite;
}

/* Continuous sliding */
@keyframes flowPulse-b-8eb2n2oro9 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}
/* Overlay text */
.flow-bar-text[b-8eb2n2oro9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3d4059;
    font-weight: bold;
    pointer-events: none;
    z-index: 1;
}
/* _content/AppSite/Components/TelemetryDashboard/Widgets/_ContainerWidget.razor.rz.scp.css */
/* -------------------------------------------------
   2D Tank – Simple & Clean
   ------------------------------------------------- */
.tank[b-kdc1uiccmx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: system-ui, sans-serif;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #e2e8f018;
    box-shadow: 0 .46875rem 2.1875rem rgba(31.5, 53, 108, .03), 0 .9375rem 1.40625rem rgba(31.5, 53, 108, .03), 0 .25rem .53125rem rgba(31.5, 53, 108, .05), 0 .125rem .1875rem rgba(31.5, 53, 108, .03);
    padding: 1rem;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Tank outline (fixed size) */
.tank-outline[b-kdc1uiccmx] {
    position: relative;
    width: 100%;
    height: 100px;
    border: 3px solid rgb(183 222 255);
    border-radius: 12px;
    background: rgb(255 255 255 / 25%);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 10px;
}

/* Fill bar – grows from bottom */
.tank-fill[b-kdc1uiccmx] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top,
        #3fc3ff,
        #a6e3ff);
    transition: height 0.6s ease-out;
    border-radius: 0 0 9px 9px;
}
.tank-outline:has(.tank-fill-alert)[b-kdc1uiccmx] {
    border: 3px solid #ff7e5f;
}

.tank-fill-alert[b-kdc1uiccmx] {
    background: linear-gradient(to top,
        #ff7e5f,
        #feb47b);
}
.tank-outline:has(.tank-fill-empty)[b-kdc1uiccmx] {
    border: 3px solid #bfbfbf;
}
.tank-outline:has(.tank-fill-empty) .tank-label[b-kdc1uiccmx] {
    color: #bfbfbf;
    text-shadow: none;
}
/* Label inside tank */
.tank-label[b-kdc1uiccmx] {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    color: #3d4059;
    font-weight: bold;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 2;
}
.tank-outline:has(.tank-fill-alert) .tank-label[b-kdc1uiccmx] {
    color: #ff7e5f;
    text-shadow: none;
}
/* Tank name below */
.Tank-heading[b-kdc1uiccmx] {
    font-weight: bold;
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.5rem;
}
.Tank-header[b-kdc1uiccmx] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    border-bottom:1px solid #2f50a220;
}
/* _content/AppSite/Components/TelemetryDashboard/Widgets/_FlowmeterWidget.razor.rz.scp.css */
.flowmeter[b-881rz9gf9p] {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 12px;
    background-color: #f9fafc;
    border: 1px solid #e2e8f018;
    box-shadow: 0 .46875rem 2.1875rem rgba(31.5, 53, 108, .03), 0 .9375rem 1.40625rem rgba(31.5, 53, 108, .03), 0 .25rem .53125rem rgba(31.5, 53, 108, .05), 0 .125rem .1875rem rgba(31.5, 53, 108, .03);
    padding: 1rem;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.flowmeter-header[b-881rz9gf9p] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    border-bottom: 1px solid #2f50a220;
}

.flowmeter:hover[b-881rz9gf9p] {
    transform: translateY(-3px);
}

.flowmeter-heading[b-881rz9gf9p] {
    font-weight: bold;
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.flowmeter-rate[b-881rz9gf9p] {
    font-size: 1.1rem;
    color: #161616;
    font-weight: 500;
}

.flowmeter-timestamp[b-881rz9gf9p] {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

.flow-bar-container[b-881rz9gf9p] {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(90deg, #3fc3ff 0%, #a6e3ff 100%);
    overflow: hidden;
    margin-top: 0.5rem;
    border: 2px solid rgb(183 222 255);
    margin-top: auto;
    margin-bottom: auto;
}

/* The moving bar using a repeating gradient */
.flow-bar[b-881rz9gf9p] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #3fc3ff 0%, #a6e3ff 100%);
    transform: translateX(0%);
}

    .flow-bar.no-flow[b-881rz9gf9p] {
        background: #dbdbdb;
    }

.flow-bar-container:has(.flow-bar.no-flow)[b-881rz9gf9p] {
    border: 2px solid #bfbfbf;
}
/* Active animation when RateTarget > 0 */
.flow-bar.active[b-881rz9gf9p] {
    animation: flowPulse-b-881rz9gf9p 8s linear infinite;
}

/* Continuous sliding */
@keyframes flowPulse-b-881rz9gf9p {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}
/* Overlay text */
.flow-bar-text[b-881rz9gf9p] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3d4059;
    font-weight: bold;
    pointer-events: none;
    z-index: 1;
}
/* _content/AppSite/Components/TelemetryDashboard/Widget_Section.razor.rz.scp.css */

.dash-widget-section[b-tnfzt2yx4z] {
    grid-column: -1/1;
}

.dash-widget-section-title[b-tnfzt2yx4z] {
    display:block;
    text-align:center;
    font-weight:bold;
    font-size:1.2rem;
}

.dash-widget-section-subtitle[b-tnfzt2yx4z] {
    display: block;
    text-align: center;
    opacity:0.6;


}
/* _content/AppSite/Components/TelemetryDashboard/Widget_TotalizerDevices_Standard.razor.rz.scp.css */

.widget-totalizerdevices-standard[b-zs23jm0zxp] 
{
    background-color: #384357;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 12px;
    border: 1px solid #e2e8f018;
    box-shadow: 0 .46875rem 2.1875rem rgba(31.5, 53, 108, .03), 0 .9375rem 1.40625rem rgba(31.5, 53, 108, .03), 0 .25rem .53125rem rgba(31.5, 53, 108, .05), 0 .125rem .1875rem rgba(31.5, 53, 108, .03);
    padding: 15px;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    grid-column: -1 / 1;
    border-radius:0.5rem;
}

    .widget-totalizerdevices-standard table td[b-zs23jm0zxp] {
        vertical-align: middle;
        width: 0px;

    }
    .widget-totalizerdevices-standard table th[b-zs23jm0zxp] {
        vertical-align: middle;
        width:0px;
    
    }

    .widget-totalizerdevices-standard table .col-stretch[b-zs23jm0zxp]{
        width:500px;
    }


tfoot[b-zs23jm0zxp] {
    border-top-style: double;
  
}
tfoot  td[b-zs23jm0zxp]{
    
    font-weight:bold;
}

