﻿.appia-error-snackbar {
    position: relative;
    cursor: pointer;
    min-width: 420px;
    max-width: min(760px, 88vw);
    color: white;
    padding: 6px 34px 6px 0;
}

.appia-error-snackbar__close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
}

    .appia-error-snackbar__close:hover {
        background: rgba(255, 255, 255, 0.18);
        opacity: 1;
    }

.appia-error-snackbar__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
}

.appia-error-snackbar__message {
    font-size: 0.92rem;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.appia-error-snackbar__hint {
    margin-top: 8px;
    font-size: 0.80rem;
    opacity: 0.9;
}

.exception-dialog-pre {
    max-height: 70vh;
    overflow: auto;
    background: #1e1e1e;
    color: #f5f5f5;
    border-radius: 8px;
}

    .exception-dialog-pre pre {
        margin: 0;
        white-space: pre-wrap;
        word-break: break-word;
        font-family: Consolas, monospace;
        font-size: 0.85rem;
        line-height: 1.3;
    }