html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-image: url('../images/LogoHotrest.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 150px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

/* Override max-height specifically for InventarPos ListView */
.rbs-tab-grid-fullheight.nested-content > .grid-content.grid-virtual-scrolling-mode dxbl-grid,
.rbs-tab-grid-fullheight .nested-content > .grid-content.grid-virtual-scrolling-mode dxbl-grid {
    max-height: calc(100vh - 350px) !important;
    height: 100%;
}


.rbs-zeilentotal input {
    font-weight: bold !important;
}

.rbs-zeilentotal label {
    font-weight: bold !important;
}

/* Das bestehende CSS erweitern */
.environment-indicator {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.15);
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px dashed red;
    /* HIER SCHALTEN WIR DAS BLINKEN FÜR DAS GANZE BANNER EIN: */
    animation: blinker 1.5s linear infinite;
}

.environment-text {
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    animation: blink-ace-animate 1.5s infinite;
}