﻿
/*Fix MudBlazor Problem, dass am Ende der table der border-bottom fehlt*/
.mud-simple-table.mud-table-bordered .mud-table-container table tbody tr:last-child {
    border-bottom: 1px solid var(--mud-palette-table-lines);
}
.mud-simple-table table tbody tr:last-child td {
    border-bottom: 1px solid var(--mud-palette-table-lines);
}

/*ValidationSummary*/
.validation-errors {
    color: var(--mud-palette-error) !important;
}


#blazor-error-ui {
    color: rgb(242, 33, 18);
    background-color: #f8d7da;
}

.mud-table-head .mud-table-cell {
    font-weight: 600 !important;
}

.mud-table-container > table th {
    font-weight: 600 !important;
}


.mud-input-control.mud-input-required > .mud-input-control-input-container > .mud-input-label::after {
    content: "*";
    color: red;
}

.mud-picker.mud-input-required > .mud-input-control > .mud-input-control-input-container > .mud-input-label::after {
    content: "*";
    color: red;
}


.dialogContentContainer {
    max-height: 100%;
    overflow-y: scroll;
}

@media print {
    html, body {
        font-family: "times new roman", times, serif;
        font-size: 12pt;
        line-height: 1;
    }


    .no-print, .no-print * {
        display: none !important;
    }
}