html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    background-image: url(../images/TruckLogo.svg);
    width: 220px;
    height: 40px;
    /* ... */
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

/* Google Places dropdown must be above DevExpress modal overlays */
.pac-container {
    z-index: 999999 !important;
}


.loading-image {
    width: 87px !important;
    height: 63px !important;
}


.xaf-tooltip {
    cursor: help;
}

/* The global tooltip (not inside the grid => never clipped) */
.xaf-tooltip-host {
    position: fixed;
    z-index: 2147483647;
    display: none;
    max-width: 380px;
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    background: #fff;
    color: #111;
    font-size: 13px;
    line-height: 1.35;
    pointer-events: none; /* so it doesn't steal hover */
}

.xaf-tooltip-host .xaf-tooltip-title {
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.xaf-tooltip-host .xaf-tooltip-body {
    white-space: pre-wrap; /* supports \n */
    opacity: .95;
}


/* Hide filter button by default */
.dxbl-grid-header .dxbl-grid-filter-menu-funnel-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
}

/* Show filter button when hovering the column header */
.dxbl-grid-header:hover .dxbl-grid-filter-menu-funnel-btn {
    opacity: 1;
    pointer-events: auto;
}


.alt-item {
    --dxbl-grid-row-bg: var(--dxds-color-surface-neutral-subdued-rest);
}