body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background: #32333d;
}

#app {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.loading-progress {
    width: 80px;
    height: 80px;
    transform-origin: center;
}

    .loading-progress circle {
        fill: none;
        stroke: rgba(119, 107, 231, 1);
        stroke-width: 6;
        stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
        stroke-dashoffset: 0;
        transition: stroke-dasharray 0.3s ease-in-out;
    }

.loading-progress-text {
    position: absolute;
    bottom: 10%;
    color: rgba(119, 107, 231, 1);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.tile-selector {
    display: flex;
    flex-direction: column;
}
.tile-selector-chip
{
    display: flex;
}
.tile-selector-chip .mud-chip-content {
    padding-inline: 8px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.tile {
    width: 16px;
    height: 16px;
    background-image: url('/tiles.png');
    display: inline-block;
    background-size: auto;
    transform-origin: top left;
    transform: scale(var(--tile-zoom, 1));
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.mermaid > svg {
    max-width: 100% !important;
}