﻿/* shell app error */
:root {
    color-scheme: light;
}

.shell-error-container {
    position: absolute;
    top: 0;
    left: 0;
    font-family: Roboto, sans-serif;
    display: grid;
    justify-content: center;
    align-content: center;
    height: 100vh;
    width: 100vw;
    --main-color: #001965;
}

.shell-error-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.shell-error-dialog {
    border-radius: 5px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 1em;
    background-color: white;
}

.shell-error-icon {
    background: var(--main-color);
    border-radius: 50%;
    color: white;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
}
