*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f0;
}

h1:focus {
    outline: none;
}

/* ── Editor Layout ── */

.editor-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.editor-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Toolbar ── */

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e2e2e2;
    flex-wrap: wrap;
}

.toolbar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.25rem;
}

.toolbar-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.toolbar-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: #f5f3ff;
}

.toolbar-btn-primary {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

.toolbar-btn-primary:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
}

.toolbar-btn-icon {
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1;
    width: 1.125rem;
    text-align: center;
}

.toolbar-export-group {
    display: flex;
    gap: 0;
}

.toolbar-export-group .toolbar-btn-export:first-child {
    border-radius: 6px 0 0 6px;
    border-right: 1px solid #3f3f46;
}

.toolbar-export-group .toolbar-btn-export:last-child {
    border-radius: 0 6px 6px 0;
}

.toolbar-btn-export {
    background: #18181b;
    border-color: #18181b;
    color: #fff;
}

.toolbar-btn-export:hover:not(:disabled) {
    background: #3f3f46;
    border-color: #3f3f46;
    color: #fff;
}

.toolbar-btn-export:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: #e2e2e2;
    margin: 0 0.25rem;
}

.toolbar-canvas-size {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.toolbar-size-input {
    width: 60px;
    padding: 0.3rem 0.4rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8125rem;
    text-align: center;
    outline: none;
}

.toolbar-size-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.toolbar-size-sep {
    font-size: 0.875rem;
    color: #aaa;
}

.toolbar-title-input {
    width: 160px;
    padding: 0.3rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8125rem;
    outline: none;
    color: #1a1a1a;
}

.toolbar-title-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.toolbar-size-unit {
    font-size: 0.75rem;
    color: #aaa;
}

.toolbar-image-form {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
}

.toolbar-image-input {
    flex: 1;
    min-width: 200px;
    padding: 0.375rem 0.625rem;
    border: 1px solid #6366f1;
    border-radius: 6px;
    font-size: 0.8125rem;
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

/* ── Canvas Area ── */

.editor-canvas {
    flex: 1;
    overflow: auto;
    background: #dcdcd4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
}

/* ── Empty State ── */

.canvas-empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #999;
    font-size: 0.9375rem;
    text-align: center;
    pointer-events: none;
}

.canvas-empty-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}

/* ── Canvas Card ── */

.kanvas {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

.kanvas-item {
    position: absolute;
    cursor: grab;
    user-select: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-radius: 2px;
    transition: outline-color 0.1s;
}

.kanvas-item:hover {
    outline-color: rgba(99, 102, 241, 0.4);
}

.kanvas-item.selected {
    outline-color: #6366f1;
}

.kanvas-item.editing {
    cursor: text;
    outline-color: #6366f1;
}

.item-layer-bar {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1px;
    background: #1e1e2e;
    border-radius: 6px;
    padding: 3px 5px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.layer-btn {
    background: transparent;
    border: none;
    color: #c9d1e0;
    font-size: 0.75rem;
    padding: 2px 5px;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    transition: background 0.1s, color 0.1s;
}

.layer-btn:hover {
    background: rgba(99, 102, 241, 0.4);
    color: #fff;
}

.layer-index {
    font-size: 0.6875rem;
    color: #7c85a0;
    padding: 0 4px;
    min-width: 20px;
    text-align: center;
    font-family: 'Courier New', monospace;
    border-left: 1px solid #2e3048;
    border-right: 1px solid #2e3048;
}

.kanvas-item-text {
    width: max-content;
    max-width: 560px;
    line-height: 1.3;
}

.kanvas-title {
    white-space: pre-wrap;
    word-break: break-word;
}

.kanvas-subtitle {
    white-space: pre-wrap;
    word-break: break-word;
}

/* ── Resize handles ── */

.resize-handle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 1.5px solid #6366f1;
    border-radius: 2px;
    z-index: 100;
}

.resize-handle-nw { top: -4px;         left: -4px;              cursor: nwse-resize; }
.resize-handle-n  { top: -4px;         left: calc(50% - 4px);   cursor: ns-resize;   }
.resize-handle-ne { top: -4px;         right: -4px;             cursor: nesw-resize; }
.resize-handle-w  { top: calc(50% - 4px); left: -4px;           cursor: ew-resize;   }
.resize-handle-e  { top: calc(50% - 4px); right: -4px;          cursor: ew-resize;   }
.resize-handle-sw { bottom: -4px;      left: -4px;              cursor: nesw-resize; }
.resize-handle-s  { bottom: -4px;      left: calc(50% - 4px);   cursor: ns-resize;   }
.resize-handle-se { bottom: -4px;      right: -4px;             cursor: nwse-resize; }

/* ── Crop mode ── */

.kanvas-item.cropping {
    outline-color: transparent !important;
    cursor: default;
}

.crop-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    z-index: 10;
}

.crop-boundary {
    position: absolute;
    border: 1.5px dashed rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 11;
}

.crop-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #1a1a2e;
    border-radius: 2px;
    z-index: 200;
}

.crop-handle-n, .crop-handle-s { cursor: ns-resize; }
.crop-handle-w, .crop-handle-e { cursor: ew-resize; }

.layer-bar-sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #2e3048;
    margin: 0 2px;
    vertical-align: middle;
}

.text-edit-input {
    display: block;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 0;
    margin: 0;
    width: max-content;
    min-width: 80px;
    max-width: 540px;
    line-height: inherit;
    field-sizing: content;
    font: inherit;
    color: inherit;
    -webkit-text-stroke: inherit;
}

/* ── Templates Sidebar ── */

.templates-sidebar {
    width: 200px;
    min-width: 200px;
    background: #fff;
    border-right: 1px solid #e2e2e2;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.templates-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
}

.template-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    border: 2px solid transparent;
}

.template-card:hover {
    background: #f5f3ff;
}

.template-card-active {
    border-color: #6366f1;
    background: #eef2ff;
}

.template-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 5px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e2e2e2;
}

.template-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.template-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.template-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.template-desc {
    font-size: 0.6875rem;
    color: #888;
    line-height: 1.4;
}

/* ── Properties Sidebar ── */

.properties-sidebar {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border-left: 1px solid #e2e2e2;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e2e2;
    background: #fafafa;
}

.sidebar-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.sidebar-empty {
    padding: 2rem 1.25rem;
    color: #aaa;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.sidebar-section {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-item-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1;
    background: #eef2ff;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    display: inline-block;
}

.sidebar-delete-btn {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ef4444;
    background: none;
    border: 1px solid #fca5a5;
    border-radius: 5px;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    transition: all 0.15s;
}

.sidebar-delete-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

/* ── Property Controls ── */

.prop-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.prop-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-value-badge {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #888;
    background: #f3f4f6;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}

.prop-select {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #1a1a1a;
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: auto;
}

.prop-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.prop-range {
    width: 100%;
    accent-color: #6366f1;
    cursor: pointer;
}

.align-buttons {
    display: flex;
    gap: 0.375rem;
}

.align-btn {
    flex: 1;
    padding: 0.375rem 0.25rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
}

.align-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.align-btn.active {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

.format-buttons {
    display: flex;
    gap: 0.375rem;
}

.format-btn {
    flex: 1;
    padding: 0.375rem 0.25rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s;
}

.format-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.format-btn.active {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

.format-btn-italic i { font-style: italic; }
.format-btn-underline u { text-decoration: underline; }

.color-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.prop-color {
    width: 2.5rem;
    height: 2.5rem;
    padding: 2px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    background: none;
}

.prop-color-value {
    font-size: 0.8125rem;
    color: #555;
    font-family: 'Courier New', monospace;
}

.prop-textarea {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #1a1a1a;
    resize: vertical;
    outline: none;
    line-height: 1.5;
}

.prop-textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.prop-apply-btn {
    margin-top: 0.25rem;
    padding: 0.4rem 1rem;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    align-self: flex-start;
}

.prop-apply-btn:hover {
    background: #4f46e5;
}

.prop-size-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.prop-size-field {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.prop-size-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #888;
    width: 12px;
}

.prop-size-input {
    flex: 1;
    width: 0;
    padding: 0.35rem 0.4rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8125rem;
    text-align: center;
    outline: none;
}

.prop-size-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.prop-size-sep {
    font-size: 0.8rem;
    color: #bbb;
}

.prop-hint {
    font-size: 0.6875rem;
    color: #bbb;
    margin-top: 0.125rem;
}

.prop-image-preview {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
}

/* ── About Button & Modal ── */

.about-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #6366f1;
    border: none;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.45);
    z-index: 1100;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.about-fab:hover {
    background: #4f46e5;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.55);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlay-in 0.18s ease;
}

@keyframes overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-card {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    animation: modal-in 0.2s cubic-bezier(0.34, 1.3, 0.64, 1);
    overflow: hidden;
}

@keyframes modal-in {
    from { opacity: 0; transform: scale(0.93) translateY(8px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);   }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0ed;
}

.modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.modal-close {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    border: none;
    background: #f3f4f6;
    color: #555;
    font-size: 1.0625rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, color 0.12s;
    line-height: 1;
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.about-app-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.about-app-tagline {
    font-size: 0.8125rem;
    color: #888;
    margin-top: 0.125rem;
}

.about-version {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6366f1;
    background: #eef2ff;
    padding: 0.125rem 0.5rem;
    border-radius: 20px;
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
}

.about-desc {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.65;
}

.about-section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.about-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #374151;
}

.about-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    flex-shrink: 0;
}

.about-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.about-tech-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    background: #f3f4f6;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0ed;
    display: flex;
    justify-content: flex-end;
}

.modal-footer-btn {
    padding: 0.45rem 1.25rem;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.modal-footer-btn:hover {
    background: #4f46e5;
}

/* ── Blazor Error UI ── */

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

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

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
