/* /Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-pjgbxud67z] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-pjgbxud67z] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Pages/PizzaMenu.razor.rz.scp.css */
.container[b-ve0gxig4v4] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #d9453f 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

h3[b-ve0gxig4v4] {
    color: #111827;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Main Menu Grid */
.menu-grid[b-ve0gxig4v4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.menu-card[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover[b-ve0gxig4v4] {
    border-color: #d9453f;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(217, 69, 63, 0.12);
}

.menu-card h5[b-ve0gxig4v4] {
    color: #111827;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Submenu Grid */
/*.submenu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}*/

.submenu-card[b-ve0gxig4v4] {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.submenu-card:hover[b-ve0gxig4v4] {
    border-color: #d9453f;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(217, 69, 63, 0.15);
}

.submenu-card img[b-ve0gxig4v4] {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.submenu-card h6[b-ve0gxig4v4] {
    padding: 0.75rem 1rem 0 1rem;
    color: #111827;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.submenu-card .text-muted[b-ve0gxig4v4] {
    padding: 0 1rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.submenu-card .price[b-ve0gxig4v4] {
    padding: 0.5rem 1rem 1rem 1rem;
    color: #22c55e;
    font-weight: 700;
    margin: 0;
}

/* Customization Card */
.customization-card[b-ve0gxig4v4] {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.customization-card .card-body[b-ve0gxig4v4] {
    padding: 1.5rem;
}

.customization-card .card-title[b-ve0gxig4v4] {
    color: #111827;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.form-label[b-ve0gxig4v4] {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-select[b-ve0gxig4v4], .form-control[b-ve0gxig4v4] {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus[b-ve0gxig4v4], .form-control:focus[b-ve0gxig4v4] {
    border-color: #d9453f;
    box-shadow: 0 0 0 3px rgba(217, 69, 63, 0.1);
}

.price-display[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #f0fdf4 0%, #f0fdf4 100%);
    border-left: 4px solid #22c55e;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-danger[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #d9453f 0%, #e53935 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.2s;
}

.btn-danger:hover:not(:disabled)[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #c1382e 0%, #d32f2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(217, 69, 63, 0.2);
}

.btn-danger:disabled[b-ve0gxig4v4] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline-secondary[b-ve0gxig4v4] {
    border: 1px solid #d1d5db;
    color: #6b7280;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-outline-secondary:hover[b-ve0gxig4v4] {
    border-color: #d9453f;
    color: #d9453f;
    background: #fee2e2;
}

/* Cart Card */
.cart-card[b-ve0gxig4v4] {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #d9453f;
}

.cart-card .card-body[b-ve0gxig4v4] {
    padding: 1.5rem;
}

.cart-card .card-title[b-ve0gxig4v4] {
    color: #111827;
    font-weight: 700;
    margin-bottom: 1rem;
}

.list-group-item[b-ve0gxig4v4] {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    padding: 1rem !important;
    background: #fff;
}

.list-group-item:first-child[b-ve0gxig4v4] {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.list-group-item:last-child[b-ve0gxig4v4] {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.btn-outline-danger[b-ve0gxig4v4] {
    border: none;
    color: #d9453f;
    transition: all 0.2s;
}

.btn-outline-danger:hover[b-ve0gxig4v4] {
    background: #fee2e2;
    color: #c1382e;
}

.btn-success[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.2s;
}

.btn-success:hover[b-ve0gxig4v4] {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.2);
}

.spinner-border[b-ve0gxig4v4] {
    color: #d9453f !important;
    width: 3rem;
    height: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-grid[b-ve0gxig4v4] {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .submenu-grid[b-ve0gxig4v4] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    h1[b-ve0gxig4v4] {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .row[b-ve0gxig4v4] {
        gap: 1.5rem;
    }

    .col-lg-8[b-ve0gxig4v4], .col-lg-4[b-ve0gxig4v4] {
        width: 100%;
    }

    .menu-grid[b-ve0gxig4v4] {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .submenu-grid[b-ve0gxig4v4] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .customization-card[b-ve0gxig4v4], .cart-card[b-ve0gxig4v4] {
        margin-bottom: 1.5rem;
    }
}
