/* 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: 3.5rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,...redacted...) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }


.pirate-header {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2rem, 5vw, 3rem); /* scales between 2rem and 3rem */
    text-align: center;
    margin: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.brand-logo {
    height: 1.5em; /* scales with font size */
    max-height: 128px; /* never larger than 128px */
    width: auto;
    vertical-align: middle;
}

.text-3d {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 1px 1px 0 #8e44ad, 2px 2px 0 #8e44ad, 3px 3px 0 #8e44ad, 4px 4px 0 #8e44ad, 5px 5px 0 #8e44ad;
}
