/* _content/PakTurk/Components/Layout/MainLayout.razor.rz.scp.css */
/* ====== MAIN LAYOUT STRUCTURE ====== */
.main-layout[b-b73pqvmimh] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

/* ====== MOBILE HEADER (Hidden on Desktop by default) ====== */
.mobile-header[b-b73pqvmimh] {
    display: none; /* Hidden by default on desktop */
}

.app-title-mobile[b-b73pqvmimh] {
    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-b73pqvmimh] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.hamburger[b-b73pqvmimh] {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #004d8a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger[b-b73pqvmimh] {
    background-color: #002f5e;
}

/* ====== SIDEBAR OVERLAY (Mobile Only) ====== */
.sidebar-overlay[b-b73pqvmimh] {
    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-b73pqvmimh] {
        opacity: 1;
        pointer-events: all;
    }

/* ====== SIDEBAR ====== */
.sidebar[b-b73pqvmimh] {
    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-b73pqvmimh] {
    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-b73pqvmimh] {
    flex: 1;
    background: transparent;
    padding: 1.5rem;
    overflow-y: auto;
}

/* ====== CONTENT WRAPPER ====== */
.content-wrapper[b-b73pqvmimh] {
    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-b73pqvmimh] {
    animation: fadeIn-b-b73pqvmimh 0.6s ease-in-out;
}

@keyframes fadeIn-b-b73pqvmimh {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet View */
@media (max-width: 900px) {
    .sidebar[b-b73pqvmimh] {
        width: 25%;
        min-width: 180px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Show mobile header */
    .mobile-header[b-b73pqvmimh] {
        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-b73pqvmimh] {
        display: block;
    }

    /* Transform sidebar into mobile drawer */
    .sidebar[b-b73pqvmimh] {
        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-b73pqvmimh] {
            transform: translateX(0);
        }

    /* Hide desktop app title in sidebar on mobile */
    .app-title[b-b73pqvmimh] {
        display: none;
    }

    /* Adjust content area for mobile header */
    .content-area[b-b73pqvmimh] {
        width: 100%;
        padding-top: 75px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .content-wrapper[b-b73pqvmimh] {
        padding: 1.5rem;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .sidebar[b-b73pqvmimh] {
        width: 75%;
        min-width: unset;
        max-width: 280px;
    }

    .content-area[b-b73pqvmimh] {
        padding: 70px 0.75rem 0.75rem;
    }

    .content-wrapper[b-b73pqvmimh] {
        padding: 1rem;
    }

    .mobile-header[b-b73pqvmimh] {
        height: 55px;
    }

    .app-title-mobile[b-b73pqvmimh] {
        font-size: 1.3rem;
    }
}
/* _content/PakTurk/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-links[b-5kdv1ip2f6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

    /* Target NavLink components using ::deep */
    .nav-links[b-5kdv1ip2f6]  .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;
        display: block;
        letter-spacing: 0.01em;
        /* Smooth + springy motion */
        transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        /* Hover bounce */
        .nav-links[b-5kdv1ip2f6]  .nav-link:hover {
            background: rgba(0, 77, 138, 0.15);
            color: #002f5e;
            transform: translateX(6px) scale(1.02);
        }

        /* Active state with gentle pressed feel */
        .nav-links[b-5kdv1ip2f6]  .nav-link.active {
            background: rgba(0, 107, 183, 0.25);
            color: #002f5e;
            transform: translateX(4px) scale(1.015);
        }

/* ---------------- Dropdown ---------------- */

.dropdown-container[b-5kdv1ip2f6] {
    position: relative;
    width: 100%;
}

/* Dropdown Toggle Button */
.dropdown-toggle[b-5kdv1ip2f6] {
    width: 100%;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #004d8a;
    font-weight: 450;
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.01em;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .dropdown-toggle:hover[b-5kdv1ip2f6] {
        background: rgba(0, 77, 138, 0.15);
        color: #002f5e;
        transform: translateX(6px) scale(1.02);
    }

    .dropdown-toggle.open[b-5kdv1ip2f6] {
        background: rgba(0, 107, 183, 0.25);
        color: #002f5e;
        transform: translateX(4px) scale(1.015);
    }

/* Dropdown Arrow */
.dropdown-arrow[b-5kdv1ip2f6] {
    font-size: 0.7rem;
    margin-left: auto;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-toggle.open .dropdown-arrow[b-5kdv1ip2f6] {
    transform: rotate(180deg) scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu[b-5kdv1ip2f6] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-left: 1.2rem;
    margin-top: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

    .dropdown-menu.show[b-5kdv1ip2f6] {
        max-height: 500px;
        opacity: 1;
        margin-top: 0.5rem;
    }

    /* Dropdown Items */
    .dropdown-menu[b-5kdv1ip2f6]  .dropdown-item {
        font-size: 0.95rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Helvetica Neue', Arial, sans-serif;
        color: #004d8a;
        text-decoration: none;
        font-weight: 400;
        padding: 0.6rem 1rem;
        border-radius: 6px;
        display: block;
        letter-spacing: 0.01em;
        border-left: 2px solid rgba(0, 77, 138, 0.2);
        transition: background-color 0.35s ease, color 0.35s ease, border-left-color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .dropdown-menu[b-5kdv1ip2f6]  .dropdown-item:hover {
            background: rgba(0, 77, 138, 0.12);
            color: #002f5e;
            border-left-color: #004d8a;
            transform: translateX(6px) scale(1.02);
        }

        .dropdown-menu[b-5kdv1ip2f6]  .dropdown-item.active {
            background: rgba(0, 107, 183, 0.2);
            color: #002f5e;
            border-left-color: #002f5e;
            transform: translateX(4px) scale(1.015);
        }

/* ---------------- Mobile ---------------- */

@media (max-width: 768px) {
    .nav-links[b-5kdv1ip2f6] {
        gap: 0.5rem;
    }

        .nav-links[b-5kdv1ip2f6]  .nav-link {
            font-size: 1.1rem;
            padding: 0.8rem 1.2rem;
        }

    .dropdown-toggle[b-5kdv1ip2f6] {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }

    .dropdown-menu[b-5kdv1ip2f6]  .dropdown-item {
        font-size: 1rem;
        padding: 0.7rem 1.1rem;
    }

    .dropdown-menu[b-5kdv1ip2f6] {
        padding-left: 1rem;
    }
}
/* _content/PakTurk/Components/Pages/Shop/AddItem.razor.rz.scp.css */
/* ============================
   Base Container Styles
============================ */
.add-item-container[b-waqcg12yn4] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    max-width: 900px;
    margin: 10px auto 0 auto;
    padding: 10px 20px;
}

    .add-item-container h3[b-waqcg12yn4],
    .add-item-container h4[b-waqcg12yn4] {
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
/* ============================
   Step Container Styles
============================ */
.card-container[b-waqcg12yn4] {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
/* ============================
   Step Titles
============================ */
.step-title[b-waqcg12yn4] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a73e8;
}
/* ============================
   Grid Layout (3 fields per row)
============================ */
.form-row[b-waqcg12yn4] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
/* Wraps one field */
.form-field[b-waqcg12yn4] {
    display: flex;
    flex-direction: column;
}
/* ============================
   Labels
============================ */
.card-container label[b-waqcg12yn4] {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #222;
}
/* ============================
   Inputs + Dropdowns
============================ */
.custom-input[b-waqcg12yn4],
.custom-select[b-waqcg12yn4] {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #4dabf7;
    border-radius: 8px;
    color: #333;
    font-size: 0.9rem;
    padding: 6px 12px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

    .custom-input:focus[b-waqcg12yn4],
    .custom-select:focus[b-waqcg12yn4] {
        background: #fff;
        border-color: #1e90ff;
        outline: none;
    }
/* ============================
   Design Entry
============================ */
.design-entry[b-waqcg12yn4] {
    margin-bottom: 20px;
}
/* ============================
   Buttons (GLOBAL)
============================ */
.custom-btn[b-waqcg12yn4] {
    background: rgba(77, 171, 247, 0.9);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .custom-btn:hover[b-waqcg12yn4] {
        background: rgba(51, 154, 240, 0.9);
    }

    .custom-btn:disabled[b-waqcg12yn4] {
        background: rgba(0, 0, 0, 0.2);
        color: rgba(255, 255, 255, 0.6);
        cursor: not-allowed;
    }
/* ============================
   BUTTON ROW (FIXED GAP ISSUE)
============================ */
.buttons-row[b-waqcg12yn4] {
    display: flex;
    justify-content: flex-end;
    gap: 12px; /* 🔥 THIS FIXES TOUCHING */
    margin-top: 25px;
}
    /* Prevent full-width buttons inside button rows */
    .buttons-row .custom-btn[b-waqcg12yn4] {
        width: auto;
        min-width: 120px;
    }
/* ============================
   Special Buttons
============================ */
.btn-back[b-waqcg12yn4] {
    background: rgba(200, 200, 200, 0.9);
    color: #333;
}

    .btn-back:hover[b-waqcg12yn4] {
        background: rgba(170, 170, 170, 0.9);
    }

.btn-submit[b-waqcg12yn4] {
    font-weight: 600;
}
/* ============================
   Image Preview
============================ */
.preview-img[b-waqcg12yn4] {
    width: 150px;
    border-radius: 6px;
    margin-bottom: 15px;
}
/* ============================
   Alerts & Progress
============================ */
.alert-container[b-waqcg12yn4] {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(77, 171, 247, 0.15);
    border-radius: 6px;
    font-size: 0.85rem;
}

.progress-container[b-waqcg12yn4] {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar[b-waqcg12yn4] {
    height: 18px;
    background: rgba(77, 171, 247, 0.9);
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
}

/* ============================
   RESPONSIVE MEDIA QUERIES
============================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .form-row[b-waqcg12yn4] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .add-item-container[b-waqcg12yn4] {
        padding: 10px 15px;
    }
}

/* Mobile Landscape / Small Tablet (600px - 768px) */
@media (max-width: 768px) {
    .add-item-container[b-waqcg12yn4] {
        margin: 5px auto 0 auto;
        padding: 10px;
    }

    .card-container[b-waqcg12yn4] {
        padding: 12px;
    }

    .step-title[b-waqcg12yn4] {
        font-size: 1.1rem;
    }

    .buttons-row[b-waqcg12yn4] {
        flex-wrap: wrap;
        gap: 10px;
    }

        .buttons-row .custom-btn[b-waqcg12yn4] {
            min-width: 100px;
            font-size: 0.85rem;
            padding: 7px 15px;
        }
}

/* Mobile Portrait (below 600px) */
@media (max-width: 600px) {
    .form-row[b-waqcg12yn4] {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }

    .add-item-container[b-waqcg12yn4] {
        padding: 8px;
    }

    .card-container[b-waqcg12yn4] {
        padding: 10px;
        margin-bottom: 15px;
    }

    .step-title[b-waqcg12yn4] {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .card-container label[b-waqcg12yn4] {
        font-size: 0.85rem;
    }

    .custom-input[b-waqcg12yn4],
    .custom-select[b-waqcg12yn4] {
        font-size: 0.85rem;
        padding: 8px 10px;
    }

    .custom-btn[b-waqcg12yn4] {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .buttons-row[b-waqcg12yn4] {
        flex-direction: column;
        gap: 10px;
    }

        .buttons-row .custom-btn[b-waqcg12yn4] {
            width: 100%;
            min-width: unset;
        }

    .preview-img[b-waqcg12yn4] {
        width: 120px;
    }

    .alert-container[b-waqcg12yn4] {
        font-size: 0.8rem;
        padding: 7px 10px;
    }

    .progress-bar[b-waqcg12yn4] {
        font-size: 0.7rem;
        height: 16px;
    }
}

/* Small Mobile (below 400px) */
@media (max-width: 400px) {
    .add-item-container h3[b-waqcg12yn4],
    .add-item-container h4[b-waqcg12yn4] {
        font-size: 0.95rem;
    }

    .step-title[b-waqcg12yn4] {
        font-size: 0.95rem;
    }

    .preview-img[b-waqcg12yn4] {
        width: 100px;
    }
}
/* _content/PakTurk/Components/Pages/Shop/AddOrders.razor.rz.scp.css */
/* _content/PakTurk/Components/Pages/Shop/Dashboard.razor.rz.scp.css */
.dashboard-container[b-5xblyhuufs] {
    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-5xblyhuufs] {
    text-align: center;
    margin: 0.5rem 0;
}

.dashboard-title[b-5xblyhuufs] {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin: 0;
}

/* Loading state */
.loading-state[b-5xblyhuufs] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: #000;
    font-size: 1.2rem;
}

/* Dashboard content layout */
.dashboard-content[b-5xblyhuufs] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    overflow: visible !important;
}

/* Left section: stats cards */
.stats-section[b-5xblyhuufs] {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
}

.stats-grid[b-5xblyhuufs] {
    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-5xblyhuufs] {
    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-5xblyhuufs] {
        transform: translateY(-3px);
    }

.stat-card-header[b-5xblyhuufs] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-label[b-5xblyhuufs] {
    font-size: 1.1rem;
}

.stat-card-body[b-5xblyhuufs] {
    overflow: visible !important;
}

    .stat-card-body .stat-row[b-5xblyhuufs] {
        display: flex;
        justify-content: space-between;
        margin: 0.25rem 0;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

.stat-sublabel[b-5xblyhuufs] {
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.stat-value[b-5xblyhuufs] {
    font-weight: 600;
    color: #222;
    text-align: right;
    white-space: nowrap;
}

.stat-value-success[b-5xblyhuufs] {
    color: #16a34a;
}

.stat-value-danger[b-5xblyhuufs] {
    color: #dc2626;
}

/* Right section: chart card */
.chart-section[b-5xblyhuufs] {
    flex: 1 1 400px;
    max-width: 100%;
    min-width: 0;
    overflow: visible !important;
}

.chart-card[b-5xblyhuufs] {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
}

.chart-card-header[b-5xblyhuufs] {
    margin-bottom: 1rem;
}

.chart-title[b-5xblyhuufs] {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Chart empty state */
.chart-empty-state[b-5xblyhuufs] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.empty-state-text[b-5xblyhuufs] {
    color: #555;
    font-style: italic;
}

/* Chart wrapper */
.chart-wrapper[b-5xblyhuufs] {
    width: 100%;
    overflow: visible !important;
}

/* Force remove any scrollbars from all child elements */
.dashboard-container *[b-5xblyhuufs] {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .dashboard-container *[b-5xblyhuufs]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .dashboard-container[b-5xblyhuufs] {
        padding: 0.75rem;
        gap: 1.5rem;
    }

    .dashboard-title[b-5xblyhuufs] {
        font-size: 1.5rem;
    }

    .dashboard-content[b-5xblyhuufs] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stats-section[b-5xblyhuufs] {
        flex: 1 1 100%;
        width: 100%;
        max-width: 600px;
    }

    .chart-section[b-5xblyhuufs] {
        flex: 1 1 100%;
        width: 100%;
        max-width: 600px;
    }

    .stats-grid[b-5xblyhuufs] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-card[b-5xblyhuufs] {
        padding: 0.875rem;
    }

    .stat-label[b-5xblyhuufs] {
        font-size: 1rem;
    }

    .stat-value[b-5xblyhuufs] {
        font-size: 0.95rem;
    }

    .chart-card[b-5xblyhuufs] {
        padding: 0.875rem;
    }

    .chart-title[b-5xblyhuufs] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .dashboard-container[b-5xblyhuufs] {
        padding: 0.5rem;
        gap: 1rem;
    }

    .dashboard-title[b-5xblyhuufs] {
        font-size: 1.25rem;
    }

    .dashboard-content[b-5xblyhuufs] {
        gap: 1rem;
    }

    .stat-card[b-5xblyhuufs] {
        padding: 0.75rem;
    }

    .stat-label[b-5xblyhuufs] {
        font-size: 0.95rem;
    }

    .stat-sublabel[b-5xblyhuufs] {
        font-size: 0.875rem;
    }

    .stat-value[b-5xblyhuufs] {
        font-size: 0.875rem;
    }
}
/* _content/PakTurk/Components/Pages/Shop/Home.razor.rz.scp.css */
.greeting-card[b-qm5ze0ia85] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem; /* reduced top gap */
    font-family: 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    padding: 0 1rem; /* small horizontal padding for small screens */
}

.lottie-animation[b-qm5ze0ia85] {
    width: 250px; /* slightly smaller default width */
    height: 250px; /* slightly smaller default height */
    margin-bottom: 0.5rem; /* reduced bottom spacing */
}

.greeting-card h1[b-qm5ze0ia85] {
    font-size: 2rem; /* slightly smaller for better responsiveness */
    color: #1a202c;
    margin-bottom: 0.8rem; /* reduced spacing */
}

.greeting-card p[b-qm5ze0ia85] {
    font-size: 1rem; /* slightly smaller for mobile */
    color: #4a5568;
    margin-bottom: 0.5rem; /* reduced spacing */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lottie-animation[b-qm5ze0ia85] {
        width: 180px;
        height: 180px;
    }

    .greeting-card h1[b-qm5ze0ia85] {
        font-size: 1.6rem;
    }

    .greeting-card p[b-qm5ze0ia85] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lottie-animation[b-qm5ze0ia85] {
        width: 140px;
        height: 140px;
    }

    .greeting-card h1[b-qm5ze0ia85] {
        font-size: 1.4rem;
    }

    .greeting-card p[b-qm5ze0ia85] {
        font-size: 0.85rem;
    }
}
/* _content/PakTurk/Components/Pages/Shop/InventryView.razor.rz.scp.css */
/* ================= ROOT ================= */
.inventory-view-container[b-07m71ehtyj] {
    width: 100%;
    min-height: 100vh;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 2rem 1rem;
    padding-top: 6rem; /* Space for fixed search bar */
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ================= SEARCH SECTION ================= */
.search-section[b-07m71ehtyj] {
    background: white;
    padding: 1rem;
    margin-bottom: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-radius: 0;
}

.search-input-wrapper[b-07m71ehtyj] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-input[b-07m71ehtyj] {
    flex: 1;
    padding: 0.6rem 0.8rem;
    font-size: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
    background: white;
}

    .search-input:focus[b-07m71ehtyj] {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .search-input[b-07m71ehtyj]::placeholder {
        color: #94a3b8;
    }

.search-button[b-07m71ehtyj] {
    padding: 0.6rem 1.2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .search-button:hover[b-07m71ehtyj] {
        background: #2563eb;
    }

    .search-button:active[b-07m71ehtyj] {
        transform: scale(0.98);
    }

/* ================= STATE ================= */
.loading-container[b-07m71ehtyj],
.empty-state-container[b-07m71ehtyj] {
    padding: 3rem 1rem;
    text-align: center;
}

.loading-text[b-07m71ehtyj],
.empty-state-text[b-07m71ehtyj] {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* ================= TABLE CONTAINER ================= */
.table-container[b-07m71ehtyj] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    overflow-x: auto;
    margin-bottom: 2rem;
}

/* ================= TABLE ================= */
.inventory-table[b-07m71ehtyj] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    table-layout: auto;
    min-width: 600px; /* ensure table doesn't shrink too much */
}

.table-header[b-07m71ehtyj] {
    background: #f1f5f9;
}

.header-row[b-07m71ehtyj] {
    border-bottom: 2px solid #e2e8f0;
}

.header-cell[b-07m71ehtyj] {
    padding: 0.75rem 0.5rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.table-body .table-row[b-07m71ehtyj] {
    border-bottom: 1px solid #f1f5f9;
    background-color: white;
    transition: background-color 0.15s ease;
}

    .table-body .table-row:hover[b-07m71ehtyj] {
        background-color: #f8fafc;
    }

    .table-body .table-row:last-child[b-07m71ehtyj] {
        border-bottom: none;
    }

.table-cell[b-07m71ehtyj] {
    padding: 0.5rem 0.5rem;
    color: #334155;
    vertical-align: top;
    font-size: 0.813rem;
    white-space: nowrap;
}

/* ================= SPECIFIC CELLS ================= */
.cell-name[b-07m71ehtyj] {
    width: 20%;
    font-weight: 500;
    color: #1e293b;
}

.cell-sku[b-07m71ehtyj] {
    width: 10%;
    color: #64748b;
    font-family: 'Courier New', monospace;
    font-size: 0.813rem;
}

.cell-dimensions[b-07m71ehtyj] {
    width: 12%;
    color: #64748b;
}

.cell-purchase-price[b-07m71ehtyj],
.cell-selling-price[b-07m71ehtyj] {
    width: 12%;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.cell-designs[b-07m71ehtyj] {
    width: auto;
}

/* ================= DESIGNS ================= */
.designs-container[b-07m71ehtyj] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.design-item[b-07m71ehtyj] {
    font-size: 0.75rem;
    color: #475569;
    padding: 0.35rem 0.5rem;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    line-height: 1.4;
    white-space: nowrap;
}

/* ================= PAGINATION ================= */
.pagination-nav[b-07m71ehtyj] {
    padding: 1rem 0;
    background: transparent;
}

.pagination-list[b-07m71ehtyj] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination-item[b-07m71ehtyj] {
    display: inline-block;
}

.pagination-item-disabled[b-07m71ehtyj] {
    opacity: 0.5;
}

.pagination-item-active .pagination-button[b-07m71ehtyj] {
    background: #3b82f6;
    color: white;
    font-weight: 600;
}

.pagination-button[b-07m71ehtyj] {
    padding: 0.45rem 0.75rem;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #64748b;
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 2rem;
    text-align: center;
}

    .pagination-button:hover:not(:disabled)[b-07m71ehtyj] {
        background: #f8fafc;
        border-color: #94a3b8;
        color: #1e293b;
    }

    .pagination-button:disabled[b-07m71ehtyj] {
        cursor: not-allowed;
        opacity: 0.5;
    }

    .pagination-button:active:not(:disabled)[b-07m71ehtyj] {
        transform: scale(0.98);
    }

.prev-button[b-07m71ehtyj], .next-button[b-07m71ehtyj] {
    font-weight: 600;
}

.page-number-active[b-07m71ehtyj] {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

    .page-number-active:hover[b-07m71ehtyj] {
        background: #2563eb;
        border-color: #2563eb;
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
    .inventory-view-container[b-07m71ehtyj] {
        padding: 1rem 0.75rem;
        padding-top: 5rem; /* Adjusted for mobile */
    }

    .search-section[b-07m71ehtyj] {
        padding: 0.75rem 0;
    }

    .search-input-wrapper[b-07m71ehtyj] {
        gap: 0.4rem;
        padding: 0 0.75rem;
    }

    .search-input[b-07m71ehtyj] {
        padding: 0.5rem 0.6rem;
        font-size: 0.813rem;
    }

    .search-button[b-07m71ehtyj] {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
    }

    .table-container[b-07m71ehtyj] {
        overflow-x: auto;
    }

    .inventory-table[b-07m71ehtyj] {
        font-size: 0.75rem;
        min-width: 500px;
    }

    .header-cell[b-07m71ehtyj], .table-cell[b-07m71ehtyj] {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
    }

    .design-item[b-07m71ehtyj] {
        font-size: 0.7rem;
        padding: 0.3rem 0.45rem;
    }
}

/* Medium screens */
@media (min-width: 768px) {
    .header-cell[b-07m71ehtyj], .table-cell[b-07m71ehtyj] {
        padding: 1rem 1rem;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .search-section[b-07m71ehtyj] {
        padding: 1.5rem 0;
    }

    .inventory-view-container[b-07m71ehtyj] {
        padding: 2.5rem 1.5rem;
        padding-top: 7rem; /* Adjusted for larger screens */
    }
}

/* ================= PRINT ================= */
@media print {
    .search-section[b-07m71ehtyj],
    .pagination-nav[b-07m71ehtyj] {
        display: none;
    }

    .inventory-view-container[b-07m71ehtyj] {
        background: white;
        padding: 0;
    }

    .table-container[b-07m71ehtyj] {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .design-item[b-07m71ehtyj] {
        break-inside: avoid;
    }
}
/* _content/PakTurk/Components/Pages/Shop/POS.razor.rz.scp.css */
/* ==================================================
   General Page + Layout
==================================================*/
.invoice-container[b-82wulu27qe] {
    padding: 20px;
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #333;
}

.invoice-title[b-82wulu27qe] {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

/* ===================== CUSTOMER SECTION ===================== */
.customer-section[b-82wulu27qe] {
    margin-bottom: 25px;
    max-width: 420px;
}

.customer-label[b-82wulu27qe] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.customer-select[b-82wulu27qe] {
    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;
    box-sizing: border-box;
}

    .customer-select:focus[b-82wulu27qe] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

.new-customer-box[b-82wulu27qe] {
    margin-top: 10px;
    max-width: 420px;
}

.new-customer-input[b-82wulu27qe] {
    width: 100%;
    padding: 7px 10px;
    margin: 5px 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    box-sizing: border-box;
}

/* ===================== CATEGORY SECTION ===================== */
.category-section[b-82wulu27qe] {
    margin-bottom: 25px;
    max-width: 420px;
}

.category-label[b-82wulu27qe] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.category-select[b-82wulu27qe] {
    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;
    cursor: pointer;
    box-sizing: border-box;
}

    .category-select:focus[b-82wulu27qe] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

    .category-select:hover[b-82wulu27qe] {
        border-color: #999;
    }

/* ===================== SEARCH SECTION ===================== */
.search-section[b-82wulu27qe] {
    margin-bottom: 20px;
    max-width: 420px;
}

.search-input[b-82wulu27qe] {
    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;
    box-sizing: border-box;
}

    .search-input:focus[b-82wulu27qe] {
        background: #fff;
        border-color: #7a7a7a;
        outline: none;
    }

.search-suggestions[b-82wulu27qe] {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

.search-suggestion-item[b-82wulu27qe] {
    padding: 6px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
    transition: background 0.15s ease;
}

    .search-suggestion-item:hover[b-82wulu27qe],
    .search-suggestion-item.active[b-82wulu27qe] {
        background-color: #f3f4f6;
    }

.cart-empty-message[b-82wulu27qe] {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 221, 153, 0.4);
    border-left: 4px solid #ffb84d;
    font-weight: 500;
    border-radius: 5px;
}

/* Divider */
.section-divider[b-82wulu27qe] {
    margin: 20px 0;
}

/* ===================== CART SECTION ===================== */
.cart-section[b-82wulu27qe] {
    margin-top: 25px;
}

.cart-empty-message[b-82wulu27qe] {
    color: #777;
    font-style: italic;
    margin-top: 5px;
}

.cart-grand-total[b-82wulu27qe] {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
}

/* ===================== CART TABLE ===================== */
.cart-table-wrapper[b-82wulu27qe] {
    overflow-x: auto;
}

.cart-table[b-82wulu27qe] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.88rem;
}

    .cart-table th[b-82wulu27qe],
    .cart-table td[b-82wulu27qe] {
        padding: 7px;
        border: 1px solid #ddd;
        vertical-align: middle;
        white-space: nowrap;
    }

    .cart-table th[b-82wulu27qe] {
        background: #f2f2f2;
        font-weight: 600;
        color: #333;
    }

/* Column widths */
.cart-cell-name[b-82wulu27qe] {
    width: 45%;
}

.cart-cell-design[b-82wulu27qe],
.cart-cell-qty[b-82wulu27qe],
.cart-cell-discount[b-82wulu27qe],
.cart-cell-total[b-82wulu27qe],
.cart-cell-remove[b-82wulu27qe] {
    width: 15%;
}

.cart-btn-remove[b-82wulu27qe] {
    background: none;
    border: none;
    color: #777;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .cart-btn-remove:hover[b-82wulu27qe] {
        color: #333;
    }

/* ===================== Quantity Controls ===================== */
.qty-control-wrapper[b-82wulu27qe] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qty-btn[b-82wulu27qe] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .qty-btn:hover[b-82wulu27qe] {
        color: #333;
    }

    .qty-btn:disabled[b-82wulu27qe] {
        color: #ccc;
        cursor: not-allowed;
    }

.qty-display[b-82wulu27qe] {
    font-weight: 600;
}

/* ===================== Remove Button ===================== */
.cart-btn-remove[b-82wulu27qe],
.remove-button[b-82wulu27qe] {
    background: none !important;
    border: none !important;
    color: #777;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

    .cart-btn-remove:hover[b-82wulu27qe],
    .remove-button:hover[b-82wulu27qe] {
        color: #333;
    }

/* ===================== Action Buttons ===================== */
.btn-save[b-82wulu27qe] {
    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;
    margin-top: 15px;
}

    .btn-save:hover[b-82wulu27qe] {
        background: rgba(51, 154, 240, 0.95);
    }

/* ===================== CATEGORY MODAL ===================== */
.modal-backdrop[b-82wulu27qe] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn-b-82wulu27qe 0.2s ease;
}

@keyframes fadeIn-b-82wulu27qe {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.category-modal[b-82wulu27qe] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    animation: slideUp-b-82wulu27qe 0.3s ease;
}

@keyframes slideUp-b-82wulu27qe {
    from {
        transform: translate(-50%, -50%) translateY(20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
}

.modal-title[b-82wulu27qe] {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* ===================== CATEGORY MODAL TABLE ===================== */
.category-modal-table[b-82wulu27qe] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

    .category-modal-table th[b-82wulu27qe],
    .category-modal-table td[b-82wulu27qe] {
        padding: 10px;
        border: 1px solid #e0e0e0;
        text-align: left;
    }

    .category-modal-table th[b-82wulu27qe] {
        background: #f7f7f7;
        font-weight: 600;
        color: #333;
        position: sticky;
        top: 0;
    }

    .category-modal-table tbody tr[b-82wulu27qe] {
        transition: background-color 0.15s ease;
    }

        .category-modal-table tbody tr:hover[b-82wulu27qe] {
            background: #f9f9f9;
        }

/* ===================== CATEGORY ADD BUTTON ===================== */
.category-add-button[b-82wulu27qe] {
    background: rgba(77, 171, 247, 0.95);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .category-add-button:hover[b-82wulu27qe] {
        background: rgba(51, 154, 240, 0.95);
    }

/* ===================== CATEGORY MODAL CLOSE BUTTON ===================== */
.modal-close-btn[b-82wulu27qe] {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

    .modal-close-btn:hover[b-82wulu27qe] {
        color: #333;
    }

/* ===================== MODAL HEADER ===================== */
.modal-header[b-82wulu27qe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* ===================== MODAL BODY ===================== */
.modal-body[b-82wulu27qe] {
    width: 100%;
}

/* ===================== MODAL TABLE ===================== */
.modal-table[b-82wulu27qe] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

    .modal-table th[b-82wulu27qe],
    .modal-table td[b-82wulu27qe] {
        padding: 10px;
        border: 1px solid #e0e0e0;
        text-align: left;
    }

    .modal-table th[b-82wulu27qe] {
        background: #f7f7f7;
        font-weight: 600;
        color: #333;
    }

.modal-row[b-82wulu27qe] {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

    .modal-row:hover[b-82wulu27qe] {
        background-color: #f1f1f1;
    }

/* ===================== MODAL EMPTY TEXT ===================== */
.empty-text[b-82wulu27qe] {
    color: #777;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* ===================== CART DISCOUNT INPUT ===================== */
.cart-discount-input[b-82wulu27qe] {
    width: 70px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    box-sizing: border-box;
}

/* ===================== CART DESIGN DROPDOWN ===================== */
.cart-design-dropdown[b-82wulu27qe] {
    width: 120px;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    background: #fff;
}

/* ===================== CART ITEM TEXT ===================== */
.cart-item-title[b-82wulu27qe] {
    font-weight: 600;
}

.cart-item-price[b-82wulu27qe] {
    font-size: 0.8rem;
    color: #666;
}

.cart-total-price[b-82wulu27qe] {
    font-weight: 600;
    white-space: nowrap;
}

/* ===================== CONFIRM SALE BUTTON ===================== */
.btn-confirm-sale[b-82wulu27qe] {
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.2s ease;
}

    .btn-confirm-sale:hover[b-82wulu27qe] {
        background: rgba(33, 136, 56, 0.95);
    }

    .btn-confirm-sale:disabled[b-82wulu27qe] {
        background: #cfd4da;
        cursor: not-allowed;
    }

/* ===================== SCROLLBAR STYLING ===================== */
.category-modal[b-82wulu27qe]::-webkit-scrollbar {
    width: 8px;
}

.category-modal[b-82wulu27qe]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-modal[b-82wulu27qe]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

    .category-modal[b-82wulu27qe]::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .invoice-container[b-82wulu27qe] {
        padding: 15px;
    }

    .customer-section[b-82wulu27qe],
    .category-section[b-82wulu27qe],
    .search-section[b-82wulu27qe],
    .new-customer-box[b-82wulu27qe] {
        max-width: 100%;
    }

    .customer-select[b-82wulu27qe],
    .category-select[b-82wulu27qe] {
        width: 100%;
    }

    .cart-design-dropdown[b-82wulu27qe] {
        width: 100%;
    }

    .btn-save[b-82wulu27qe],
    .btn-confirm-sale[b-82wulu27qe] {
        width: 100%;
    }

    .category-modal[b-82wulu27qe] {
        width: 95%;
        padding: 20px;
        max-height: 85vh;
    }

    .modal-title[b-82wulu27qe] {
        font-size: 1.1rem;
    }

    .modal-table[b-82wulu27qe] {
        font-size: 0.8rem;
    }

        .modal-table th[b-82wulu27qe],
        .modal-table td[b-82wulu27qe] {
            padding: 8px 6px;
        }
}
/* _content/PakTurk/Components/Pages/Shop/SaleDetail.razor.rz.scp.css */
/* ============================ */
/* PAGE LAYOUT                  */
/* ============================ */
.sale-details-page[b-hxxjov5usy] {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.sale-details-content[b-hxxjov5usy] {
    margin-top: 1rem;
}

/* ============================ */
/* HEADER SECTION               */
/* ============================ */
.sale-details-header[b-hxxjov5usy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.page-title[b-hxxjov5usy] {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ============================ */
/* BACK BUTTON                  */
/* ============================ */
.btn-back[b-hxxjov5usy] {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: 0.2s ease;
}

    .btn-back:hover[b-hxxjov5usy] {
        color: #333;
        text-decoration: underline;
    }

/* ============================ */
/* LOADING / EMPTY STATES       */
/* ============================ */
.sale-loading p[b-hxxjov5usy],
.no-items p[b-hxxjov5usy] {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* ============================ */
/* SALE SUMMARY CARD            */
/* ============================ */
.sale-summary-card[b-hxxjov5usy] {
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sale-summary-row[b-hxxjov5usy] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0.4rem 0;
    font-size: 1rem;
}

.sale-summary-label[b-hxxjov5usy] {
    font-weight: 600;
    color: #555;
}

.sale-summary-value[b-hxxjov5usy] {
    color: #333;
    text-align: right;
}

.sale-summary-total[b-hxxjov5usy] {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

    .sale-summary-total .sale-summary-value[b-hxxjov5usy] {
        font-weight: 700;
        color: #2e7d32;
    }

/* ============================ */
/* ITEMS SECTION                */
/* ============================ */
.sale-items-section[b-hxxjov5usy] {
    margin-top: 1.5rem;
}

.section-title[b-hxxjov5usy] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* ============================ */
/* TABLE WRAPPER                */
/* ============================ */
.table-responsive[b-hxxjov5usy] {
    overflow-x: auto; /* horizontal scroll for mobile */
}

/* ============================ */
/* ITEMS TABLE                  */
/* ============================ */
.sale-items-table[b-hxxjov5usy] {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    min-width: 700px; /* table wider than mobile viewport */
    table-layout: auto; /* keep columns aligned with headers */
}

    .sale-items-table thead[b-hxxjov5usy] {
        background: #f2f2f2;
    }

    .sale-items-table th[b-hxxjov5usy],
    .sale-items-table td[b-hxxjov5usy] {
        padding: 0.85rem 0.9rem;
        color: #555;
        font-size: 0.95rem;
        text-align: left;
        vertical-align: middle;
    }

        .sale-items-table th:nth-child(3)[b-hxxjov5usy],
        .sale-items-table td:nth-child(3)[b-hxxjov5usy] {
            text-align: center; /* Qty column */
        }

        .sale-items-table th:nth-child(4)[b-hxxjov5usy],
        .sale-items-table td:nth-child(4)[b-hxxjov5usy],
        .sale-items-table th:nth-child(5)[b-hxxjov5usy],
        .sale-items-table td:nth-child(5)[b-hxxjov5usy],
        .sale-items-table th:nth-child(6)[b-hxxjov5usy],
        .sale-items-table td:nth-child(6)[b-hxxjov5usy] {
            text-align: right; /* numeric columns */
        }

.sale-item-row:nth-child(even)[b-hxxjov5usy] {
    background: #fafafa;
}

.sale-item-row:hover[b-hxxjov5usy] {
    background: #f7f7f7;
}

/* ============================ */
/* COLUMN CLASSES               */
/* ============================ */
.item-qty[b-hxxjov5usy] {
    text-align: center;
}

.item-price[b-hxxjov5usy],
.item-discount[b-hxxjov5usy],
.item-total[b-hxxjov5usy] {
    text-align: right;
    white-space: nowrap;
}

.item-total[b-hxxjov5usy] {
    font-weight: 600;
    color: #2e7d32;
}

/* ============================ */
/* RESPONSIVE DESIGN            */
/* ============================ */
@media (max-width: 600px) {
    .sale-details-header[b-hxxjov5usy] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .page-title[b-hxxjov5usy] {
        text-align: center;
        font-size: 1.6rem;
    }

    .sale-summary-card[b-hxxjov5usy] {
        padding: 1rem;
    }

    .sale-summary-row[b-hxxjov5usy] {
        flex-direction: column;
        gap: 0.2rem;
    }

    .sale-items-section[b-hxxjov5usy] {
        margin-top: 1rem;
    }

    .sale-items-table[b-hxxjov5usy] {
        min-width: 600px; /* ensures horizontal scroll */
        table-layout: auto;
    }

        .sale-items-table th[b-hxxjov5usy],
        .sale-items-table td[b-hxxjov5usy] {
            padding: 0.7rem 0.8rem;
            font-size: 0.9rem;
        }

    .btn-back[b-hxxjov5usy] {
        font-size: 0.9rem;
    }

    /* horizontal scroll container */
    .table-responsive[b-hxxjov5usy] {
        overflow-x: auto;
    }
}
/* _content/PakTurk/Components/Pages/Shop/Sales.razor.rz.scp.css */
/* ============================ */
/* PAGE CONTAINER               */
/* ============================ */

.sales-page-container[b-47ezdswefp] {
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* ============================ */
/* TOP ROW (FILTER + SEARCH)    */
/* ============================ */

.sales-top-row[b-47ezdswefp] {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.sales-filters[b-47ezdswefp] {
    display: flex;
    align-items: center;
}

.sales-month-input[b-47ezdswefp] {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.sales-search-container[b-47ezdswefp] {
    flex: 1;
    max-width: 320px;
}

.sales-search-input[b-47ezdswefp] {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* ============================ */
/* SALES TITLE & TOTAL          */
/* ============================ */

.sales-title[b-47ezdswefp] {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.sales-title-loading[b-47ezdswefp] {
    color: #777;
}

.sales-title-total[b-47ezdswefp] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sales-total-amount[b-47ezdswefp] {
    font-weight: 700;
    color: #007bff;
}

/* ============================ */
/* TEXT STATES                  */
/* ============================ */

.sales-loading[b-47ezdswefp],
.sales-empty[b-47ezdswefp] {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

/* ============================ */
/* TABLE WRAPPER                */
/* ============================ */

.sales-table-container[b-47ezdswefp] {
    overflow-x: auto;
    border-radius: 8px;
    padding: 0.5rem;
    background: #fafafa;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* ============================ */
/* TABLE STYLING                */
/* ============================ */

.sales-table[b-47ezdswefp] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.sales-table-head[b-47ezdswefp] {
    background: #f2f2f2;
}

.sales-table-header[b-47ezdswefp] {
    text-align: left;
    padding: 0.9rem;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
    white-space: nowrap;
}

.sales-table-row:nth-child(even)[b-47ezdswefp] {
    background: #fcfcfc;
}

.sales-table-row:hover[b-47ezdswefp] {
    background: #f7f7f7;
    transition: 0.2s ease-in-out;
}

.sales-table-cell[b-47ezdswefp] {
    padding: 0.85rem;
    font-size: 0.95rem;
    color: #555;
    white-space: nowrap;
}

/* ============================ */
/* DETAILS BUTTON               */
/* ============================ */

.sales-details-btn[b-47ezdswefp] {
    background: none;
    border: none;
    color: #666;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

    .sales-details-btn:hover[b-47ezdswefp] {
        color: #333;
        text-decoration: underline;
    }

/* ============================ */
/* RESPONSIVE DESIGN            */
/* ============================ */

@media (max-width: 768px) {

    .sales-top-row[b-47ezdswefp] {
        flex-direction: column;
        align-items: stretch;
    }

    .sales-search-container[b-47ezdswefp] {
        max-width: 100%;
    }

    .sales-title[b-47ezdswefp] {
        text-align: center;
        font-size: 1.6rem;
    }

    .sales-table[b-47ezdswefp] {
        min-width: 100%;
    }
}

@media (max-width: 480px) {

    .sales-page-container[b-47ezdswefp] {
        padding: 1.2rem;
    }

    .sales-title[b-47ezdswefp] {
        font-size: 1.4rem;
    }

    .sales-table-cell[b-47ezdswefp],
    .sales-table-header[b-47ezdswefp] {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .sales-details-btn[b-47ezdswefp] {
        font-size: 0.85rem;
    }
}
/* _content/PakTurk/Components/Pages/Shop/VendorMonthlyBills.razor.rz.scp.css */
/* =============================== */
/* PAGE TITLE                      */
/* =============================== */

.supplier-page-title[b-9pw0wcp8i5] {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 18px;
}

/* =============================== */
/* STATUS TEXT                     */
/* =============================== */

.no-history-text[b-9pw0wcp8i5] {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

/* =============================== */
/* SUPPLIER LIST                   */
/* =============================== */

.supplier-list-container[b-9pw0wcp8i5] {
    margin-top: 15px;
}

.supplier-list[b-9pw0wcp8i5] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supplier-list-item[b-9pw0wcp8i5] {
    margin-bottom: 12px;
}

    .supplier-list-item.selected-supplier[b-9pw0wcp8i5] {
        font-weight: 600;
        color: #1e90ff;
    }

.supplier-list-item[b-9pw0wcp8i5] {
    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-9pw0wcp8i5] {
        background: rgba(255, 255, 255, 0.95);
        border-color: #1e90ff;
    }

/* =============================== */
/* SUPPLIER HISTORY SECTION        */
/* =============================== */

.supplier-history-container[b-9pw0wcp8i5] {
    margin-top: 20px;
}

.supplier-history-title[b-9pw0wcp8i5] {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

/* =============================== */
/* MONTH SELECTOR (MATCHES FILTER) */
/* =============================== */

.filters-container[b-9pw0wcp8i5] {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
    margin-bottom: 14px;
}

    .filters-container label[b-9pw0wcp8i5] {
        font-size: 0.95rem;
        color: #333;
    }

    .filters-container input[type="month"][b-9pw0wcp8i5] {
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid #4dabf7;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 0.9rem;
        color: #333;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.2s ease;
    }

        .filters-container input[type="month"]:focus[b-9pw0wcp8i5] {
            background: rgba(255, 255, 255, 0.95);
            border-color: #1e90ff;
            outline: none;
        }

/* =============================== */
/* PURCHASE TABLE                  */
/* =============================== */

.purchase-table-container[b-9pw0wcp8i5] {
    overflow-x: auto;
    margin-top: 12px;
}

.purchase-table[b-9pw0wcp8i5] {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

    .purchase-table th[b-9pw0wcp8i5] {
        padding: 12px;
        border: 1px solid #ddd;
        background: #f4f4f4 !important;
        font-weight: 600;
        text-align: left;
        font-size: 0.9rem;
    }

    .purchase-table td[b-9pw0wcp8i5] {
        padding: 12px;
        border: 1px solid #ddd;
        background: transparent !important;
        text-align: left;
        font-size: 0.9rem;
    }

    .purchase-table tr:nth-child(even)[b-9pw0wcp8i5],
    .purchase-table tr:nth-child(odd)[b-9pw0wcp8i5],
    .purchase-table tr:hover[b-9pw0wcp8i5] {
        background: transparent !important;
    }

/* =============================== */
/* RESPONSIVE STYLING              */
/* =============================== */

@media (max-width: 768px) {
    .supplier-page-title[b-9pw0wcp8i5] {
        font-size: 1.4rem;
    }

    .supplier-list-item[b-9pw0wcp8i5] {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .purchase-table th[b-9pw0wcp8i5],
    .purchase-table td[b-9pw0wcp8i5] {
        padding: 8px;
        font-size: 0.9rem;
    }

    .filters-container[b-9pw0wcp8i5] {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .supplier-page-title[b-9pw0wcp8i5] {
        font-size: 1.2rem;
    }

    .supplier-list-item[b-9pw0wcp8i5] {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .purchase-table th[b-9pw0wcp8i5],
    .purchase-table td[b-9pw0wcp8i5] {
        padding: 6px;
        font-size: 0.85rem;
    }
}
