/* _content/NGridWorkpackageDemo/Components/ErrorAlert/ErrorAlertComponent.razor.rz.scp.css */
.custom-error-container[b-ppiqw1vajm] {
    --height: 3rem;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--height);
    backdrop-filter: blur(50px);
    font-size: .9rem;
    line-height: normal;
    padding-inline: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: .7rem;
    transition: all 300ms ease-in-out;
    z-index: 1010;
    margin-bottom: 10px;
}

    .custom-error-container.Error[b-ppiqw1vajm] {
        background-color: rgba(var(--bs-danger-rgb), .2);
        color: var(--bs-danger);
    }

    .custom-error-container.Warning[b-ppiqw1vajm] {
        background-color: rgba(var(--bs-warning-rgb), .2);
        color: var(--bs-gray-dark);
    }

    .custom-error-container.Info[b-ppiqw1vajm] {
        background-color: rgba(var(--bs-info-rgb), .2);
        color: var(--bs-info);
    }

    .custom-error-container > .custom-error-close-btn[b-ppiqw1vajm] {
        margin: 0 0 0 auto;
        border: 0;
        line-height: 1;
        padding: 0;
        border-radius: .3rem;
        width: 1.7rem;
        height: 1.7rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transition: background-color 200ms ease-in-out;
    }

    .custom-error-container.Error > .custom-error-close-btn[b-ppiqw1vajm] {
        border: 1px solid var(--bs-danger);
        color: var(--bs-danger);
    }

        .custom-error-container.Error > .custom-error-close-btn:hover[b-ppiqw1vajm] {
            background-color: rgba(var(--bs-danger-rgb), .2);
        }

    .custom-error-container.Warning > .custom-error-close-btn[b-ppiqw1vajm] {
        border: 1px solid var(--bs-gray-dark);
        color: var(--bs-gray-dark);
    }

        .custom-error-container.Warning > .custom-error-close-btn:hover[b-ppiqw1vajm] {
            background-color: rgba(var(--bs-warning-rgb), .2);
        }

    .custom-error-container.Info > .custom-error-close-btn[b-ppiqw1vajm] {
        border: 1px solid var(--bs-info);
        color: var(--bs-info);
    }

        .custom-error-container.Info > .custom-error-close-btn:hover[b-ppiqw1vajm] {
            background-color: rgba(var(--bs-info-rgb), .2);
        }
/* _content/NGridWorkpackageDemo/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-hseaj4byuj] {
    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[b-hseaj4byuj] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/NGridWorkpackageDemo/Components/Pages/Home.razor.rz.scp.css */
.main-div[b-06mtqrihcg] {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-items: start;
}

