html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--color-surface-primary);
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

button,
input,
textarea,
select {
    font: inherit;
}

.app-shell {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.app-shell__body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
}

.app-shell__main {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.app-shell__content {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    html.is-mobile-sidebar-open,
    body.is-mobile-sidebar-open {
        height: 100%;
        overflow: hidden;
    }

    .app-shell {
        padding-top: 48px;
    }

    .app-shell__options-page-region {
        min-height: var(--options-page-mobile-height, 0px);
    }
}

@media (min-width: 769px) {
    html.is-table-scroll-locked,
    body.is-table-scroll-locked {
        height: 100%;
        overflow: hidden;
    }

    .app-shell.is-table-scroll-locked {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
    }

    .app-shell__body.is-table-scroll-locked,
    .app-shell__main.is-table-scroll-locked,
    .app-shell__content.is-table-scroll-locked {
        min-height: 0;
        overflow: hidden;
    }
}
