html, body {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #041527;
    color: #F2F4F6;
}

#app {
    min-height: 100vh;
    background-color: #041527;
}

h1:focus {
    outline: none;
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
    font-family: 'Roboto Mono', 'Inter', monospace;
}

.mud-table-head .mud-table-row {
    background-color: rgba(232, 163, 61, 0.10);
}

.mud-table-head .mud-table-cell {
    color: #F2F4F6 !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(232, 163, 61, 0.45) !important;
}

#blazor-error-ui {
    background: #5a1f1f;
    color: #F2F4F6;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: #5a1f1f;
    padding: 1rem;
    color: #F2F4F6;
    border-radius: 8px;
}

    .blazor-error-boundary::after {
        content: "Ocorreu um erro."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #122848;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #E8A33D;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    color: #F2F4F6;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Carregando");
    }
