/* Copyright (c) 2025-2026 Evil Works. All rights reserved. */
/* SPDX-License-Identifier: LicenseRef-EvilWorks-Proprietary */
* {
    background: #eee;
    font-family: Lato, sans-serif;
}

html, body {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#back {
    width: 100%;
    height: 100%;
    display: block;
}

.startup-error-overlay {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 40;
    width: min(720px, calc(100vw - 32px));
    transform: translateX(-50%);
    padding: 16px 18px;
    border: 1px solid rgba(110, 24, 16, 0.22);
    border-radius: 10px;
    background: rgba(255, 248, 246, 0.97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    color: #3b1610;
}

.startup-error-title {
    margin: 0 0 8px;
    background: transparent;
    color: #7a2419;
    font: 700 16px/1.2 Lato, sans-serif;
}

.startup-error-body {
    margin: 0 0 8px;
    background: transparent;
    color: #3b1610;
    font: 14px/1.45 Lato, sans-serif;
}

.startup-error-detail {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    background: transparent;
    color: #6a2f25;
    font: 12px/1.35 monospace;
}
