@import "lotx-components/lotx-components.css";
@import "theme.css";
@import "footer.css";
@import "ui-button.css";
@import "dialog.css";
@import "page.css";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a.extern-link {
    font-size: 14px;
    font-family: SF Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #2997ff;
    line-height: 1.42859;
    font-weight: 400;

    span:after {
        content: "\2197";
        padding-left: .3em;
        display: inline-block;
    }
}

a.link-button {
    color: #2997ff;
}

div.link-button {
    font-size: 14px;
    font-family: SF Pro Text,SF Pro Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #2997ff;
    line-height: 18px;
    font-weight: 400;
    cursor: pointer;
    display: inline-block;

    &.extern-link {
        span:after {
            content: "\2197";
            padding-left: .3em;
            display: inline-block;
        }
    }
}

input {
    all: unset;
    appearance: none;
    box-sizing: border-box;
}

html, body {
    background-color: var(--init-background-color);
    min-height: 100%;
    display: flex;
    flex: 1;
    color-scheme: light dark;
}

body {
    font-family: SF Pro Text,Helvetica Neue,sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--theme-color-labelPrimary);
}

#app {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.page {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.hidden {
    display: none;
}

.application-content {
    margin-left: auto;
    margin-right: auto;
}

#dotnet-compile-error {
    display: none;
}