/* _content/MarwaCarpentary/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-zrkz7oi06c] {
    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-zrkz7oi06c] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/MarwaCarpentary/Components/Pages/Loader.razor.rz.scp.css */
/*.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/



/*.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.spinner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-left: 10px;
    font-size: 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

.loading-overlay[b-1md55g8xyg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Make sure the overlay is on top of other elements */
}

    .loading-overlay .spinner[b-1md55g8xyg] {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        animation: spin-b-1md55g8xyg 1s linear infinite;
    }

    .loading-overlay .loading-text[b-1md55g8xyg] {
        margin-left: 10px;
        font-size: 16px;
        color: #fff; /* Text color for the loading message */
    }

@keyframes spin-b-1md55g8xyg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Disable pointer events for the overlay */
.loading-overlay .disable-overlay[b-1md55g8xyg] {
    pointer-events: none;
}
