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

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    padding-top: 0;
    font-family: var(--font-family-base);
    color: var(--color-text-base);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#dash-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page-content-dash {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

#react-entry-point {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}