﻿.experimental-tag {
    background-color: darkorange;
}

thead .mud-table-cell, .mud-table-cell:before {
    color: gray !important;
}

.disabled-item {
    color: dimgray !important;
}

.mud-grid-item {
    width: 100%;
}

.mud-input-label {
    color: gray !important; /* Change this to your desired color */
}

/* Material designs */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
    cursor: pointer;
    user-select: none;
}

@media (prefers-color-scheme: dark) {
    html {
        background-color: black;
        color: white;
    }

    .experimental-tag {
        color: black;
    }

    #blazor-error-ui {
        color: black;
        background-color: orange;
    }

        #blazor-error-ui a {
            color: blue;
        }
}

