app {
    display: block;
    position: relative;
    width: 100vw;
    height: 100vh;
}

app > stack {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

app > overlay {
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

button {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

column {
    display: flex;
    flex-direction: column;
    position: relative;
}

form {
    display: flex;
    flex-direction: column;
}

grid {
    display: grid;
}

img {
    display: block;
    max-width: 100%;
}

label {
    display: flex;
    flex-direction: column;
}

layout {
    display: flex;
    position: relative;
}

loading {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1/1;

    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: 'liga';
    -moz-osx-font-smoothing: grayscale;
}

loading:not([is-active="true"]) {
    display: none !important;
}

loading[is-active="true"]::after {
    display: block;
    content: 'autorenew';
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

page {
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: auto;
}

* {
    box-sizing: border-box;
    background: initial;
    border: initial;
    outline: initial;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: initial;
    padding: initial;
}

html {
    background-color: #f7f7f7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}

body {
    overflow: hidden;
}

.material-icons {
    font-size: inherit;
    line-height: inherit;
}

row {
    display: flex;
    flex-direction: row;
    position: relative;
}

table {
    table-layout: fixed;
    border-spacing: 0px;
    min-width: 100%;
}

table tr td {
    vertical-align: top;
}

table thead tr th {
    background-color: white;
}

table tfoot tr th {
    background-color: white;
}

table tbody tr:nth-child(even) td {
    background-color: rgba(0, 0, 0, 0.1);
}

table tbody tr:hover td {
    background-color: rgba(0, 0, 0, 0.2);
}

table tbody tr[selected="true"] td {
    background-color: rgba(0, 0, 255, 0.1);
}

table tbody tr[selected="true"]:nth-child(even) td {
    background-color: rgba(0, 0, 255, 0.2);
}

textarea {
    resize: vertical;
}