:root {
    --mud-typography-subtitle1-size: 16px !important;
}

main {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding: 0 32px;
}

    main.tab-bars-1 {
        top: 112px;
    }

    main.tab-bars-2 {
        top: 160px;
    }

    main.tab-bars-3 {
        top: 200px;
    }

.center-800 {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.center-1200 {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.dark-text {
    color: var(--mud-palette-black);
}

.light-text {
    color: var(--mud-palette-white);
}

.action-bar {
    display: flex;
    height: 48px;
    padding: 0 32px;
    gap: 16px;
    align-items: center;
}

.mud-dialog {
    border-radius: 24px;
    box-shadow: none;
}

.mud-overlay .mud-overlay-scrim.mud-overlay-dark {
    background-color: rgba(0, 0, 0, .4);
}

.fab {
    position: fixed;
    right: 32px;
    bottom: 32px;
}
.list-container {
    user-select: none;
    border-radius: 24px;
    margin: 0;
    display: flex;
    flex-flow: column;
    padding: 0 16px;
    gap: 8px;
    cursor: pointer;
    background-color: var(--mud-palette-surface);
}

    .list-container.view-only {
        border-radius: 4px;
        background-color: var(--mud-palette-surface);
    }

        .list-container.view-only:hover {
            background-color: var(--mud-palette-action-default-hover);
        }

    .list-container .row {
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.no-text-wrap {
    text-wrap: nowrap;
}

.mud-fab {
    border-radius: 16px;
}

.mud-button {
    border-radius: 24px;
}

.mud-button-filled{
    box-shadow: none;
}

.mud-button-filled:hover {
    box-shadow: none;
}

.mud-input-label-outlined {
    background-color: var(--mud-palette-background);
}