@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

.mud-table-row > .mud-table-cell:has(.mud-grid-child-content) {
    padding: 0;
}

.blazor-loader-container {
    height: 100vh;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #27272fff;
    color: white;
}

.blazor-loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #776be7ff;
    border-radius: 50%;
    width: 15em;
    height: 15em;
    animation: spin 1s linear infinite;
    align-self: center;
}

.blazor-loader-content {
    font-family: 'Roboto Mono', monospace;
    font-size: 2em;
    margin-top: 1em;
    align-self: center;
}

.blazor-loader-content:after{
    content: "Loading " var(--blazor-load-percentage-text);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

.mud-table-container
{
    overflow-y: visible;
    overflow-x: visible;
}

.mud-table-sticky-header .mud-table-container {
    overflow-y: visible;
    overflow-x: visible;
}

.mud-simple-table.mud-table-sticky-header .mud-table-container {
    overflow-y: visible;
    overflow-x: visible;
}

.mud-simple-table.mud-table-sticky-header * table thead * th{
    top: calc(var(--mud-appbar-height) - 1px);
}

.mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell{
    top: calc(var(--mud-appbar-height) - 1px);
}