html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #f6f8f7;
    color: #14201d;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#webApp {
    width: 100%;
    height: 100dvh;
    min-height: 100%;
    overflow: hidden;
    background: #f7faf9;
}

.web-shell-loader {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 6px;
    text-align: center;
}

.web-shell-loader strong {
    color: #0f4c81;
    font-size: 28px;
    line-height: 1.1;
}

.web-shell-loader span {
    color: #64748b;
    font-size: 14px;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    #webApp {
        width: 100%;
        border: 0;
    }
}
