html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.contains-filter {
    box-shadow: 0px 0px 8px 0px var(--info, var(--bs-info));
}

.main-content .grid-content .dxbl-grid {
    height: calc(100vh - 130px);
}

.main-content.list-view-filters .grid-content .dxbl-grid {
    height: calc(100vh - 130px - 46px);
}

.detail-view-content .grid-content .dxbl-grid {
    height: unset !important;
}

.column-item-link.highlited-link {
    background-color: #ff6ef5;
    font-weight: bold;
    font-size: larger;
    color: black;
}

.column-item-link {
    display: block;
    margin: 0 0 8px 0;
    text-decoration: none;
}

    .column-item-link:last-of-type {
        margin-bottom: 0;
    }

    .column-item-link.no-bottom-margin:not(:last-of-type) {
        margin-bottom: 0;
    }
