html, body {
    padding-top: 10px;
    margin: 0;
    height: 100%;
}

.center {
    text-align: center;
}

.drag-drop-zone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    min-height: 150px;
}

.drag-drop-input {
    position: absolute;
    width: 100%;
    height: 90%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.drag-enter {
    box-shadow: var(--mud-elevation-10);
}

.img-xl {
    height: 300px !important;
    width: 300px !important;
}

#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;
}