h1 {
    padding: 0px 0px 10px 5px;
}

body {
    overflow-y: scroll;
}

.text-center {
    text-align: center;
}

.dark-mode{
}

.light-mode {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /*background: linear-gradient(135deg, #43d8c9, #86b7ec, #bd8ee6);*/
    background: linear-gradient(135deg, #FFA500, #86b7ec, #bd8ee6);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow-y: scroll;
}


a {
    color: var(--mud-palette-primary);
}

.blur {
    filter: blur(8px);
}

.mud-toolbar-gutters {
    padding-left: 16px !important;
    padding-right: 2px !important;
}

.mud-icon-button {
    padding: 4px;
}

@media (max-width: 600px) {
    .mud-xs-table .mud-table-cell {
        padding: 5px !important;
    }

    .title {
        font-size: 1.2rem;
    }
}

.error-blazor {
    text-align: center;
    margin-bottom: 4px;
}

.text-right {
    text-align: right;
}

.mud-breadcrumb-item a {
    color: dimgrey !important;
}

.mud-input-control {
    padding-bottom:8px;
}

input {
    text-align: right;
}

.mud-select {
    text-align: right;
}

.mud-paper-outlined {
    min-height: 300px;
}

.fab-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.disable-area {
    pointer-events: none;
    opacity: 0.8;
}

.dialog {
    opacity: 0.4;
    background-color: grey;
}

.font-space-mono {
    font-family: Courier New, Courier, monospace;
}

.highlight-column-th {
    /*background-color: rgba(0, 123, 255, 0.1);*/ /* Heller Blauton */
    font-weight: bold;
    /*    border-left: 1px solid var(--mud-palette-primary);
    border-top: 1px solid var(--mud-palette-primary);
    border-bottom: 1px solid var(--mud-palette-primary);*/
    text-align: center;
}


.highlight-column {
    /*background-color: var(--mud-palette-Green);*/
    /*background-color: color-mix(in srgb, var(--mud-palette-success), white 50%);*/
    /*color: var(--mud-palette-success);*/
    /*font-weight: bold;*/
    /*border-left: 1px solid var(--mud-palette-primary);*/
}


.canvas-neuron {
    position: fixed;
    top: 75px;
    left: 20px;
    width: 100%;
    height: 93%;
    /*z-index: 2000;*/
    /*background-color: rgba(255, 0, 0, 0.3);*/ /* nur temporär zum Testen */
}


/*#terminal, .terminal-headline, .terminal-message {
    z-index: 1000;*/ /* liegt unter canvas */
/*}*/

.terminal-headline {
    text-align: right;
    /*color: var(--mud-palette-primary);*/
    position: fixed;
    top: 80px;
    right: 20px;
    font-family: Space Mono;
    font-size: .8em
}

#terminal {
    position: fixed;
    right: 10px;
    top: 90px;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    font-family: Space Mono;
    padding: 12px;
}

.terminal-message {
    text-align: right;
    margin: 0;
    /*color: var(--mud-palette-primary);*/
    font-family: Space Mono;
    font-size: .8em
}

table{
    table-layout: fixed;
}


.mud-card-header {
    padding: 16px 16px 4px 16px !important;
}

.mud-card-content {
    padding: 8px 16px 8px 16px !important;
}


/*Scrollbar*/

/*.custom-scrollbar::-webkit-scrollbar {
    height: 0px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--mud-palette-background);*/ /* dunkler Hintergrund */
/*}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--mud-palette-background);*/ /* dunkler Daumen */
    /*border-radius: 4px;
}*/

/* Firefox */
/*.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--mud-palette-background) #2c2c2c;
}*/


.custom-scrollbar::-webkit-scrollbar {
    height: 0px;
    transition: height 0.3s;
}

.custom-scrollbar:hover::-webkit-scrollbar {
    height: 6px;
}


/* Kompakte MudTable-Zeilen */
.compact-table td,
.compact-table th {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    padding-left: 6px;
    padding-right: 6px;
    line-height: 1.1;
}

.compact-table th {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Sort-Pfeile immer sichtbar machen */
.mud-table-sort-label .mud-icon-root {
    visibility: visible !important;
    opacity: 0.4;
}

