html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #14161a;
    font-family: Consolas, "Courier New", monospace;
    color: #f2f2f2;
}

#canvasHolder {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #14161a;
}

#theCanvas {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}

#loading {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14161a;
    z-index: 10;
}

.loading-box {
    text-align: center;
    border: 2px solid #3a3f47;
    box-shadow: inset 0 0 0 1px #5a6170;
    padding: 28px 40px;
    max-width: 90vw;
}

.loading-presents { color: #b8bcc4; font-size: 14px; letter-spacing: 2px; }
.loading-title { color: #F28C18; font-size: 32px; font-weight: bold; letter-spacing: 3px; margin: 6px 0; }
.loading-tag { color: #f2f2f2; font-size: 14px; margin-bottom: 18px; }
.loading-status { color: #FFD06A; font-size: 15px; margin-bottom: 10px; }
.loading-hint { color: #7d8390; font-size: 12px; }

#blazor-error-ui {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: #D97706;
    color: #14161a;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

#blazor-error-ui a { color: #14161a; margin-left: 1rem; }

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
