html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    background-image: url(../images/Logo.png);
    width: 180px;
    height: 37px;
    /* ... */
    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;
}

/* MultiLine */
.tabs-multiline .dxbl-tabs {
    flex-wrap: wrap;
}

/* Yatay/Dikey Header */
.tabs-vertical .dxbl-tabs {
    flex-direction: column;
}

.tabs-horizontal .dxbl-tabs {
    flex-direction: row;
}

/* Text Konumlarý */
.tabs-text-left .dxbl-tab-text {
    text-align: left;
    justify-content: flex-start;
}

.tabs-text-center .dxbl-tab-text {
    text-align: center;
    justify-content: center;
}

.tabs-text-right .dxbl-tab-text {
    text-align: right;
    justify-content: flex-end;
}
 
