/* _content/WoodShop/Components/Layout/MainLayout.razor.rz.scp.css */
/* ====== MAIN LAYOUT STRUCTURE ====== */
.main-layout[b-erzxivowdo] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

/* ====== MOBILE HEADER (Hidden on Desktop by default) ====== */
.mobile-header[b-erzxivowdo] {
    display: none; /* Hidden by default on desktop */
}

.app-title-mobile[b-erzxivowdo] {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Segoe UI', sans-serif;
    color: #333333;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    user-select: none;
}

.menu-toggle[b-erzxivowdo] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.hamburger[b-erzxivowdo] {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #004d8a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger[b-erzxivowdo] {
    background-color: #002f5e;
}

/* ====== SIDEBAR OVERLAY (Mobile Only) ====== */
.sidebar-overlay[b-erzxivowdo] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

    .sidebar-overlay.active[b-erzxivowdo] {
        opacity: 1;
        pointer-events: all;
    }

/* ====== SIDEBAR ====== */
.sidebar[b-erzxivowdo] {
    width: 15%;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 999;
    position: relative;
}

.app-title[b-erzxivowdo] {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Segoe UI', sans-serif;
    color: #333333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    user-select: none;
}

/* ====== MAIN CONTENT AREA ====== */
.content-area[b-erzxivowdo] {
    flex: 1;
    background: transparent;
    padding: 1.5rem;
    overflow-y: auto;
}

/* ====== CONTENT WRAPPER ====== */
.content-wrapper[b-erzxivowdo] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ====== FADE-IN ANIMATION ====== */
.fade-in[b-erzxivowdo] {
    animation: fadeIn-b-erzxivowdo 0.6s ease-in-out;
}

@keyframes fadeIn-b-erzxivowdo {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet View */
@media (max-width: 900px) {
    .sidebar[b-erzxivowdo] {
        width: 25%;
        min-width: 180px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Show mobile header */
    .mobile-header[b-erzxivowdo] {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #e2e8f0 0%, #e2e8f0 100%);
       
        padding: 0 1rem;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Show sidebar overlay */
    .sidebar-overlay[b-erzxivowdo] {
        display: block;
    }

    /* Transform sidebar into mobile drawer */
    .sidebar[b-erzxivowdo] {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        min-width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        background: #FAFAFA;
        padding-top: 80px;
        overflow-y: auto;
    }

        .sidebar.open[b-erzxivowdo] {
            transform: translateX(0);
        }

    /* Hide desktop app title in sidebar on mobile */
    .app-title[b-erzxivowdo] {
        display: none;
    }

    /* Adjust content area for mobile header */
    .content-area[b-erzxivowdo] {
        width: 100%;
        padding-top: 75px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .content-wrapper[b-erzxivowdo] {
        padding: 1.5rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .sidebar[b-erzxivowdo] {
        width: 75%;
        min-width: unset;
        max-width: 280px;
    }

    .content-area[b-erzxivowdo] {
        padding: 70px 0.75rem 0.75rem;
    }

    .content-wrapper[b-erzxivowdo] {
        padding: 1rem;
    }

    .mobile-header[b-erzxivowdo] {
        height: 55px;
    }

    .app-title-mobile[b-erzxivowdo] {
        font-size: 1.3rem;
    }
}
/* _content/WoodShop/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-links[b-o58yrj1xxs] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

    /* Target NavLink components using ::deep */
    .nav-links[b-o58yrj1xxs]  .nav-link {
        font-size: 1.05rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
        color: #004d8a;
        text-decoration: none;
        font-weight: 450;
        padding: 0.7rem 1.1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        display: block;
        letter-spacing: 0.01em;
    }

        .nav-links[b-o58yrj1xxs]  .nav-link:hover {
            background: rgba(0, 77, 138, 0.15);
            color: #002f5e;
            font-weight: 500;
        }

        .nav-links[b-o58yrj1xxs]  .nav-link.active {
            background: rgba(0, 107, 183, 0.25);
            color: #002f5e;
            font-weight: 550;
        }

/* Mobile styles */
@media (max-width: 768px) {
    .nav-links[b-o58yrj1xxs] {
        gap: 0.5rem;
    }

        .nav-links[b-o58yrj1xxs]  .nav-link {
            font-size: 1.1rem;
            padding: 0.8rem 1.2rem;
        }
}
/* _content/WoodShop/Components/Pages/Factory/FactoryDashboard.razor.rz.scp.css */
.dashboard-container[b-oewd9oly3j] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

/* Header */
.dashboard-header[b-oewd9oly3j] {
    text-align: center;
    margin: 0.5rem 0;
}

.dashboard-title[b-oewd9oly3j] {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin: 0;
}

/* Loading state */
.loading-state[b-oewd9oly3j] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: #000;
    font-size: 1.2rem;
}

/* Dashboard content layout */
.dashboard-content[b-oewd9oly3j] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    overflow: visible !important;
}

/* Left section: stats cards */
.stats-section[b-oewd9oly3j] {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
}

.stats-grid[b-oewd9oly3j] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    overflow: visible !important;
}

/* Detail cards: transparent glossy */
.stat-card[b-oewd9oly3j] {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1rem;
    color: #333;
    font-weight: 500;
    transition: transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    min-width: 0;
}

    .stat-card:hover[b-oewd9oly3j] {
        transform: translateY(-3px);
    }

.stat-card-header[b-oewd9oly3j] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-label[b-oewd9oly3j] {
    font-size: 1.1rem;
}

.stat-card-body[b-oewd9oly3j] {
    overflow: visible !important;
}

    .stat-card-body .stat-row[b-oewd9oly3j] {
        display: flex;
        justify-content: space-between;
        margin: 0.25rem 0;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

.stat-sublabel[b-oewd9oly3j] {
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.stat-value[b-oewd9oly3j] {
    font-weight: 600;
    color: #222;
    text-align: right;
    white-space: nowrap;
}

.stat-value-success[b-oewd9oly3j] {
    color: #16a34a;
}

.stat-value-danger[b-oewd9oly3j] {
    color: #dc2626;
}

/* Right section: chart card */
.chart-section[b-oewd9oly3j] {
    flex: 1 1 400px;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
}

.chart-card[b-oewd9oly3j] {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
}

.chart-card-header[b-oewd9oly3j] {
    margin-bottom: 1rem;
}

.chart-title[b-oewd9oly3j] {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Chart empty state */
.chart-empty-state[b-oewd9oly3j] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.empty-state-text[b-oewd9oly3j] {
    color: #555;
    font-style: italic;
}

/* Chart wrapper */
.chart-wrapper[b-oewd9oly3j] {
    width: 100%;
    overflow: visible !important;
}

/* Force remove any scrollbars from all child elements */
.dashboard-container *[b-oewd9oly3j] {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .dashboard-container *[b-oewd9oly3j]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .dashboard-container[b-oewd9oly3j] {
        padding: 0.75rem;
        gap: 1.5rem;
    }

    .dashboard-title[b-oewd9oly3j] {
        font-size: 1.5rem;
    }

    .dashboard-content[b-oewd9oly3j] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stats-section[b-oewd9oly3j] {
        flex: 1 1 100%;
        width: 100%;
        max-width: 600px;
    }

    .chart-section[b-oewd9oly3j] {
        flex: 1 1 100%;
        width: 100%;
        max-width: 600px;
    }

    .stats-grid[b-oewd9oly3j] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-card[b-oewd9oly3j] {
        padding: 0.875rem;
    }

    .stat-label[b-oewd9oly3j] {
        font-size: 1rem;
    }

    .stat-value[b-oewd9oly3j] {
        font-size: 0.95rem;
    }

    .chart-card[b-oewd9oly3j] {
        padding: 0.875rem;
    }

    .chart-title[b-oewd9oly3j] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .dashboard-container[b-oewd9oly3j] {
        padding: 0.5rem;
        gap: 1rem;
    }

    .dashboard-title[b-oewd9oly3j] {
        font-size: 1.25rem;
    }

    .dashboard-content[b-oewd9oly3j] {
        gap: 1rem;
    }

    .stat-card[b-oewd9oly3j] {
        padding: 0.75rem;
    }

    .stat-label[b-oewd9oly3j] {
        font-size: 0.95rem;
    }

    .stat-sublabel[b-oewd9oly3j] {
        font-size: 0.875rem;
    }

    .stat-value[b-oewd9oly3j] {
        font-size: 0.875rem;
    }
}
/* _content/WoodShop/Components/Pages/Factory/FactoryInventory.razor.rz.scp.css */
/* ================= ROOT ================= */
.fi-root[b-54u104zlx6] {
    width: 100%;
    min-height: 100vh;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ================= FILTER SECTION ================= */
.fi-filters[b-54u104zlx6] {
    background: transparent;
    border-bottom: none;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
}

.fi-filters-container[b-54u104zlx6] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.fi-filters-row[b-54u104zlx6] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ================= SEARCH ================= */
.fi-search[b-54u104zlx6] {
    width: 100%;
    margin-right: 2rem;
}

.fi-search-wrapper[b-54u104zlx6] {
    position: relative;
}

.fi-search-input[b-54u104zlx6] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.938rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    background: white;
}

    .fi-search-input:focus[b-54u104zlx6] {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .fi-search-input[b-54u104zlx6]::placeholder {
        color: #94a3b8;
    }

/* ================= TOTALS ================= */
.fi-totals[b-54u104zlx6] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fi-total[b-54u104zlx6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.fi-total-label[b-54u104zlx6] {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.fi-total-value[b-54u104zlx6] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.fi-total-manufacturing .fi-total-value[b-54u104zlx6] {
    color: #0891b2;
}

.fi-total-selling .fi-total-value[b-54u104zlx6] {
    color: #059669;
}

/* ================= CONTENT SECTION ================= */
.fi-content[b-54u104zlx6] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.fi-content-container[b-54u104zlx6] {
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
}

/* ================= STATE ================= */
.fi-state[b-54u104zlx6] {
    padding: 4rem 2rem;
    text-align: center;
}

.fi-state-text[b-54u104zlx6] {
    font-size: 1rem;
    color: #64748b;
}

/* ================= TABLE ================= */
.fi-table-wrapper[b-54u104zlx6] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fi-table[b-54u104zlx6] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.fi-table-head[b-54u104zlx6] {
    background: #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 10;
}

.fi-table-header-row[b-54u104zlx6] {
    border-bottom: 2px solid #e2e8f0;
}

.fi-th[b-54u104zlx6] {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.fi-table-body .fi-tr[b-54u104zlx6] {
    border-bottom: 1px solid #f1f5f9;
    background-color: white;
}

    .fi-table-body .fi-tr:last-child[b-54u104zlx6] {
        border-bottom: none;
    }

.fi-td[b-54u104zlx6] {
    padding: 1rem 0.75rem;
    color: #334155;
    vertical-align: middle;
}

.fi-td-name[b-54u104zlx6] {
    font-weight: 500;
    color: #1e293b;
}

.fi-td-sku[b-54u104zlx6] {
    color: #64748b;
    font-family: 'Courier New', monospace;
    font-size: 0.813rem;
}

.fi-td-quantity[b-54u104zlx6],
.fi-td-manufacturing[b-54u104zlx6],
.fi-td-selling[b-54u104zlx6] {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

/* ================= ACTIONS ================= */
.fi-action-btn[b-54u104zlx6] {
    padding: 0;
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.15s ease;
    font-weight: 500;
}

    .fi-action-btn:hover[b-54u104zlx6] {
        color: #1e293b;
    }

    .fi-action-btn:disabled[b-54u104zlx6] {
        color: #cbd5e1;
        cursor: not-allowed;
    }

/* ================= PAGINATION ================= */
.fi-pagination[b-54u104zlx6] {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.fi-pagination-container[b-54u104zlx6] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.fi-page-btn[b-54u104zlx6] {
    padding: 0;
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease;
}

    .fi-page-btn:hover:not(:disabled)[b-54u104zlx6] {
        color: #1e293b;
    }

    .fi-page-btn:disabled[b-54u104zlx6] {
        color: #cbd5e1;
        cursor: not-allowed;
    }

.fi-page-info[b-54u104zlx6] {
    font-size: 0.875rem;
    color: #64748b;
}

.fi-page-current[b-54u104zlx6],
.fi-page-total[b-54u104zlx6] {
    font-weight: 600;
    color: #1e293b;
}

/* ================= MODAL ================= */
.fi-modal-backdrop[b-54u104zlx6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn-b-54u104zlx6 0.2s ease;
}

.fi-modal[b-54u104zlx6] {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.fi-modal-dialog[b-54u104zlx6] {
    width: 100%;
    max-width: 600px;
    animation: slideUp-b-54u104zlx6 0.3s ease;
}

.fi-modal-content[b-54u104zlx6] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fi-modal-header[b-54u104zlx6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.fi-modal-title[b-54u104zlx6] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.fi-modal-close-btn[b-54u104zlx6] {
    padding: 0.25rem;
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease;
}

    .fi-modal-close-btn:hover[b-54u104zlx6] {
        color: #1e293b;
    }

.fi-modal-body[b-54u104zlx6] {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.fi-modal-section[b-54u104zlx6] {
    margin-bottom: 2rem;
}

    .fi-modal-section:last-child[b-54u104zlx6] {
        margin-bottom: 0;
    }

.fi-modal-section-title[b-54u104zlx6] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.fi-modal-empty-text[b-54u104zlx6] {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

.fi-design-list[b-54u104zlx6] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fi-design-item[b-54u104zlx6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

    .fi-design-item:last-child[b-54u104zlx6] {
        margin-bottom: 0;
    }

.fi-design-list-available .fi-design-item[b-54u104zlx6] {
    background: #f0fdf4;
    border-color: #d1fae5;
}

.fi-design-list-unavailable .fi-design-item[b-54u104zlx6] {
    background: #fef2f2;
    border-color: #fecaca;
}

.fi-design-name[b-54u104zlx6] {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.875rem;
}

.fi-design-qty[b-54u104zlx6] {
    font-size: 0.813rem;
    color: #64748b;
}

.fi-modal-footer[b-54u104zlx6] {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.fi-modal-footer-btn[b-54u104zlx6] {
    padding: 0;
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease;
}

    .fi-modal-footer-btn:hover[b-54u104zlx6] {
        color: #1e293b;
    }

/* ================= ANIMATIONS ================= */
@keyframes fadeIn-b-54u104zlx6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-54u104zlx6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (min-width: 640px) {
    .fi-totals[b-54u104zlx6] {
        flex-direction: row;
        gap: 1.5rem;
    }

    .fi-total[b-54u104zlx6] {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .fi-filters-row[b-54u104zlx6] {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }

    .fi-search[b-54u104zlx6] {
        flex: 1;
        max-width: 400px;
        margin-right: 0;
    }

    .fi-totals[b-54u104zlx6] {
        flex-shrink: 0;
    }

    .fi-th[b-54u104zlx6],
    .fi-td[b-54u104zlx6] {
        padding: 1rem 1rem;
    }
}

@media (min-width: 1024px) {
    .fi-filters[b-54u104zlx6] {
        padding: 2rem 0;
    }

    .fi-content[b-54u104zlx6] {
        padding: 2.5rem 1.5rem;
    }
}

/* ================= PRINT ================= */
@media print {
    .fi-filters[b-54u104zlx6],
    .fi-pagination[b-54u104zlx6],
    .fi-td-actions[b-54u104zlx6] {
        display: none;
    }

    .fi-root[b-54u104zlx6] {
        background: white;
    }

    .fi-content-container[b-54u104zlx6] {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}
/* _content/WoodShop/Components/Pages/Factory/FactoryInvoice.razor.rz.scp.css */
/* ==================================================
   General Page + Layout
==================================================*/
.invoice-page[b-m8krsseouu] {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #333;
}

.invoice-title[b-m8krsseouu] {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

/* ===================== CUSTOMER SECTION ===================== */
.customer-section[b-m8krsseouu] {
    margin-bottom: 25px;
    max-width: 420px;
}

.customer-label[b-m8krsseouu] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.customer-select[b-m8krsseouu] {
    width: 260px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #bfbfbf;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.2s ease;
}

    .customer-select:focus[b-m8krsseouu] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

.new-customer-box[b-m8krsseouu] {
    margin-top: 10px;
    max-width: 420px;
}

.new-customer-input[b-m8krsseouu] {
    width: 100%;
    padding: 7px 10px;
    margin: 5px 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* ===================== SEARCH SECTION ===================== */
.search-section[b-m8krsseouu] {
    margin-bottom: 20px;
}

.search-input[b-m8krsseouu] {
    width: 100%;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #bfbfbf;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
}

    .search-input:focus[b-m8krsseouu] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

.message-text[b-m8krsseouu] {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 221, 153, 0.4);
    border-left: 4px solid #ffb84d;
    font-weight: 500;
    border-radius: 5px;
}

/* Divider */
.divider[b-m8krsseouu] {
    margin: 20px 0;
}

/* ===================== CART SECTION ===================== */
.cart-section[b-m8krsseouu] {
    margin-top: 25px;
}

.cart-empty-text[b-m8krsseouu] {
    color: #777;
    font-style: italic;
    margin-top: 5px;
}

/* ===================== CART TABLE ===================== */
.cart-table-container[b-m8krsseouu] {
    overflow-x: auto;
}

.cart-table[b-m8krsseouu] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.88rem;
}

    .cart-table th[b-m8krsseouu],
    .cart-table td[b-m8krsseouu] {
        padding: 7px;
        border: 1px solid #ddd;
        vertical-align: middle;
        white-space: nowrap;
    }

    .cart-table th[b-m8krsseouu] {
        background: #f2f2f2;
        font-weight: 600;
        color: #333;
    }

/* Column widths */
.cart-item-name[b-m8krsseouu] {
    width: 20%;
}

.cart-item-design[b-m8krsseouu] {
    width: 18%;
    min-width: 200px;
}

.cart-item-quantity[b-m8krsseouu] {
    width: 14%;
    min-width: 90px;
}

.cart-item-price[b-m8krsseouu],
.cart-item-total[b-m8krsseouu] {
    width: 14%;
}

.cart-item-remove[b-m8krsseouu] {
    width: 12%;
    text-align: center;
}

/* ===================== Design Dropdown ===================== */
.cart-item-design select[b-m8krsseouu] {
    width: 170px;
    padding: 5px 8px;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    font-size: 0.8rem;
    background: #fff;
    color: #333;
    transition: border-color 0.2s ease;
}

    .cart-item-design select:focus[b-m8krsseouu] {
        border-color: #888;
        outline: none;
    }

/* ===================== Quantity Controls ===================== */
.cart-item-quantity[b-m8krsseouu] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.quantity-button[b-m8krsseouu] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .quantity-button:hover[b-m8krsseouu] {
        color: #333;
    }

.cart-item-price input[b-m8krsseouu] {
    width: 75px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
}

.cart-item-total[b-m8krsseouu] {
    font-weight: 500;
    white-space: nowrap;
}

/* ===================== Remove Button (Text Only) ===================== */
.cart-item-remove button[b-m8krsseouu] {
    background: none !important;
    border: none !important;
    color: #777;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .cart-item-remove button:hover[b-m8krsseouu] {
        color: #333;
    }

/* ===================== Action Buttons ===================== */
.btn-save[b-m8krsseouu] {
    background: rgba(77, 171, 247, 0.95);
    color: white;
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .btn-save:hover[b-m8krsseouu] {
        background: rgba(51, 154, 240, 0.95);
    }

/* ===================== Responsive ===================== */
@media (max-width: 768px) {

    .customer-section[b-m8krsseouu],
    .new-customer-box[b-m8krsseouu] {
        max-width: 100%;
    }

    .customer-select[b-m8krsseouu] {
        width: 100%;
    }

    .cart-item-design select[b-m8krsseouu] {
        width: 100%;
    }

    .cart-item-quantity[b-m8krsseouu] {
        min-width: auto;
    }

    .btn-save[b-m8krsseouu] {
        width: 100%;
        margin-top: 12px;
    }
}
/* _content/WoodShop/Components/Pages/Shop/AddItem.razor.rz.scp.css */
/* _content/WoodShop/Components/Pages/Shop/CreateInvoice.razor.rz.scp.css */
/* ==================================================
   General Page + Layout
==================================================*/
.invoice-page[b-apfihh93qr] {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #333;
}

.invoice-title[b-apfihh93qr] {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

/* Search Section */
.search-section[b-apfihh93qr] {
    margin-bottom: 20px;
}

.message-text[b-apfihh93qr] {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 221, 153, 0.4);
    border-left: 4px solid #ffb84d;
    font-weight: 500;
    border-radius: 5px;
}

.divider[b-apfihh93qr] {
    margin: 20px 0;
}

/* ==================================================
   Search Input
==================================================*/
.search-input[b-apfihh93qr] {
    width: 100%;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #bfbfbf;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
}

    .search-input:focus[b-apfihh93qr] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

/* ==================================================
   Cart Section
==================================================*/
.cart-section[b-apfihh93qr] {
    margin-top: 25px;
}

.cart-empty-text[b-apfihh93qr] {
    color: #777;
    font-style: italic;
    margin-top: 5px;
}

/* ==================================================
   Cart Table
==================================================*/
.cart-table-container[b-apfihh93qr] {
    overflow-x: auto;
}

.cart-table[b-apfihh93qr] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

    .cart-table th[b-apfihh93qr],
    .cart-table td[b-apfihh93qr] {
        padding: 8px;
        border: 1px solid #ddd;
        vertical-align: middle;
    }

    .cart-table th[b-apfihh93qr] {
        background: #f2f2f2;
        font-weight: 600;
        color: #333;
    }

/* Column widths */
.cart-col-name[b-apfihh93qr] {
    width: 16%;
}

.cart-col-qty[b-apfihh93qr] {
    width: 15%;
    text-align: center;
}

.cart-col-selling[b-apfihh93qr] {
    width: 15%;
}

.cart-col-purchase[b-apfihh93qr] {
    width: 15%;
}

.cart-col-total[b-apfihh93qr] {
    width: 10%;
}

.cart-col-remove[b-apfihh93qr] {
    width: 13%;
    text-align: center;
}

/* ==================================================
   Quantity Controls
==================================================*/
.qty-box[b-apfihh93qr] {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.qty-btn[b-apfihh93qr],
.remove-btn[b-apfihh93qr] {
    background: none !important;
    border: none !important;
    color: #666 !important;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .qty-btn:hover[b-apfihh93qr],
    .remove-btn:hover[b-apfihh93qr] {
        color: #333 !important;
    }

.qty-value[b-apfihh93qr] {
    min-width: 22px;
    text-align: center;
    font-weight: 500;
}

/* ==================================================
   Price Input
==================================================*/
.selling-input[b-apfihh93qr] {
    width: 85px;
    padding: 4px 6px;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    font-size: 0.85rem;
}

    .selling-input:focus[b-apfihh93qr] {
        border-color: #888;
        outline: none;
    }

/* ==================================================
   Action Buttons
==================================================*/
.btn-save[b-apfihh93qr] {
    background: rgba(77, 171, 247, 0.95);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .btn-save:hover[b-apfihh93qr] {
        background: rgba(51, 154, 240, 0.95);
    }

.btn-toggle[b-apfihh93qr] {
    background: none !important;
    border: none !important;
    color: #666 !important;
    font-size: 0.95rem;
    padding: 3px 6px;
    cursor: pointer;
}

    .btn-toggle:hover[b-apfihh93qr] {
        color: #333 !important;
    }

/* Summary Section */
.cart-summary[b-apfihh93qr] {
    margin-top: 15px;
}

.cart-total-text[b-apfihh93qr] {
    font-weight: 600;
    font-size: 18px;
    color: #222;
}

.cart-buttons[b-apfihh93qr] {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
/* ==================================================
   Image Column & Thumbnail
==================================================*/
.cart-col-image[b-apfihh93qr] {
    width: 70px;
    text-align: center;
}

.cart-item-image[b-apfihh93qr] {
    text-align: center;
    padding: 8px;
}

.cart-thumbnail[b-apfihh93qr] {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: transform 0.2s ease;
}

    .cart-thumbnail:hover[b-apfihh93qr] {
        transform: scale(1.1);
    }

.cart-no-image[b-apfihh93qr] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 9px;
    color: #999;
    margin: 0 auto;
}

/* ==================================================
   Image Popup Modal
==================================================*/
.image-popup-overlay[b-apfihh93qr] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.image-popup-container[b-apfihh93qr] {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-popup-img[b-apfihh93qr] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-popup-close[b-apfihh93qr] {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.2s ease;
}

    .image-popup-close:hover[b-apfihh93qr] {
        background: #f0f0f0;
    }
/* _content/WoodShop/Components/Pages/Shop/Home.razor.rz.scp.css */
.dashboard-container[b-q49llbqhve] {
    padding: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Loading State */
.loading-container[b-q49llbqhve] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 1rem;
}

.spinner[b-q49llbqhve] {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-q49llbqhve 0.8s linear infinite;
}

@keyframes spin-b-q49llbqhve {
    to {
        transform: rotate(360deg);
    }
}

/* Main Grid Layout */
.dashboard-grid[b-q49llbqhve] {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2rem;
    align-items: start;
    max-width: 100%;
}

/* LEFT SECTION */
.left-section[b-q49llbqhve] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.stats-grid[b-q49llbqhve] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card[b-q49llbqhve] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 0;
}

    .stat-card:hover[b-q49llbqhve] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.stat-icon[b-q49llbqhve] {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.earnings-card .stat-icon[b-q49llbqhve] {
    background: #d1fae5;
    color: #059669;
}

.expenses-card .stat-icon[b-q49llbqhve] {
    background: #fee2e2;
    color: #dc2626;
}

.profit-card .stat-icon[b-q49llbqhve] {
    background: #dbeafe;
    color: #2563eb;
}

.profit-card.negative .stat-icon[b-q49llbqhve] {
    background: #fef3c7;
    color: #d97706;
}

.bestseller-card .stat-icon[b-q49llbqhve] {
    background: #fef3c7;
    color: #f59e0b;
}

.stat-content[b-q49llbqhve] {
    flex: 1;
    min-width: 0;
}

    .stat-content h5[b-q49llbqhve] {
        font-size: 0.875rem;
        font-weight: 500;
        color: #6b7280;
        margin: 0 0 0.5rem 0;
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }

    .stat-content h3[b-q49llbqhve] {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0;
        color: #1f2937;
        word-break: break-word;
    }

.earnings-card h3[b-q49llbqhve] {
    color: #059669;
}

.expenses-card h3[b-q49llbqhve] {
    color: #dc2626;
}

.profit-card.positive h3[b-q49llbqhve] {
    color: #2563eb;
}

.profit-card.negative h3[b-q49llbqhve] {
    color: #d97706;
}

.stat-content h4[b-q49llbqhve] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    word-break: break-word;
}

.stat-content .quantity[b-q49llbqhve] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.stat-content .no-data[b-q49llbqhve] {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}

/* Restock Section */
.restock-section[b-q49llbqhve] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.restock-header[b-q49llbqhve] {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .restock-header:hover[b-q49llbqhve] {
        background: #f9fafb;
    }

.restock-title[b-q49llbqhve] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .restock-title svg[b-q49llbqhve] {
        color: #f59e0b;
        flex-shrink: 0;
    }

    .restock-title h5[b-q49llbqhve] {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
    }

.restock-badge[b-q49llbqhve] {
    background: #fef3c7;
    color: #d97706;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.restock-content[b-q49llbqhve] {
    padding: 0 1.5rem 1.5rem;
    animation: slideDown-b-q49llbqhve 0.3s ease;
}

@keyframes slideDown-b-q49llbqhve {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-restock[b-q49llbqhve] {
    text-align: center;
    padding: 2rem;
    color: #059669;
    font-weight: 500;
}

.restock-table-wrapper[b-q49llbqhve] {
    overflow-x: auto;
}

.restock-table[b-q49llbqhve] {
    width: 100%;
    border-collapse: collapse;
}

    .restock-table thead th[b-q49llbqhve] {
        text-align: left;
        padding: 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: #6b7280;
        border-bottom: 2px solid #e5e7eb;
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }

    .restock-table tbody tr[b-q49llbqhve] {
        border-bottom: 1px solid #f3f4f6;
        transition: background 0.2s ease;
    }

        .restock-table tbody tr:hover[b-q49llbqhve] {
            background: #f9fafb;
        }

    .restock-table tbody td[b-q49llbqhve] {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
        color: #374151;
    }

.qty-badge[b-q49llbqhve] {
    background: #fee2e2;
    color: #dc2626;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* RIGHT SECTION - Chart */
.right-section[b-q49llbqhve] {
    position: sticky;
    top: 2rem;
    min-width: 0;
}

.chart-container[b-q49llbqhve] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.chart-title[b-q49llbqhve] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.chart-wrapper[b-q49llbqhve] {
    /* Compact chart display */
}

.no-data-chart[b-q49llbqhve] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

    .no-data-chart svg[b-q49llbqhve] {
        color: #d1d5db;
        margin-bottom: 1rem;
    }

    .no-data-chart p[b-q49llbqhve] {
        color: #9ca3af;
        font-size: 1rem;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-grid[b-q49llbqhve] {
        grid-template-columns: 1fr;
    }

    .right-section[b-q49llbqhve] {
        position: static;
    }

    .chart-container[b-q49llbqhve] {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-q49llbqhve] {
        padding: 1rem;
        min-height: auto;
    }

    .dashboard-grid[b-q49llbqhve] {
        gap: 1.5rem;
    }

    .stats-grid[b-q49llbqhve] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card[b-q49llbqhve] {
        padding: 1.25rem;
    }

    .stat-icon[b-q49llbqhve] {
        width: 40px;
        height: 40px;
    }

    .stat-content h5[b-q49llbqhve] {
        font-size: 0.75rem;
    }

    .stat-content h3[b-q49llbqhve] {
        font-size: 1.5rem;
    }

    .stat-content h4[b-q49llbqhve] {
        font-size: 1rem;
    }

    .chart-container[b-q49llbqhve] {
        padding: 1.5rem;
        max-width: 100%;
    }

    .chart-title[b-q49llbqhve] {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .restock-header[b-q49llbqhve] {
        padding: 1.25rem;
    }

    .restock-title h5[b-q49llbqhve] {
        font-size: 1rem;
    }

    .restock-content[b-q49llbqhve] {
        padding: 0 1.25rem 1.25rem;
    }

    .restock-table[b-q49llbqhve] {
        font-size: 0.8125rem;
    }

        .restock-table thead th[b-q49llbqhve],
        .restock-table tbody td[b-q49llbqhve] {
            padding: 0.625rem 0.5rem;
        }
}

@media (max-width: 480px) {
    .dashboard-container[b-q49llbqhve] {
        padding: 0.75rem;
    }

    .stat-card[b-q49llbqhve] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-icon[b-q49llbqhve] {
        width: 36px;
        height: 36px;
    }

        .stat-icon svg[b-q49llbqhve] {
            width: 18px;
            height: 18px;
        }

    .stat-content h3[b-q49llbqhve] {
        font-size: 1.25rem;
    }

    .chart-container[b-q49llbqhve] {
        padding: 1rem;
    }

    .restock-header[b-q49llbqhve] {
        padding: 1rem;
    }

    .restock-title[b-q49llbqhve] {
        gap: 0.5rem;
    }

        .restock-title svg[b-q49llbqhve] {
            width: 16px;
            height: 16px;
        }
}
/* _content/WoodShop/Components/Pages/Shop/InventoryList.razor.rz.scp.css */
.inventory-container[b-96u9bk6a03] {
    padding: 20px;
    max-width: 100%;
}

.inventory-filters[b-96u9bk6a03] {
    margin-bottom: 20px;
}

    .inventory-filters .row[b-96u9bk6a03] {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .inventory-filters .col-4[b-96u9bk6a03],
    .inventory-filters .col-3[b-96u9bk6a03] {
        flex: 1;
        max-width: 300px;
    }

.search-wrapper[b-96u9bk6a03],
.category-wrapper[b-96u9bk6a03] {
    width: 100%;
}

.search-input[b-96u9bk6a03],
.category-select[b-96u9bk6a03] {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

    .search-input:focus[b-96u9bk6a03],
    .category-select:focus[b-96u9bk6a03] {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        outline: none;
    }

.inventory-content[b-96u9bk6a03] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.loading-state[b-96u9bk6a03],
.empty-state[b-96u9bk6a03] {
    padding: 40px;
    text-align: center;
}

.loading-text[b-96u9bk6a03],
.empty-text[b-96u9bk6a03] {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.table-wrapper[b-96u9bk6a03] {
    overflow-x: auto;
    margin-bottom: 20px;
}

.inventory-table[b-96u9bk6a03] {
    width: 100%;
    margin-bottom: 0;
    background: white;
    border-collapse: collapse;
}

.table-head[b-96u9bk6a03] {
    background-color: #f8f9fa;
}

.table-header-row[b-96u9bk6a03] {
    border-bottom: 2px solid #dee2e6;
}

.table-header[b-96u9bk6a03] {
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    padding: 12px 10px;
    text-align: left;
    white-space: nowrap;
    border: 1px solid #dee2e6;
}

.table-header-image[b-96u9bk6a03] {
    width: 80px;
    text-align: center;
}

.table-header-name[b-96u9bk6a03] {
    min-width: 150px;
}

.table-header-sku[b-96u9bk6a03],
.table-header-category[b-96u9bk6a03],
.table-header-unit[b-96u9bk6a03],
.table-header-material[b-96u9bk6a03],
.table-header-color[b-96u9bk6a03] {
    min-width: 100px;
}

.table-header-qty[b-96u9bk6a03] {
    width: 80px;
    text-align: center;
}

.table-header-purchase[b-96u9bk6a03],
.table-header-selling[b-96u9bk6a03],
.table-header-dimensions[b-96u9bk6a03] {
    min-width: 120px;
}

.table-header-actions[b-96u9bk6a03] {
    width: 100px;
    text-align: center;
}

.table-body[b-96u9bk6a03] {
    background-color: white;
}

.table-row[b-96u9bk6a03] {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #dee2e6;
}

    .table-row:hover[b-96u9bk6a03] {
        background-color: #f8f9fa;
    }

.table-cell[b-96u9bk6a03] {
    padding: 12px 10px;
    font-size: 14px;
    color: #495057;
    border: 1px solid #dee2e6;
}

.table-cell-image[b-96u9bk6a03] {
    text-align: center;
    width: 80px;
}

.table-cell-qty[b-96u9bk6a03],
.table-cell-actions[b-96u9bk6a03] {
    text-align: center;
}

.image-cell-wrapper[b-96u9bk6a03] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-thumbnail[b-96u9bk6a03] {
    border-radius: 4px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    object-fit: cover;
}

    .item-thumbnail:hover[b-96u9bk6a03] {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.no-image-text[b-96u9bk6a03] {
    color: #adb5bd;
    font-size: 12px;
    font-style: italic;
}

.action-buttons[b-96u9bk6a03] {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.delete-button[b-96u9bk6a03] {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .delete-button:hover[b-96u9bk6a03] {
        color: #dc3545;
    }

.pagination-wrapper[b-96u9bk6a03] {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.pagination-controls[b-96u9bk6a03] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-button[b-96u9bk6a03] {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .pagination-button:hover:not(:disabled)[b-96u9bk6a03] {
        color: #495057;
    }

    .pagination-button:disabled[b-96u9bk6a03] {
        color: #adb5bd;
        cursor: not-allowed;
    }

.pagination-info[b-96u9bk6a03] {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.current-page[b-96u9bk6a03],
.total-pages[b-96u9bk6a03] {
    font-weight: 600;
    color: #2c3e50;
}

.image-modal-overlay[b-96u9bk6a03] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.image-modal-dialog[b-96u9bk6a03] {
    width: 100%;
    max-width: 600px;
}

.image-modal-content[b-96u9bk6a03] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.image-modal-header[b-96u9bk6a03] {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-modal-body[b-96u9bk6a03] {
    padding: 20px;
    background-color: white;
}

.image-preview-wrapper[b-96u9bk6a03] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
}

.image-preview[b-96u9bk6a03] {
    max-width: 100%;
    max-height: 450px;
    border-radius: 6px;
    object-fit: contain;
}

.delete-modal-overlay[b-96u9bk6a03] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.delete-modal-dialog[b-96u9bk6a03] {
    width: 100%;
    max-width: 420px;
}

.delete-modal-content[b-96u9bk6a03] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-color: white;
}

.delete-modal-body[b-96u9bk6a03] {
    padding: 30px 25px;
}

.delete-confirmation-text[b-96u9bk6a03] {
    font-size: 16px;
    color: #495057;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.delete-modal-footer[b-96u9bk6a03] {
    border-top: 1px solid #dee2e6;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    background-color: #f8f9fa;
}

.cancel-button[b-96u9bk6a03],
.confirm-delete-button[b-96u9bk6a03] {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    min-width: 90px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cancel-button[b-96u9bk6a03] {
    color: #6c757d;
}

    .cancel-button:hover[b-96u9bk6a03] {
        color: #495057;
    }

.confirm-delete-button[b-96u9bk6a03] {
    color: #dc3545;
}

    .confirm-delete-button:hover[b-96u9bk6a03] {
        color: #c82333;
    }

@media (max-width: 768px) {
    .inventory-container[b-96u9bk6a03] {
        padding: 15px;
    }

    .inventory-filters .row[b-96u9bk6a03] {
        flex-direction: column;
        gap: 10px;
    }

    .inventory-filters .col-4[b-96u9bk6a03],
    .inventory-filters .col-3[b-96u9bk6a03] {
        max-width: 100%;
    }

    .table-wrapper[b-96u9bk6a03] {
        -webkit-overflow-scrolling: touch;
    }

    .inventory-table[b-96u9bk6a03] {
        font-size: 13px;
    }

    .table-header[b-96u9bk6a03],
    .table-cell[b-96u9bk6a03] {
        padding: 8px;
    }

    .image-modal-dialog[b-96u9bk6a03],
    .delete-modal-dialog[b-96u9bk6a03] {
        max-width: 95%;
    }

    .image-preview[b-96u9bk6a03] {
        max-height: 350px;
    }
}
/* _content/WoodShop/Components/Pages/Shop/SupplierHistory.razor.rz.scp.css */
/* =============================== */
/* PAGE TITLE                      */
/* =============================== */

.supplier-page-title[b-mo5w4t6lag] {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 18px;
}

/* =============================== */
/* STATUS TEXT                     */
/* =============================== */

.no-history-text[b-mo5w4t6lag] {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

/* =============================== */
/* SUPPLIER LIST                   */
/* =============================== */

.supplier-list-container[b-mo5w4t6lag] {
    margin-top: 15px;
}

.supplier-list[b-mo5w4t6lag] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supplier-list-item[b-mo5w4t6lag] {
    margin-bottom: 12px;
}

    .supplier-list-item.selected-supplier[b-mo5w4t6lag] {
        font-weight: 600;
        color: #1e90ff;
    }

.supplier-list-item[b-mo5w4t6lag] {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #4dabf7;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .supplier-list-item:hover[b-mo5w4t6lag] {
        background: rgba(255, 255, 255, 0.95);
        border-color: #1e90ff;
    }

/* =============================== */
/* MONTH DROPDOWN                  */
/* =============================== */

.month-selector-container[b-mo5w4t6lag] {
    margin-top: 15px;
    margin-bottom: 12px;
}

.month-selector-label[b-mo5w4t6lag] {
    font-size: 0.95rem;
    color: #333;
    margin-right: 8px;
}

.month-selector-dropdown[b-mo5w4t6lag] {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    cursor: pointer;
}

/* =============================== */
/* PURCHASE TABLE                  */
/* =============================== */

.purchase-table-container[b-mo5w4t6lag] {
    overflow-x: auto;
    margin-top: 12px;
}

.purchase-table[b-mo5w4t6lag] {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

    .purchase-table th[b-mo5w4t6lag] {
        padding: 12px;
        border: 1px solid #ddd;
        background: #f4f4f4 !important;
        font-weight: 600;
        text-align: left;
    }

    .purchase-table td[b-mo5w4t6lag] {
        padding: 12px;
        border: 1px solid #ddd;
        background: transparent !important;
        text-align: left;
    }

    .purchase-table tr:nth-child(even)[b-mo5w4t6lag],
    .purchase-table tr:nth-child(odd)[b-mo5w4t6lag] {
        background: transparent !important;
    }

    .purchase-table tr:hover[b-mo5w4t6lag] {
        background: transparent !important;
    }

td.amount[b-mo5w4t6lag] {
    font-weight: 600;
    color: #2e7d32;
}

/* =============================== */
/* RESPONSIVE STYLING              */
/* =============================== */

@media (max-width: 768px) {
    .supplier-page-title[b-mo5w4t6lag] {
        font-size: 1.4rem;
    }

    .supplier-list-item[b-mo5w4t6lag] {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .month-selector-dropdown[b-mo5w4t6lag] {
        font-size: 0.9rem;
    }

    .purchase-table th[b-mo5w4t6lag],
    .purchase-table td[b-mo5w4t6lag] {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .supplier-page-title[b-mo5w4t6lag] {
        font-size: 1.2rem;
    }

    .supplier-list-item[b-mo5w4t6lag] {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .month-selector-dropdown[b-mo5w4t6lag] {
        font-size: 0.85rem;
    }

    .purchase-table th[b-mo5w4t6lag],
    .purchase-table td[b-mo5w4t6lag] {
        padding: 6px;
        font-size: 0.85rem;
    }
}
/* _content/WoodShop/Components/Pages/Welcome.razor.rz.scp.css */
/* Full viewport container */
.home-container[b-jx7s432jk0] {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    min-height: 100%; /* take full screen height */
    width: 100%;
    overflow: hidden;
}

/* Lottie wrapper */
#lottie-container[b-jx7s432jk0] {
    width: 320px; /* safe default size */
    max-width: 90vw; /* responsive on mobile */
    height: 320px;
    max-height: 90vw;
    margin: auto;
}

/* Tablet and up */
@media (min-width: 768px) {
    #lottie-container[b-jx7s432jk0] {
        width: 420px;
        height: 420px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    #lottie-container[b-jx7s432jk0] {
        width: 500px;
        height: 500px;
    }
}
