/* _content/Web/Components/Common/ErrorModal.razor.rz.scp.css */
.modal-header[b-mvbheole53] {
    background-color: var(--ic-color);
}

.btn-primary[b-mvbheole53] {
    background-color: black !important;
}
/* _content/Web/Components/Common/MessageDisplay.razor.rz.scp.css */
.btn-primary[b-5l1g708mxa] {
    background-color: var(--ic-color) !important;
    border-color: var(--ic-color) !important;
}

.min-vh-50[b-5l1g708mxa] {
    min-height: 50vh;
}
/* _content/Web/Components/Groups/BatteryStatusCard.razor.rz.scp.css */
/* _content/Web/Components/Groups/GenericGroup.razor.rz.scp.css */
tr:hover .measurement-name[b-tosin6xy66] {
    color: var(--ic-color) !important;
}

tr:hover .measurement-value[b-tosin6xy66] {
    color: var(--ic-color) !important;
}

.measurement-value[b-tosin6xy66] {
    font-variant-ligatures: unset;
}
/* _content/Web/Components/Groups/PcsStatusCard.razor.rz.scp.css */
body[b-icey0x20ms] {
}
/* _content/Web/Components/Groups/PvStatusCard.razor.rz.scp.css */
body[b-5m2ptsmzqi] {
}
/* _content/Web/Components/Layout/Header.razor.rz.scp.css */
.header-container[b-4s3bpf6szq] {
    position: relative;
    width: 100%;
    height: 180px;
    background-image: url('/images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    transition: height 0.3s ease-in-out;
    transform: translateZ(0);
    will-change: height;
    backface-visibility: hidden;
}

.header-container.minimized[b-4s3bpf6szq] {
    height: 80px;
}

    .header-container .overlay[b-4s3bpf6szq] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(6px);
        z-index: 1;
        transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    }

    .header-container.minimized .overlay[b-4s3bpf6szq] {
        backdrop-filter: blur(12px);
        background-color: rgba(0, 0, 0, 0.5);
    }

    .header-container .content[b-4s3bpf6szq] {
        position: relative;
        z-index: 2;
        color: white;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
        margin: 0 auto;
        height: 100%;
        padding: 0 1.5rem;
    }

.product-image-container[b-4s3bpf6szq] {
    flex-shrink: 0;
}

.product-image[b-4s3bpf6szq] {
    width: 128px;
    height: auto;
    object-fit: contain;
    transition: width 0.3s ease-in-out;
    display: block;
}

.minimized .product-image[b-4s3bpf6szq] {
    width: 64px;
}

.text-container[b-4s3bpf6szq] {
    text-align: left;
    flex: 1;
    min-width: 0; /* Required for text truncation to work */
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.device-title[b-4s3bpf6szq] {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
    white-space: normal; /* Allow wrapping */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.minimized .device-title[b-4s3bpf6szq] {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.device-info[b-4s3bpf6szq] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease-in-out;
    line-height: 1.2;
}

.minimized .device-info[b-4s3bpf6szq] {
    font-size: 0.8rem;
}

.btn-outline-primary[b-4s3bpf6szq] {
    color: white;
    border-color: white;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}


.minimized .btn-outline-primary[b-4s3bpf6szq] {
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
}

.minimized .refresh-container[b-4s3bpf6szq] {
    display: flex;
    align-items: center;
}

    .btn-outline-primary:hover[b-4s3bpf6szq] {
        background-color: rgba(255, 255, 255, 0.1);
    }


    .btn-outline-primary:disabled[b-4s3bpf6szq] {
        opacity: 0.6;
    }

.spin[b-4s3bpf6szq] {
    animation: spin-b-4s3bpf6szq 0.6s linear infinite;
}

@keyframes spin-b-4s3bpf6szq {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Breakpoints */
@media (max-width: 575px) {
    .header-container[b-4s3bpf6szq] {
        height: 180px;
    }

        .header-container.minimized[b-4s3bpf6szq] {
            height: 70px;
        }

    .product-image[b-4s3bpf6szq] {
        width: 100px;
    }

    .minimized .product-image[b-4s3bpf6szq] {
        width: 50px;
    }

    .device-title[b-4s3bpf6szq] {
        font-size: 1.1rem;
    }

    .device-info[b-4s3bpf6szq] {
        font-size: 0.8rem;
    }

    .minimized .device-info[b-4s3bpf6szq] {
        display: block; /* Forces each line to be on its own row */
        white-space: normal; /* Allows text to wrap */
    }

    .minimized .device-info[b-4s3bpf6szq]::after {
        content: ""; /* Creates a line break */
        display: block;
        height: 2px; /* Small gap between lines */
    }

    .minimized .device-title[b-4s3bpf6szq] {
        font-size: 1rem;
    }

    .minimized .product-image-container[b-4s3bpf6szq] {
        display: flex;
        align-items: center;
    }

    .minimized .refresh-text[b-4s3bpf6szq] {
        display: none;
    }

    .minimized .btn-outline-primary[b-4s3bpf6szq] {
        padding: 0.35rem;
    }

    .minimized .material-icons[b-4s3bpf6szq] {
        margin: 0;
    }

    .btn-outline-primary[b-4s3bpf6szq] {
        padding: 0.35rem 0.75rem; /* Reduced padding */
        font-size: 0.85rem; /* Smaller font size */
    }

    .material-icons[b-4s3bpf6szq] {
        font-size: 1.25rem; /* Smaller icon size */
    }

    .refresh-text[b-4s3bpf6szq] {
        font-size: 0.85rem; /* Smaller text size */
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .header-container[b-4s3bpf6szq] {
        height: 170px;
    }

        .header-container.minimized[b-4s3bpf6szq] {
            height: 75px;
        }

    .product-image[b-4s3bpf6szq] {
        width: 120px;
    }

    .minimized .product-image[b-4s3bpf6szq] {
        width: 60px;
    }

    .device-title[b-4s3bpf6szq] {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-container[b-4s3bpf6szq] {
        height: 180px;
    }

        .header-container.minimized[b-4s3bpf6szq] {
            height: 80px;
        }

    .product-image[b-4s3bpf6szq] {
        width: 128px;
    }

    .minimized .product-image[b-4s3bpf6szq] {
        width: 64px;
    }

    .device-title[b-4s3bpf6szq] {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .header-container[b-4s3bpf6szq] {
        height: 180px;
    }

        .header-container.minimized[b-4s3bpf6szq] {
            height: 80px;
        }

    .product-image[b-4s3bpf6szq] {
        width: 128px;
    }

    .minimized .product-image[b-4s3bpf6szq] {
        width: 64px;
    }

    .device-title[b-4s3bpf6szq] {
        font-size: 2rem;
    }
}
/* _content/Web/Components/Layout/LanguageSelector.razor.rz.scp.css */
select[b-30v8jfhclk] {
    padding-left:12px;
    padding-right:8px;
    padding-top:8px;
    padding-bottom:8px;
    border-radius:8px;
    border:1px solid #d6d5d5;
    cursor:pointer;
}

select:hover[b-30v8jfhclk] {
    border: 2px solid var(--ic-color);
}
/* _content/Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-s2i2o7u8yo] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-s2i2o7u8yo] {
    flex: 1;
}

.sidebar[b-s2i2o7u8yo] {
    background-color: var(--ic-bg);
}

.top-row[b-s2i2o7u8yo] {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 0;
    transform: translateZ(0);
    will-change: transform;
    overflow-x: hidden;
}

@media (min-width: 641px) {
    .page[b-s2i2o7u8yo] {
        flex-direction: row;
    }

    .sidebar[b-s2i2o7u8yo] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row article[b-s2i2o7u8yo] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-s2i2o7u8yo] {
    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-s2i2o7u8yo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ut59ukakmh] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.9);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1.0%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.05);
}

.navbar-toggler:checked[b-ut59ukakmh] {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus[b-ut59ukakmh] {
    box-shadow: 0 0 0 .25rem var(--ic-color) !important;
}

.top-row[b-ut59ukakmh] {
    height: 3.5rem;
    /*background-color: rgba(0,0,0,0.4);*/
}

.nav-content[b-ut59ukakmh] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-footer[b-ut59ukakmh] {
    margin-top: auto;
    padding-bottom: 1rem;
}

.logout-button[b-ut59ukakmh] {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.8);
}

    .logout-button:hover[b-ut59ukakmh] {
        color: var(--ic-color);
        background-color: rgba(255,255,255,0.1);
    }


.nav-item[b-ut59ukakmh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ut59ukakmh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ut59ukakmh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ut59ukakmh]  .nav-link {
        color: rgba(0, 0, 0, 0.8);
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-ut59ukakmh]  a.active {
        /*background-color: rgba(255,255,255,0.37);*/
        color: var(--ic-color);
        font-weight: bold;
    }

    .nav-item[b-ut59ukakmh]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: var(--ic-color);
    }

.nav-scrollable[b-ut59ukakmh] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ut59ukakmh] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ut59ukakmh] {
        display: none;
    }

    .nav-scrollable[b-ut59ukakmh] {
        /* Never collapse the sidebar for wide screens */
        display: block;

    }

    .nav-content[b-ut59ukakmh] {
        overflow-y: auto;
        min-height: calc(100vh - 3.5rem);
    }
}
/* _content/Web/Components/Pages/GroupPage.razor.rz.scp.css */
/* _content/Web/Components/Pages/Login.razor.rz.scp.css */
.btn-primary[b-i16ydbee8e] {
    background-color: var(--ic-color) !important;
    border-color: var(--ic-color) !important;
}
/* _content/Web/Components/Pages/Overview.razor.rz.scp.css */
.card:hover .card-body[b-vfl6tmhcun] {
    background-color: var(--ic-bg);
}

.card:hover[b-vfl6tmhcun] {
    box-shadow: 2px 2px 10px 0.5px var(--ic-color) !important;
}

.card[b-vfl6tmhcun] {
    transition: box-shadow 0.3s ease;
}

.card-body[b-vfl6tmhcun] {
    transition: background-color 0.3s ease;
}

.card-title > a[b-vfl6tmhcun] {
    color: black;
    font-weight: bold;
}

.card-disabled:hover[b-vfl6tmhcun] {
    box-shadow: none !important;
}
