/* _content/MoooBistro.Web/Areas/Admin/Pages/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-5dhnk41g67] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    background: #f8f9fa;
}

.access-denied-card[b-5dhnk41g67] {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    animation: fadeIn-b-5dhnk41g67 0.5s ease-in;
}

@keyframes fadeIn-b-5dhnk41g67 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-icon[b-5dhnk41g67] {
    font-size: 100px;
    margin-bottom: 30px;
    animation: bounce-b-5dhnk41g67 1s ease-in-out;
}

@keyframes bounce-b-5dhnk41g67 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.error-title[b-5dhnk41g67] {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-message[b-5dhnk41g67] {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
}

.back-button[b-5dhnk41g67] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.back-button:hover[b-5dhnk41g67] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.back-button:active[b-5dhnk41g67] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.button-icon[b-5dhnk41g67] {
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .access-denied-card[b-5dhnk41g67] {
        padding: 40px 30px;
    }

    .error-icon[b-5dhnk41g67] {
        font-size: 80px;
    }

    .error-title[b-5dhnk41g67] {
        font-size: 26px;
    }

    .error-message[b-5dhnk41g67] {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .back-button[b-5dhnk41g67] {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .access-denied-container[b-5dhnk41g67] {
        padding: 20px 15px;
    }

    .access-denied-card[b-5dhnk41g67] {
        padding: 30px 20px;
    }

    .error-icon[b-5dhnk41g67] {
        font-size: 70px;
        margin-bottom: 20px;
    }

    .error-title[b-5dhnk41g67] {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .error-message[b-5dhnk41g67] {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .back-button[b-5dhnk41g67] {
        padding: 10px 25px;
        font-size: 15px;
    }
}
/* _content/MoooBistro.Web/Areas/Admin/Pages/CourierBoard.razor.rz.scp.css */
.courier-board[b-tp887yvllm] {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Board Header */
.board-header[b-tp887yvllm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.board-header h1[b-tp887yvllm] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

/* Filter Tabs */
.filter-tabs[b-tp887yvllm] {
    display: flex;
    gap: 8px;
}

.tab-button[b-tp887yvllm] {
    padding: 12px 24px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.tab-button:hover[b-tp887yvllm] {
    background: #f8f9fa;
    border-color: #667eea;
}

.tab-button.active[b-tp887yvllm] {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.tab-button:active[b-tp887yvllm] {
    transform: scale(0.98);
}

/* Revenue Section */
.courier-revenue[b-tp887yvllm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.revenue-card[b-tp887yvllm] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-card:hover[b-tp887yvllm] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.revenue-card.cash[b-tp887yvllm] {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: white;
}

.revenue-card.card[b-tp887yvllm] {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
}

.revenue-card.total[b-tp887yvllm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.revenue-label[b-tp887yvllm] {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.95;
}

.revenue-amount[b-tp887yvllm] {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Deliveries Grid */
.deliveries-grid[b-tp887yvllm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Loading State */
.loading-state[b-tp887yvllm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.spinner[b-tp887yvllm] {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin-b-tp887yvllm 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-tp887yvllm {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p[b-tp887yvllm] {
    color: #666;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state[b-tp887yvllm] {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 1.2rem;
}

/* Tablet optimizations */
@media (min-width: 768px) {
    .courier-board[b-tp887yvllm] {
        padding: 32px;
    }

    .board-header h1[b-tp887yvllm] {
        font-size: 2.5rem;
    }

    .deliveries-grid[b-tp887yvllm] {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 24px;
    }

    .courier-revenue[b-tp887yvllm] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .courier-board[b-tp887yvllm] {
        padding: 16px;
    }

    .board-header[b-tp887yvllm] {
        flex-direction: column;
        align-items: flex-start;
    }

    .board-header h1[b-tp887yvllm] {
        font-size: 1.5rem;
    }

    .filter-tabs[b-tp887yvllm] {
        width: 100%;
        justify-content: stretch;
    }

    .tab-button[b-tp887yvllm] {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .deliveries-grid[b-tp887yvllm] {
        grid-template-columns: 1fr;
    }

    .courier-revenue[b-tp887yvllm] {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .filter-tabs[b-tp887yvllm] {
        display: none !important;
    }

    .revenue-card.cash[b-tp887yvllm],
    .revenue-card.card[b-tp887yvllm],
    .revenue-card.total[b-tp887yvllm] {
        background: white !important;
        color: #333 !important;
        border: 2px solid #333 !important;
    }
}
/* _content/MoooBistro.Web/Areas/Admin/Pages/KitchenBoard.razor.rz.scp.css */
.kitchen-board[b-3d4olqccsx] {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Board Header */
.board-header[b-3d4olqccsx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.board-header h1[b-3d4olqccsx] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.count-badge[b-3d4olqccsx] {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Kitchen Grid */
.kitchen-grid[b-3d4olqccsx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Loading State */
.loading-state[b-3d4olqccsx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.spinner[b-3d4olqccsx] {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #28a745;
    border-radius: 50%;
    animation: spin-b-3d4olqccsx 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-3d4olqccsx {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p[b-3d4olqccsx] {
    color: #666;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state[b-3d4olqccsx] {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 1.2rem;
}

/* Tablet optimizations */
@media (min-width: 768px) {
    .kitchen-board[b-3d4olqccsx] {
        padding: 32px;
    }

    .board-header h1[b-3d4olqccsx] {
        font-size: 2.5rem;
    }

    .count-badge[b-3d4olqccsx] {
        padding: 12px 24px;
        font-size: 1.25rem;
    }

    .kitchen-grid[b-3d4olqccsx] {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 24px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .kitchen-board[b-3d4olqccsx] {
        padding: 16px;
    }

    .board-header[b-3d4olqccsx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .board-header h1[b-3d4olqccsx] {
        font-size: 1.5rem;
    }

    .count-badge[b-3d4olqccsx] {
        padding: 8px 16px;
        font-size: 1rem;
    }

    .kitchen-grid[b-3d4olqccsx] {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .count-badge[b-3d4olqccsx] {
        background: white !important;
        color: #333 !important;
        border: 2px solid #333 !important;
    }
}
/* _content/MoooBistro.Web/Areas/Admin/Pages/OperationsOrders.razor.rz.scp.css */
.operations-container[b-ighzrgtn8t] {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-ighzrgtn8t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header h1[b-ighzrgtn8t] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.date-badge[b-ighzrgtn8t] {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1rem;
}

/* Filter Tabs */
.filter-tabs[b-ighzrgtn8t] {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button[b-ighzrgtn8t] {
    padding: 12px 24px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.tab-button:hover[b-ighzrgtn8t] {
    background: #f8f9fa;
    border-color: #007bff;
}

.tab-button.active[b-ighzrgtn8t] {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.tab-button:active[b-ighzrgtn8t] {
    transform: scale(0.98);
}

/* Revenue Section */
.revenue-section[b-ighzrgtn8t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.revenue-card[b-ighzrgtn8t] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-card:hover[b-ighzrgtn8t] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.revenue-card.delivery[b-ighzrgtn8t] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.revenue-card.total[b-ighzrgtn8t] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.revenue-label[b-ighzrgtn8t] {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.revenue-amount[b-ighzrgtn8t] {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Orders Grid */
.orders-grid[b-ighzrgtn8t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

/* Loading State */
.loading-state[b-ighzrgtn8t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.spinner[b-ighzrgtn8t] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-ighzrgtn8t 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-ighzrgtn8t {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p[b-ighzrgtn8t] {
    color: #666;
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-ighzrgtn8t] {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Modal */
.modal-overlay[b-ighzrgtn8t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-ighzrgtn8t] {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-content h2[b-ighzrgtn8t] {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    color: #333;
}

.order-info[b-ighzrgtn8t] {
    color: #666;
    margin-bottom: 24px;
}

/* Preferred time info in modal */
.preferred-time-info[b-ighzrgtn8t] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #2196f3;
}

.preferred-label[b-ighzrgtn8t] {
    font-weight: 500;
    color: #1565c0;
}

.preferred-value[b-ighzrgtn8t] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d47a1;
}

.form-group[b-ighzrgtn8t] {
    margin-bottom: 20px;
}

.form-group label[b-ighzrgtn8t] {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-control[b-ighzrgtn8t] {
    width: 100%;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus[b-ighzrgtn8t] {
    outline: none;
    border-color: #007bff;
}

.alert[b-ighzrgtn8t] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-danger[b-ighzrgtn8t] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.modal-actions[b-ighzrgtn8t] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn[b-ighzrgtn8t] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn:active[b-ighzrgtn8t] {
    transform: scale(0.98);
}

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

.btn-primary[b-ighzrgtn8t] {
    background: #007bff;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-ighzrgtn8t] {
    background: #0056b3;
}

.btn-secondary[b-ighzrgtn8t] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled)[b-ighzrgtn8t] {
    background: #5a6268;
}

/* Tablet optimizations */
@media (min-width: 768px) {
    .operations-container[b-ighzrgtn8t] {
        padding: 32px;
    }

    .page-header h1[b-ighzrgtn8t] {
        font-size: 2.5rem;
    }

    .orders-grid[b-ighzrgtn8t] {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 16px;
    }

    .revenue-section[b-ighzrgtn8t] {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .operations-container[b-ighzrgtn8t] {
        padding: 16px;
    }

    .page-header[b-ighzrgtn8t] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .page-header h1[b-ighzrgtn8t] {
        font-size: 1.5rem;
    }

    .orders-grid[b-ighzrgtn8t] {
        grid-template-columns: 1fr;
    }

    .revenue-section[b-ighzrgtn8t] {
        grid-template-columns: 1fr 1fr;
    }

    .tab-button[b-ighzrgtn8t] {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .modal-content[b-ighzrgtn8t] {
        padding: 24px;
    }
}

/* Print styles */
@media print {
    .filter-tabs[b-ighzrgtn8t],
    .btn[b-ighzrgtn8t],
    .modal-overlay[b-ighzrgtn8t] {
        display: none !important;
    }
}
/* _content/MoooBistro.Web/Areas/Admin/Pages/OrdersManagement.razor.rz.scp.css */
.orders-management[b-6r2i62v6nx] {
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.page-header[b-6r2i62v6nx] {
    margin-bottom: 24px;
}

.page-header h1[b-6r2i62v6nx] {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.filters-section[b-6r2i62v6nx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-group[b-6r2i62v6nx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label[b-6r2i62v6nx] {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-select[b-6r2i62v6nx],
.form-control[b-6r2i62v6nx] {
    padding: 10px 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-select:focus[b-6r2i62v6nx],
.form-control:focus[b-6r2i62v6nx] {
    outline: none;
    border-color: #007bff;
}

.btn-filter[b-6r2i62v6nx] {
    align-self: end;
    padding: 10px 18px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    height: 42px;
}

.btn-filter:hover[b-6r2i62v6nx] {
    background: #0056b3;
}

.orders-table-container[b-6r2i62v6nx] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    margin-bottom: 20px;
}

.orders-table[b-6r2i62v6nx] {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.orders-table thead[b-6r2i62v6nx] {
    background: #f8f9fa;
}

.orders-table th[b-6r2i62v6nx] {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.orders-table td[b-6r2i62v6nx] {
    padding: 14px;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.order-row[b-6r2i62v6nx] {
    transition: background-color 0.15s ease;
}

.order-row:hover[b-6r2i62v6nx] {
    background: #f8f9fa;
    cursor: pointer;
}

.order-number[b-6r2i62v6nx] {
    font-weight: 600;
    color: #007bff;
}

.amount[b-6r2i62v6nx] {
    font-weight: 600;
    color: #212529;
}

.empty-cell[b-6r2i62v6nx] {
    text-align: center;
    padding: 40px;
    color: #999;
}

.btn-expand[b-6r2i62v6nx] {
    width: 30px;
    height: 30px;
    border: 1px solid #ced4da;
    background: #fff;
    border-radius: 6px;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.btn-row-action[b-6r2i62v6nx] {
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.btn-cancel[b-6r2i62v6nx] {
    background: #dc3545;
}

.no-action[b-6r2i62v6nx] {
    color: #adb5bd;
}

.expanded-row td[b-6r2i62v6nx] {
    background: #fbfcfe;
    padding-top: 0;
}

.expanded-content[b-6r2i62v6nx] {
    border-top: 1px solid #e9ecef;
    padding: 16px 4px 8px;
}

.expanded-grid[b-6r2i62v6nx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.expanded-block[b-6r2i62v6nx] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px;
}

.expanded-block h4[b-6r2i62v6nx] {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #343a40;
}

.expanded-block p[b-6r2i62v6nx] {
    margin: 5px 0;
    font-size: 0.92rem;
}

.items-block[b-6r2i62v6nx] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px;
}

.items-block h4[b-6r2i62v6nx] {
    margin: 0 0 10px;
}

.item-row[b-6r2i62v6nx] {
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 8px;
}

.item-row:last-child[b-6r2i62v6nx] {
    margin-bottom: 0;
}

.item-row p[b-6r2i62v6nx] {
    margin: 4px 0;
    color: #5f6872;
    font-size: 0.9rem;
}

.item-main[b-6r2i62v6nx] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.status-badge[b-6r2i62v6nx] {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.status-pendingpayment[b-6r2i62v6nx] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-new[b-6r2i62v6nx] {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.status-accepted[b-6r2i62v6nx] {
    background: #cfe2ff;
    color: #004085;
}

.status-badge.status-preparing[b-6r2i62v6nx] {
    background: #ffe5d0;
    color: #8a3800;
}

.status-badge.status-ready[b-6r2i62v6nx] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-completed[b-6r2i62v6nx] {
    background: #e2e3e5;
    color: #383d41;
}

.status-badge.status-cancelled[b-6r2i62v6nx] {
    background: #f8d7da;
    color: #721c24;
}

.payment-status[b-6r2i62v6nx] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
}

.payment-status-pending[b-6r2i62v6nx],
.payment-status-processing[b-6r2i62v6nx] {
    background: #fff3cd;
    color: #856404;
}

.payment-status-success[b-6r2i62v6nx],
.payment-status-confirmed[b-6r2i62v6nx] {
    background: #d4edda;
    color: #155724;
}

.payment-status-failed[b-6r2i62v6nx],
.payment-status-cancelled[b-6r2i62v6nx],
.payment-status-expired[b-6r2i62v6nx] {
    background: #f8d7da;
    color: #721c24;
}

.pagination[b-6r2i62v6nx] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-page[b-6r2i62v6nx] {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.btn-page:disabled[b-6r2i62v6nx] {
    background: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info[b-6r2i62v6nx] {
    color: #666;
    font-weight: 500;
}

.loading-state[b-6r2i62v6nx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spinner[b-6r2i62v6nx] {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin-b-6r2i62v6nx 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin-b-6r2i62v6nx {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .orders-management[b-6r2i62v6nx] {
        padding: 12px;
    }

    .page-header h1[b-6r2i62v6nx] {
        font-size: 1.4rem;
    }

    .filters-section[b-6r2i62v6nx] {
        grid-template-columns: 1fr;
    }

    .btn-filter[b-6r2i62v6nx] {
        width: 100%;
    }

    .pagination[b-6r2i62v6nx] {
        flex-direction: column;
    }
}
/* _content/MoooBistro.Web/Areas/Admin/Pages/ProductManagement.razor.rz.scp.css */
*[b-6luwdkihrw] {
    box-sizing: border-box;
}

.product-management-page[b-6luwdkihrw] {
    min-height: 100vh;
    background: #f3f4f6;
    padding: 32px 24px;
}

.page-header[b-6luwdkihrw] {
    max-width: 1400px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1[b-6luwdkihrw] {
    margin: 0;
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
}

.header-actions[b-6luwdkihrw] {
    display: flex;
    gap: 12px;
}

.btn[b-6luwdkihrw] {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn:disabled[b-6luwdkihrw] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary[b-6luwdkihrw] {
    background: #1a1a2e;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-6luwdkihrw] {
    background: #16213e;
}

.btn-secondary[b-6luwdkihrw] {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover[b-6luwdkihrw] {
    background: #e5e7eb;
}

.btn-warning[b-6luwdkihrw] {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fcd34d;
}

.btn-warning:hover[b-6luwdkihrw] {
    background: #fef3c7;
}

.btn-success[b-6luwdkihrw] {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #6ee7b7;
}

.btn-success:hover[b-6luwdkihrw] {
    background: #d1fae5;
}

.btn-danger[b-6luwdkihrw] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.btn-danger:hover[b-6luwdkihrw] {
    background: #fee2e2;
}

.btn-online-off[b-6luwdkihrw] {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.btn-online-off:hover[b-6luwdkihrw] {
    background: #dbeafe;
}

.btn-online-on[b-6luwdkihrw] {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

.btn-online-on:hover[b-6luwdkihrw] {
    background: #dcfce7;
}

.btn-soldout-on[b-6luwdkihrw] {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
}

.btn-soldout-on:hover[b-6luwdkihrw] {
    background: #ffe4e6;
}

.btn-soldout-off[b-6luwdkihrw] {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

.btn-soldout-off:hover[b-6luwdkihrw] {
    background: #dcfce7;
}

.btn-sm[b-6luwdkihrw] {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-lg[b-6luwdkihrw] {
    padding: 12px 24px;
    font-size: 15px;
}

.btn-outline[b-6luwdkihrw] {
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

.btn-outline:hover[b-6luwdkihrw] {
    background: #f9fafb;
    border-color: #d1d5db;
}

.products-container[b-6luwdkihrw] {
    max-width: 1400px;
    margin: 0 auto;
}

.loading[b-6luwdkihrw] {
    text-align: center;
    padding: 64px 20px;
    background: white;
    border-radius: 12px;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.spinner[b-6luwdkihrw] {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #1a1a2e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-6luwdkihrw 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin-b-6luwdkihrw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-products[b-6luwdkihrw] {
    text-align: center;
    padding: 64px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.no-products h3[b-6luwdkihrw] {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.no-products p[b-6luwdkihrw] {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 14px;
}

.products-grid[b-6luwdkihrw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.product-card[b-6luwdkihrw] {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.product-card:hover[b-6luwdkihrw] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.product-card.inactive[b-6luwdkihrw] {
    opacity: 0.7;
}

.product-image[b-6luwdkihrw] {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
}

.product-card img[b-6luwdkihrw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inactive-overlay[b-6luwdkihrw] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-info[b-6luwdkihrw] {
    padding: 16px;
}

.product-info h3[b-6luwdkihrw] {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
}

.product-description[b-6luwdkihrw] {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 40px;
    line-height: 1.5;
}

.product-details[b-6luwdkihrw] {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.detail-badge[b-6luwdkihrw] {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
}

.category-badge[b-6luwdkihrw] {
    background: #1a1a2e;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.product-allergens[b-6luwdkihrw] {
    background: #fffbeb;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #d97706;
}

.product-price-info[b-6luwdkihrw] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price[b-6luwdkihrw] {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.pickup-fee[b-6luwdkihrw] {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-quick-info[b-6luwdkihrw] {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.product-quick-info small[b-6luwdkihrw] {
    color: #6b7280;
    font-size: 12px;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 4px;
}

.product-status[b-6luwdkihrw] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.badge[b-6luwdkihrw] {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-success[b-6luwdkihrw] {
    background: #ecfdf5;
    color: #059669;
}

.badge-secondary[b-6luwdkihrw] {
    background: #f3f4f6;
    color: #6b7280;
}

.badge-online[b-6luwdkihrw] {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-offline[b-6luwdkihrw] {
    background: #fff7ed;
    color: #c2410c;
}

.badge-soldout[b-6luwdkihrw] {
    background: #fff1f2;
    color: #be123c;
}

.badge-available[b-6luwdkihrw] {
    background: #ecfdf5;
    color: #166534;
}

.product-actions[b-6luwdkihrw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
}

.product-actions button[b-6luwdkihrw] {
    width: 100%;
}

.product-actions .action-edit[b-6luwdkihrw] {
    grid-column: 1 / -1;
}

/* === MODAL === */
.modal-overlay[b-6luwdkihrw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn-b-6luwdkihrw 0.2s;
}

@keyframes fadeIn-b-6luwdkihrw {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content[b-6luwdkihrw] {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: slideUp-b-6luwdkihrw 0.2s;
}

@keyframes slideUp-b-6luwdkihrw {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-6luwdkihrw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2[b-6luwdkihrw] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.btn-close[b-6luwdkihrw] {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover[b-6luwdkihrw] {
    background: #e5e7eb;
    color: #1f2937;
}

.modal-body[b-6luwdkihrw] {
    padding: 24px;
}

.modal-footer[b-6luwdkihrw] {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: #f9fafb;
}

/* === FORM === */
.form-section[b-6luwdkihrw] {
    margin-bottom: 24px;
}

.form-group[b-6luwdkihrw] {
    margin-bottom: 16px;
}

.form-group label[b-6luwdkihrw] {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-control[b-6luwdkihrw], .form-control-sm[b-6luwdkihrw] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
    background: white;
    color: #1f2937;
}

.form-control-sm[b-6luwdkihrw] {
    padding: 8px 12px;
    font-size: 13px;
}

.form-control:focus[b-6luwdkihrw], .form-control-sm:focus[b-6luwdkihrw] {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

textarea.form-control[b-6luwdkihrw] {
    min-height: 80px;
    resize: vertical;
}

.form-text[b-6luwdkihrw],
.form-group small[b-6luwdkihrw] {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
}

.text-danger[b-6luwdkihrw] {
    color: #dc2626 !important;
}

.form-row[b-6luwdkihrw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* === SECTION HEADERS === */
.section-title[b-6luwdkihrw] {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 0;
}

.section-title:first-child[b-6luwdkihrw] {
    margin-top: 0;
}

/* === IMAGE SECTION === */
.image-upload-section[b-6luwdkihrw] {
    margin-bottom: 16px;
}

.image-preview-container[b-6luwdkihrw] {
    text-align: center;
    margin-bottom: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.product-image-preview[b-6luwdkihrw] {
    max-width: 180px;
    max-height: 140px;
    border-radius: 6px;
    display: block;
    margin: 0 auto 10px;
}

.btn-remove-image[b-6luwdkihrw] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.btn-remove-image:hover[b-6luwdkihrw] {
    background: #fee2e2;
}

.upload-button[b-6luwdkihrw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: #f9fafb;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-button:hover[b-6luwdkihrw] {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.upload-text[b-6luwdkihrw] {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

.file-input-hidden[b-6luwdkihrw] {
    display: none;
}

.upload-hint[b-6luwdkihrw] {
    display: block;
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 8px;
}

/* === CHECKBOXES === */
.checkbox-label[b-6luwdkihrw] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.2s;
    font-size: 14px;
}

.checkbox-label:hover[b-6luwdkihrw] {
    background: #f9fafb;
}

.checkbox-label input[type="checkbox"][b-6luwdkihrw] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a1a2e;
}

/* === PAID EXTRAS === */
.paid-extras-list[b-6luwdkihrw] {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.paid-extra-item[b-6luwdkihrw] {
    display: grid;
    grid-template-columns: 1fr 120px 36px;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.btn-remove[b-6luwdkihrw] {
    width: 36px;
    height: 36px;
    border: none;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.btn-remove:hover[b-6luwdkihrw] {
    background: #fee2e2;
}

/* === ALERTS === */
.alert[b-6luwdkihrw] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
}

.alert-danger[b-6luwdkihrw] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success[b-6luwdkihrw] {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* === PRODUCT TAGS === */
.product-tags[b-6luwdkihrw] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.product-tags .tag-checkbox[b-6luwdkihrw] {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 !important;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.tag-checkbox:hover[b-6luwdkihrw] {
    border-color: #d1d5db;
}

.tag-checkbox input[type="checkbox"][b-6luwdkihrw] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.tag-new[b-6luwdkihrw] { color: #2563eb; }
.tag-popular[b-6luwdkihrw] { color: #d97706; }
.tag-spicy[b-6luwdkihrw] { color: #dc2626; }
.tag-hot[b-6luwdkihrw] { color: #b91c1c; }
.tag-vegetarian[b-6luwdkihrw] { color: #059669; }

.dynamic-tag[b-6luwdkihrw] {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.divider[b-6luwdkihrw] {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.divider[b-6luwdkihrw]::before,
.divider[b-6luwdkihrw]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e5e7eb;
}

.divider[b-6luwdkihrw]::before {
    left: 0;
}

.divider[b-6luwdkihrw]::after {
    right: 0;
}

.divider span[b-6luwdkihrw] {
    background: white;
    padding: 0 12px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
}

/* === DRAG & DROP === */
.product-card[b-6luwdkihrw] {
    cursor: grab;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.product-card:active[b-6luwdkihrw] {
    cursor: grabbing;
}

.product-card.dragging[b-6luwdkihrw] {
    opacity: 0.5;
    transform: scale(0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-card.drop-target[b-6luwdkihrw] {
    border: 2px dashed #1a1a2e;
    background: #f0f4ff;
    transform: scale(1.02);
}

.drag-handle[b-6luwdkihrw] {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
    color: #9ca3af;
    cursor: grab;
    z-index: 10;
    letter-spacing: 2px;
    transition: color 0.2s, background 0.2s;
}

.drag-handle:hover[b-6luwdkihrw] {
    color: #1a1a2e;
    background: white;
}

.product-card:hover .drag-handle[b-6luwdkihrw] {
    color: #6b7280;
}

/* === DELETE CONFIRM MODAL === */
.delete-confirm-modal[b-6luwdkihrw] {
    max-width: 400px;
}

.delete-confirm-modal .modal-body[b-6luwdkihrw] {
    text-align: center;
    padding: 30px 40px;
}

.delete-confirm-modal .modal-body p[b-6luwdkihrw] {
    margin: 10px 0;
}

.delete-confirm-modal .text-danger[b-6luwdkihrw] {
    color: #dc2626;
    font-size: 14px;
}

.delete-confirm-modal .modal-footer[b-6luwdkihrw] {
    justify-content: center;
    gap: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .product-management-page[b-6luwdkihrw] {
        padding: 16px;
    }

    .modal-content[b-6luwdkihrw] {
        max-width: 100%;
        border-radius: 0;
    }

    .modal-header[b-6luwdkihrw], .modal-body[b-6luwdkihrw], .modal-footer[b-6luwdkihrw] {
        padding: 16px;
    }

    .form-row[b-6luwdkihrw] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-footer[b-6luwdkihrw] {
        flex-direction: column;
    }

    .modal-footer .btn[b-6luwdkihrw] {
        width: 100%;
    }

    .page-header[b-6luwdkihrw] {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-actions[b-6luwdkihrw] {
        grid-template-columns: 1fr;
    }

    .product-actions .action-edit[b-6luwdkihrw] {
        grid-column: auto;
    }
}
/* _content/MoooBistro.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-53dqq1q8gf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-53dqq1q8gf] {
    flex: 1;
}

.sidebar[b-53dqq1q8gf] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-53dqq1q8gf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-53dqq1q8gf]  a, .top-row[b-53dqq1q8gf]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-53dqq1q8gf]  a:hover, .top-row[b-53dqq1q8gf]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-53dqq1q8gf]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-53dqq1q8gf] {
        justify-content: space-between;
    }

    .top-row[b-53dqq1q8gf]  a, .top-row[b-53dqq1q8gf]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-53dqq1q8gf] {
        flex-direction: row;
    }

    .sidebar[b-53dqq1q8gf] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-53dqq1q8gf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-53dqq1q8gf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-53dqq1q8gf], article[b-53dqq1q8gf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-53dqq1q8gf] {
    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-53dqq1q8gf] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/MoooBistro.Web/Components/Modals/OrderCancellationModal.razor.rz.scp.css */
.modal-overlay[b-cx3qyfd6of] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-cx3qyfd6of] {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 24px;
}

.modal-content h2[b-cx3qyfd6of] {
    margin: 0 0 10px;
    color: #dc3545;
}

.order-info[b-cx3qyfd6of] {
    margin-bottom: 16px;
}

.form-group[b-cx3qyfd6of] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.form-control[b-cx3qyfd6of] {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
}

.form-control:focus[b-cx3qyfd6of] {
    outline: none;
    border-color: #007bff;
}

.alert[b-cx3qyfd6of] {
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.alert-danger[b-cx3qyfd6of] {
    background: #f8d7da;
    color: #721c24;
}

.modal-actions[b-cx3qyfd6of] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn[b-cx3qyfd6of] {
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

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

.btn-danger[b-cx3qyfd6of] {
    background: #dc3545;
    color: #fff;
}

.btn-secondary[b-cx3qyfd6of] {
    background: #6c757d;
    color: #fff;
}
/* _content/MoooBistro.Web/Components/Shared/OrderCard.razor.rz.scp.css */
.order-card[b-zs2wjew2qp] {
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.order-card:hover[b-zs2wjew2qp] {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
    transform: translateY(-1px);
}

/* Status-based border colors */
.order-card.status-pending-payment[b-zs2wjew2qp] {
    border-left-color: #ffc107;
}

.order-card.status-new[b-zs2wjew2qp] {
    border-left-color: #17a2b8;
}

.order-card.status-accepted[b-zs2wjew2qp] {
    border-left-color: #007bff;
}

.order-card.status-preparing[b-zs2wjew2qp] {
    border-left-color: #fd7e14;
}

.order-card.status-ready[b-zs2wjew2qp] {
    border-left-color: #28a745;
}

.order-card.status-completed[b-zs2wjew2qp] {
    border-left-color: #6c757d;
}

.order-card.status-cancelled[b-zs2wjew2qp] {
    border-left-color: #dc3545;
}

/* Card Header */
.card-header[b-zs2wjew2qp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.card-header h3[b-zs2wjew2qp] {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
}

.status-badge[b-zs2wjew2qp] {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #f8f9fa;
    color: #333;
}

.status-pending-payment .status-badge[b-zs2wjew2qp] {
    background: #fff3cd;
    color: #856404;
}

.status-new .status-badge[b-zs2wjew2qp] {
    background: #d1ecf1;
    color: #0c5460;
}

.status-accepted .status-badge[b-zs2wjew2qp] {
    background: #cfe2ff;
    color: #004085;
}

.status-preparing .status-badge[b-zs2wjew2qp] {
    background: #ffe5d0;
    color: #8a3800;
}

.status-ready .status-badge[b-zs2wjew2qp] {
    background: #d4edda;
    color: #155724;
}

.status-completed .status-badge[b-zs2wjew2qp] {
    background: #e2e3e5;
    color: #383d41;
}

.status-cancelled .status-badge[b-zs2wjew2qp] {
    background: #f8d7da;
    color: #721c24;
}

/* Card Info */
.card-info[b-zs2wjew2qp] {
    margin-bottom: 10px;
}

.info-row[b-zs2wjew2qp] {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.info-row.note[b-zs2wjew2qp] {
    flex-direction: column;
    background: #fffbea;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ffeaa7;
}

.info-row .label[b-zs2wjew2qp] {
    font-weight: 600;
    color: #555;
    margin-right: 8px;
}

.info-row .value[b-zs2wjew2qp] {
    color: #222;
    font-weight: 500;
}

.info-row.note .value[b-zs2wjew2qp] {
    margin-top: 3px;
    color: #856404;
}

/* Card Items */
.card-items[b-zs2wjew2qp] {
    margin-bottom: 10px;
}

.card-items h4[b-zs2wjew2qp] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}

.item[b-zs2wjew2qp] {
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 5px;
}

.item:last-child[b-zs2wjew2qp] {
    margin-bottom: 0;
}

.item-header[b-zs2wjew2qp] {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.item .quantity[b-zs2wjew2qp] {
    font-weight: 700;
    color: #007bff;
    margin-right: 6px;
    font-size: 1.05rem;
}

.item .name[b-zs2wjew2qp] {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

.customization[b-zs2wjew2qp] {
    font-size: 0.85rem;
    padding: 3px 0;
    color: #666;
}

.customization.removed[b-zs2wjew2qp] {
    color: #dc3545;
}

.customization.added[b-zs2wjew2qp] {
    color: #28a745;
}

.customization.note[b-zs2wjew2qp] {
    color: #856404;
    background: #fffbea;
    padding: 8px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Card Total */
.card-total[b-zs2wjew2qp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 10px;
    border-top: 2px solid #eee;
    font-size: 1.15rem;
    color: #222;
}

/* Card Actions */
.card-actions[b-zs2wjew2qp] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-action[b-zs2wjew2qp] {
    flex: 1;
    min-width: 100px;
    padding: 9px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-action:active[b-zs2wjew2qp] {
    transform: scale(0.98);
}

.btn-primary[b-zs2wjew2qp] {
    background: #007bff;
    color: white;
}

.btn-primary:hover[b-zs2wjew2qp] {
    background: #0056b3;
}

.btn-info[b-zs2wjew2qp] {
    background: #17a2b8;
    color: white;
}

.btn-info:hover[b-zs2wjew2qp] {
    background: #117a8b;
}

.btn-success[b-zs2wjew2qp] {
    background: #28a745;
    color: white;
}

.btn-success:hover[b-zs2wjew2qp] {
    background: #218838;
}

.btn-danger[b-zs2wjew2qp] {
    background: #dc3545;
    color: white;
}

.btn-danger:hover[b-zs2wjew2qp] {
    background: #c82333;
}

.btn-secondary[b-zs2wjew2qp] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-zs2wjew2qp] {
    background: #5a6268;
}

/* Tablet optimizations */
@media (min-width: 768px) {
    .order-card[b-zs2wjew2qp] {
        padding: 16px;
    }

    .btn-action[b-zs2wjew2qp] {
        min-width: 110px;
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .card-header h3[b-zs2wjew2qp] {
        font-size: 1.25rem;
    }

    .btn-action[b-zs2wjew2qp] {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Payment Status Styles */
.info-row.payment-status .value[b-zs2wjew2qp] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-status-badge[b-zs2wjew2qp] {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.payment-status-badge.payment-success[b-zs2wjew2qp] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.payment-status-badge.payment-failed[b-zs2wjew2qp] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.payment-status-badge.payment-cancelled[b-zs2wjew2qp] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.payment-status-badge.payment-expired[b-zs2wjew2qp] {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.payment-status-badge.payment-processing[b-zs2wjew2qp] {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.payment-status-badge.payment-pending[b-zs2wjew2qp] {
    background: #cfe2ff;
    color: #004085;
    border: 1px solid #b6d4fe;
}

.btn-refresh-payment[b-zs2wjew2qp] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    font-size: 1rem;
}

.btn-refresh-payment:hover:not(:disabled)[b-zs2wjew2qp] {
    background: #e9ecef;
    border-color: #ced4da;
}

.btn-refresh-payment:disabled[b-zs2wjew2qp] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-refresh-payment:disabled span[b-zs2wjew2qp] {
    animation: spin-b-zs2wjew2qp 1s linear infinite;
}

@keyframes spin-b-zs2wjew2qp {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.info-row.payment-message[b-zs2wjew2qp] {
    border-bottom: none;
    padding-top: 0;
}

.payment-error[b-zs2wjew2qp] {
    color: #721c24;
    font-size: 0.875rem;
    font-style: italic;
}

.info-row.payment-status .loading[b-zs2wjew2qp],
.info-row.payment-status .error[b-zs2wjew2qp] {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Payment Change Buttons */
.payment-change-buttons[b-zs2wjew2qp] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.btn-change-payment[b-zs2wjew2qp] {
    padding: 2px 8px;
    font-size: 0.8em;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-change-payment:hover:not(:disabled)[b-zs2wjew2qp] {
    background-color: #5a6268;
}

.btn-change-payment:disabled[b-zs2wjew2qp] {
    opacity: 0.6;
    cursor: not-allowed;
}
