/* _content/LaVelaBlz/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-vfgzntqj1p] {
    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-vfgzntqj1p] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/LaVelaBlz/Components/Pages/ConfermaOrdine.razor.rz.scp.css */
.conferma-container[b-y1fap8x5jd] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.conferma-success[b-y1fap8x5jd],
.conferma-error[b-y1fap8x5jd] {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.conferma-success[b-y1fap8x5jd] {
    background-color: #f0f9ff;
    border: 2px solid #0ea5e9;
}

.conferma-error[b-y1fap8x5jd] {
    background-color: #fef2f2;
    border: 2px solid #ef4444;
}

.success-icon[b-y1fap8x5jd] {
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn-b-y1fap8x5jd 0.5s ease-out;
}

.error-icon[b-y1fap8x5jd] {
    color: #ef4444;
    margin-bottom: 1.5rem;
    animation: shake-b-y1fap8x5jd 0.5s ease-out;
}

.conferma-success h1[b-y1fap8x5jd] {
    color: #0c4a6e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.conferma-error h1[b-y1fap8x5jd] {
    color: #991b1b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-ritiro[b-y1fap8x5jd] {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    font-size: 1.2rem;
}

    .info-ritiro strong[b-y1fap8x5jd] {
        color: #0ea5e9;
        font-size: 1.5rem;
    }

.error-message[b-y1fap8x5jd] {
    font-size: 1.1rem;
    color: #7f1d1d;
    margin-bottom: 1rem;
}

.error-detail[b-y1fap8x5jd] {
    font-size: 0.9rem;
    color: #991b1b;
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.conferma-actions[b-y1fap8x5jd] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@keyframes scaleIn-b-y1fap8x5jd {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake-b-y1fap8x5jd {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}
