﻿
/*  
    *--------------------------------*
    Overrides MudBlazor default styles 
    *--------------------------------*
*/

.loading-progress-text {
    text-align: center;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "");
    }

/* Active link text is black instead of "primary" colour */
.mud-navmenu.mud-navmenu-default .mud-nav-link.active:not(.mud-nav-link-disabled) {
    color: var(--mud-palette-drawer-text);
}

.card-list {
    overflow-x: hidden;
    overflow-y: auto;
}

.divider-vertical {
    max-height: 25px;
}

.container {
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

.detail {
    background: var(--mud-palette-background-gray);
    height: 100%;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

em {
    font-style: normal;
    font-weight: 500;
}

.disable-scroll-x {
    overflow-x: hidden;
}

.disable-scroll-y {
    overflow-y: hidden;
}

.enable-scroll-x {
    overflow-x: auto;
}

.enable-scroll-y {
    overflow-y: auto;
}

.list {
    background: var(--mud-palette-background-gray);
    /*height: 100%;*/
    /*left: 0;*/
    /*position: absolute;*/
    /*top: 0;*/
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.statusbar {
    max-height: 28px;
    padding-top: -1px;
}

.text-trimmed {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-wrap {
    overflow-wrap: break-word;
}

.toolbar {
    background: var(--mud-palette-table-striped);
}

