html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 28px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.camera-image-editor {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.camera-image-preview {
    display: block;
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    object-position: center;
}

.camera-image-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.camera-image-button {
    cursor: pointer;
    margin: 0;
}

.camera-image-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.camera-image-error {
    margin-top: 0.25rem;
}
