@import '_content/Vezir.Flux.Material/Vezir.Flux.Material.evead8sjbz.bundle.scp.css';
@import '_content/Vezir.Flux/Vezir.Flux.o8dsx0x1so.bundle.scp.css';

/* /Components/SideNav.razor.rz.scp.css */
/* ============================================
   KONTROL SIDEBAR COMPONENT
   ============================================ */

.kontrol-sidebar[b-qythgcmjws] {
    width: 280px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #064E3B;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar Header */
.sidebar-header[b-qythgcmjws] {
    height: 56px;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.sidebar-logo[b-qythgcmjws] {
    width: 40px;
    height: 40px;
}

.sidebar-title[b-qythgcmjws] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Sidebar Menu */
.sidebar-menu[b-qythgcmjws] {
    flex: 1;
    overflow-y: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .kontrol-sidebar[b-qythgcmjws] {
        width: 70px;
    }

    .sidebar-header[b-qythgcmjws] {
        padding: 1.5rem 0.75rem;
        justify-content: center;
    }

    .sidebar-title[b-qythgcmjws] {
        display: none;
    }
}

@media (max-width: 768px) {
    .kontrol-sidebar[b-qythgcmjws] {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .kontrol-sidebar.open[b-qythgcmjws] {
        transform: translateX(0);
    }
}

/* ============================================
   SCROLLBAR STYLING (SIDEBAR)
   ============================================ */

.sidebar-menu[b-qythgcmjws]::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu[b-qythgcmjws]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-menu[b-qythgcmjws]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar-menu[b-qythgcmjws]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* /Components/TopBar.razor.rz.scp.css */
/* ============================================
   KONTROL TOPBAR COMPONENT
   ============================================ */

.kontrol-topbar[b-8e7jjb2c0u] {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 900;
    gap: 1rem;
}

/* ============================================
   LEFT GROUP: REFRESH + SEARCH + PAGE TITLE
   ============================================ */

.topbar-left[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.topbar-refresh[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.topbar-refresh:hover[b-8e7jjb2c0u] {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.topbar-refresh:active[b-8e7jjb2c0u] {
    transform: scale(0.95);
}

.topbar-refresh.refreshing[b-8e7jjb2c0u] {
    color: #3b82f6;
    pointer-events: none;
}

.topbar-refresh.refreshing :deep svg[b-8e7jjb2c0u] {
    animation: topbarSpin-b-8e7jjb2c0u 0.8s linear infinite;
}

@keyframes topbarSpin-b-8e7jjb2c0u {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.topbar-page-title[b-8e7jjb2c0u] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   SEARCH
   ============================================ */

.topbar-search-wrapper[b-8e7jjb2c0u] {
    position: relative;
    flex: 1;
    max-width: 320px;
}

.topbar-search[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.4375rem 0.75rem;
    width: 100%;
    transition: all 0.2s ease;
    color: #9ca3af;
}

.topbar-search:focus-within[b-8e7jjb2c0u] {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
    color: #6b7280;
}

.topbar-search-input[b-8e7jjb2c0u] {
    flex: 1;
    border: none !important;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: #1f2937;
}

.topbar-search-input[b-8e7jjb2c0u]::placeholder {
    color: #9ca3af;
}

/* ============================================
   RIGHT ACTIONS
   ============================================ */

.topbar-actions[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   PAGE ACTION BUTTONS (Add / Edit / Delete)
   ============================================ */

.topbar-page-actions[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.topbar-actions-sep[b-8e7jjb2c0u] {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* Add button: slightly larger than edit/delete */
:deep(.topbar-add-btn)[b-8e7jjb2c0u] {
    padding: 0.4375rem 0.75rem !important;
}

/* Delete button: neutral by default, red on hover */
:deep(.topbar-delete-btn)[b-8e7jjb2c0u] {
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease !important;
}

:deep(.topbar-delete-btn:not(:disabled):hover)[b-8e7jjb2c0u] {
    color: #dc2626 !important;
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

/* ============================================
   USER PROFILE TRIGGER
   ============================================ */

.topbar-profile[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.15s ease;
    user-select: none;
}

.topbar-profile:hover[b-8e7jjb2c0u] {
    background: #f3f4f6;
}

.topbar-avatar[b-8e7jjb2c0u] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.topbar-username[b-8e7jjb2c0u] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.topbar-profile :deep svg[b-8e7jjb2c0u] {
    color: #9ca3af;
    width: 14px;
    height: 14px;
}

/* ============================================
   PROFILE DROPDOWN
   ============================================ */

.profile-backdrop[b-8e7jjb2c0u] {
    position: fixed;
    inset: 0;
    z-index: 99;
}

.profile-dropdown[b-8e7jjb2c0u] {
    position: absolute;
    top: calc(100% - 4px);
    right: 1.5rem;
    width: 240px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
    overflow: hidden;
    animation: dropdownFadeIn-b-8e7jjb2c0u 0.15s ease-out;
}

@keyframes dropdownFadeIn-b-8e7jjb2c0u {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-dropdown-header[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
}

.profile-dropdown-avatar[b-8e7jjb2c0u] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    color: white;
    flex-shrink: 0;
}

.profile-dropdown-info[b-8e7jjb2c0u] {
    flex: 1;
    min-width: 0;
}

.profile-dropdown-name[b-8e7jjb2c0u] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-dropdown-role[b-8e7jjb2c0u] {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.profile-dropdown-divider[b-8e7jjb2c0u] {
    height: 1px;
    background: #f3f4f6;
}

.profile-dropdown-item[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: none;
    border: none;
    color: #4b5563;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.profile-dropdown-item:hover[b-8e7jjb2c0u] {
    background: #f9fafb;
}

.profile-dropdown-item.logout-item:hover[b-8e7jjb2c0u] {
    background: #fef2f2;
    color: #dc2626;
}

/* ============================================
   GLOBAL SEARCH DROPDOWN
   ============================================ */

.search-backdrop[b-8e7jjb2c0u] {
    position: fixed;
    inset: 0;
    z-index: 910;
    background: transparent;
    cursor: default;
}

.search-dropdown[b-8e7jjb2c0u] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    min-width: 260px;
    z-index: 920;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.search-dropdown-item[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.15s ease;
    text-align: left;
}

.search-dropdown-item:last-child[b-8e7jjb2c0u] {
    border-bottom: none;
}

.search-dropdown-item:hover[b-8e7jjb2c0u] {
    background: #f9fafb;
}

.search-item-icon[b-8e7jjb2c0u] {
    color: #10b981;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.search-item-label[b-8e7jjb2c0u] {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.search-item-count[b-8e7jjb2c0u] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #10b981;
    background: #ecfdf5;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.search-dropdown-item :deep .flux-icon[b-8e7jjb2c0u] {
    color: #d1d5db;
}

.search-dropdown-item .search-item-icon :deep .flux-icon[b-8e7jjb2c0u] {
    color: #10b981;
}

.search-clear-btn[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    color: #9ca3af;
    flex-shrink: 0;
    transition: color 0.15s ease;
    line-height: 1;
}

.search-clear-btn:hover[b-8e7jjb2c0u] {
    color: #6b7280;
}

.search-icon-spinner[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    color: #10b981;
    flex-shrink: 0;
}

.search-icon-spinner :deep svg[b-8e7jjb2c0u] {
    animation: searchSpin-b-8e7jjb2c0u 0.8s linear infinite;
}

@keyframes searchSpin-b-8e7jjb2c0u {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   LANGUAGE SWITCHER OVERRIDES
   ============================================ */

.topbar-actions[b-8e7jjb2c0u]  .flux-select-adv-trigger {
    background: #f3f4f6;
    border-color: transparent;
    min-height: 34px;
    border-radius: 0.5rem;
}

.topbar-actions[b-8e7jjb2c0u]  .flux-select-adv-trigger:hover {
    background: #e5e7eb;
    border-color: transparent;
}

/* ============================================
   ADMIN TOOLS BUTTON
   ============================================ */

.topbar-admin-tools[b-8e7jjb2c0u] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.topbar-admin-tools:hover[b-8e7jjb2c0u] {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

.topbar-admin-tools:active[b-8e7jjb2c0u] {
    transform: scale(0.98);
}

.topbar-admin-tools :deep svg[b-8e7jjb2c0u] {
    width: 18px;
    height: 18px;
    animation: none;
    transition: transform 0.3s ease;
}

.topbar-admin-tools:hover :deep svg[b-8e7jjb2c0u] {
    transform: rotate(45deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .kontrol-topbar[b-8e7jjb2c0u] {
        left: 70px;
    }

    .topbar-username[b-8e7jjb2c0u] {
        display: none;
    }

    .topbar-page-title[b-8e7jjb2c0u] {
        display: none;
    }
}

@media (max-width: 768px) {
    .kontrol-topbar[b-8e7jjb2c0u] {
        left: 0;
    }

    .topbar-search[b-8e7jjb2c0u] {
        max-width: 160px;
    }

    .topbar-username[b-8e7jjb2c0u],
    .topbar-page-title[b-8e7jjb2c0u] {
        display: none;
    }
}
/* /Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-1p6c7b7ane] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #10B981 100%);
    position: relative;
    overflow: hidden;
}

.login-layout[b-1p6c7b7ane]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground-b-1p6c7b7ane 20s linear infinite;
}

@keyframes moveBackground-b-1p6c7b7ane {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   KONTROL LAYOUT - MAIN STRUCTURE
   ============================================ */

.kontrol-layout[b-7a4j2towdi] {
    display: flex;
    min-height: 100vh;
    background-color: var(--vf-dark);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.kontrol-content[b-7a4j2towdi] {
    flex: 1;
    margin-left: 280px;
    margin-top: 56px;
    background-color: #F9FAFB;
    height: calc(100vh - 56px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .kontrol-content[b-7a4j2towdi] {
        margin-left: 70px;
    }
}

@media (max-width: 768px) {
    .kontrol-content[b-7a4j2towdi] {
        margin-left: 0;
    }
}
/* /Pages/Blog.razor.rz.scp.css */
.product-thumbnail[b-pt8cpygoo6] {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--flux-radius-md);
}

.img-placeholder[b-pt8cpygoo6] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--flux-bg-tertiary);
    border-radius: var(--flux-radius-md);
}

.product-name[b-pt8cpygoo6] {
    font-weight: 600;
}
/* /Pages/BusinessPartners.razor.rz.scp.css */
.inactive[b-spl64zkjte] {
    opacity: 0.6;
}

.email-cell[b-spl64zkjte] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
/* /Pages/Home.razor.rz.scp.css */
/* ============================================
   DASHBOARD - MAIN GRID LAYOUT
   Inspired by modern admin panel design
   ============================================ */

.dashboard-grid[b-vdl9njqypt] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.dashboard-main[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-refresh-indicator[b-vdl9njqypt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.dashboard-side[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================
   TOP STATS ROW (Highlight + 2 Stat Cards)
   ============================================ */

.dashboard-stats-row[b-vdl9njqypt] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   HIGHLIGHT CARD (Green "Update" card)
   ============================================ */

.highlight-card[b-vdl9njqypt] {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #047857 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}


.highlight-card-body[b-vdl9njqypt] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.highlight-card-subtitle[b-vdl9njqypt] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.highlight-card-title[b-vdl9njqypt] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.highlight-card-link[b-vdl9njqypt] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    font-weight: 500;
}

.highlight-card-link:hover[b-vdl9njqypt] {
    color: #fff;
}

/* ============================================
   WELCOME STATE
   ============================================ */

.welcome-content[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.welcome-title[b-vdl9njqypt] {
    margin: 0;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
}

.welcome-description[b-vdl9njqypt] {
    margin: 0;
    color: #64748b;
    max-width: 400px;
    text-align: center;
    line-height: 1.5;
}

.stats-card-wrapper[b-vdl9njqypt] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card-wrapper.home[b-vdl9njqypt] {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* ============================================
   ACTIVITY LIST (Transaction-like section)
   ============================================ */

.activity-list[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
}

.activity-item[b-vdl9njqypt] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.activity-item:last-child[b-vdl9njqypt] {
    border-bottom: none;
}

.activity-item:hover[b-vdl9njqypt] {
    background: #f8fafc;
}

.activity-icon[b-vdl9njqypt] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.products[b-vdl9njqypt] {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.activity-icon.orders[b-vdl9njqypt] {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.activity-icon.customers[b-vdl9njqypt] {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.activity-icon.categories[b-vdl9njqypt] {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.activity-icon.lowstock[b-vdl9njqypt] {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.activity-info[b-vdl9njqypt] {
    flex: 1;
    min-width: 0;
}

.activity-name[b-vdl9njqypt] {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
}

.activity-meta[b-vdl9njqypt] {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.activity-value[b-vdl9njqypt] {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    min-width: 40px;
    text-align: right;
}

/* ============================================
   REVENUE OVERVIEW (Bar chart section)
   ============================================ */

.revenue-overview[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.revenue-main-value[b-vdl9njqypt] {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.revenue-currency[b-vdl9njqypt] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

.revenue-amount[b-vdl9njqypt] {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.revenue-bars[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revenue-bar-item[b-vdl9njqypt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.revenue-bar-label[b-vdl9njqypt] {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    min-width: 80px;
}

.revenue-bar-track[b-vdl9njqypt] {
    flex: 1;
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
}

.revenue-bar-fill[b-vdl9njqypt] {
    height: 100%;
    border-radius: 5px;
    transition: width 0.6s ease;
}

.revenue-bar-fill.products[b-vdl9njqypt] {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.revenue-bar-fill.orders[b-vdl9njqypt] {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.revenue-bar-fill.customers[b-vdl9njqypt] {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.revenue-bar-value[b-vdl9njqypt] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    min-width: 36px;
    text-align: right;
}

/* ============================================
   SIDE PANEL - OVERVIEW CARD
   ============================================ */

.overview-stats[b-vdl9njqypt] {
    display: flex;
    justify-content: space-around;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.overview-stat-item[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overview-stat-circle[b-vdl9njqypt] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-stat-number[b-vdl9njqypt] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #064E3B;
}

.overview-stat-label[b-vdl9njqypt] {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.overview-detail-list[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.overview-detail-item[b-vdl9njqypt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: #475569;
}

.overview-detail-dot[b-vdl9njqypt] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.overview-detail-dot.published[b-vdl9njqypt] {
    background: #10B981;
}

.overview-detail-dot.pending[b-vdl9njqypt] {
    background: #F59E0B;
}

.overview-detail-dot.lowstock[b-vdl9njqypt] {
    background: #EF4444;
}

.overview-detail-value[b-vdl9njqypt] {
    margin-left: auto;
    font-weight: 600;
    color: #1e293b;
}

/* ============================================
   QUICK ACTIONS (Side panel vertical list)
   ============================================ */

.quick-actions-list[b-vdl9njqypt] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-actions-list[b-vdl9njqypt]  .material-button,
.quick-actions-list[b-vdl9njqypt]  .flux-button {
    width: 100%;
    justify-content: flex-start;
}

/* ============================================
   PROMOTIONAL CARD (Dark green CTA)
   ============================================ */

.promo-card[b-vdl9njqypt] {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-title[b-vdl9njqypt] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.promo-description[b-vdl9njqypt] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.promo-card[b-vdl9njqypt]  .material-button,
.promo-card[b-vdl9njqypt]  .flux-button {
    background: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
    width: 100%;
}

.promo-card[b-vdl9njqypt]  .material-button:hover,
.promo-card[b-vdl9njqypt]  .flux-button:hover {
    background: #059669 !important;
    border-color: #059669 !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1280px) {
    .dashboard-grid[b-vdl9njqypt] {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 1024px) {
    .dashboard-grid[b-vdl9njqypt] {
        grid-template-columns: 1fr;
    }

    .dashboard-stats-row[b-vdl9njqypt] {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-card[b-vdl9njqypt] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .dashboard-stats-row[b-vdl9njqypt] {
        grid-template-columns: 1fr;
    }

    .highlight-card[b-vdl9njqypt] {
        grid-column: auto;
    }

    .overview-stats[b-vdl9njqypt] {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
/* /Pages/Integrations.Trendsoft.razor.rz.scp.css */
.integrations-grid[b-oq1bb71y6z] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[b-oq1bb71y6z] .integration-card {
    display: flex;
    flex-direction: column;
}

.integration-header[b-oq1bb71y6z] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.integration-icon[b-oq1bb71y6z] {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.integration-icon.enabled[b-oq1bb71y6z] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.integration-icon.disabled[b-oq1bb71y6z] {
    background: var(--surface-variant, #e5e7eb);
    color: var(--text-secondary, #6b7280);
}

.integration-info[b-oq1bb71y6z] {
    flex: 1;
}

.integration-info h4[b-oq1bb71y6z] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.integration-details[b-oq1bb71y6z] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.detail-row[b-oq1bb71y6z] {
    display: flex;
    justify-content: space-between;
}

.detail-row .label[b-oq1bb71y6z] {
    font-weight: 600;
    color: var(--text-primary, #111827);
}

.detail-row span:not(.label)[b-oq1bb71y6z] {
    color: var(--text-secondary, #6b7280);
}

.integration-config[b-oq1bb71y6z] {
    margin-bottom: 1rem;
}

.integration-config h5[b-oq1bb71y6z] {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #111827);
}

.config-json[b-oq1bb71y6z] {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    overflow-x: auto;
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    line-height: 1.5;
    white-space: pre;
}

.config-textarea[b-oq1bb71y6z] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
    resize: vertical;
}

/* TrendSoft Sync Section */
.sync-section[b-oq1bb71y6z] {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--surface-variant, #f9fafb);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color, #e5e7eb);
}

.sync-actions[b-oq1bb71y6z] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.sync-limit-row[b-oq1bb71y6z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.sync-limit-row label[b-oq1bb71y6z] {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-secondary);
}

.sync-limit-input[b-oq1bb71y6z] {
    max-width: 100px;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border-color, #d1d5db);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.sync-progress[b-oq1bb71y6z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.integration-actions[b-oq1bb71y6z] {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-bu2dkoredq] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-card[b-bu2dkoredq] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    animation: slideUp-b-bu2dkoredq 0.5s ease;
}

@keyframes slideUp-b-bu2dkoredq {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header[b-bu2dkoredq] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo[b-bu2dkoredq] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.login-header h1[b-bu2dkoredq] {
    font-size: 2rem;
    font-weight: 700;
    color: #064E3B;
    margin: 0 0 0.5rem 0;
    outline: none !important;
    user-select: none;
}

.login-header h1:focus[b-bu2dkoredq] {
    outline: none !important;
    box-shadow: none !important;
}

.login-subtitle[b-bu2dkoredq] {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
}

.login-form[b-bu2dkoredq] {
    margin-bottom: 1.5rem;
}

.login-error[b-bu2dkoredq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    border-radius: 0.5rem;
    color: #991B1B;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-group[b-bu2dkoredq] {
    margin-bottom: 1.5rem;
}

.form-group label[b-bu2dkoredq] {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Custom Input Styles - LIGHT THEME */
[b-bu2dkoredq] .login-input,
[b-bu2dkoredq] .login-input input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    background: #FFFFFF !important;
    color: #111827 !important;
    transition: all 0.2s;
}

[b-bu2dkoredq] .login-input input::placeholder {
    color: #9CA3AF;
}

[b-bu2dkoredq] .login-input:focus,
[b-bu2dkoredq] .login-input input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-actions[b-bu2dkoredq] {
    margin-top: 2rem;
}

/* Custom Button Styles - GREEN PRIMARY */
[b-bu2dkoredq] .login-button,
[b-bu2dkoredq] .login-button button {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.2s;
}

[b-bu2dkoredq] .login-button:hover,
[b-bu2dkoredq] .login-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

[b-bu2dkoredq] .login-button:active,
[b-bu2dkoredq] .login-button button:active {
    transform: translateY(0);
}

[b-bu2dkoredq] .login-button:disabled,
[b-bu2dkoredq] .login-button button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner[b-bu2dkoredq] {
    animation: spin-b-bu2dkoredq 1s linear infinite;
}

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

.login-footer[b-bu2dkoredq] {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.demo-info[b-bu2dkoredq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: #F3F4F6;
    border-radius: 0.5rem;
}

@media (max-width: 640px) {
    .login-container[b-bu2dkoredq] {
        padding: 1rem;
    }

    .login-card[b-bu2dkoredq] {
        padding: 2rem 1.5rem;
    }

    .login-header h1[b-bu2dkoredq] {
        font-size: 1.5rem;
    }
}

/* ==========================================
   FLOATING LANGUAGE SWITCHER - TOP RIGHT
   ========================================== */

.floating-language-switcher[b-bu2dkoredq] {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: fadeInDown-b-bu2dkoredq 0.5s ease;
}

/* Style the trigger button - white glassmorphism effect */
[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-trigger {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #374151 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    min-width: 140px;
}

[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-trigger:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: #10B981 !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

/* Arrow icon */
[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-arrow {
    color: #10B981;
}

/* Language selected text */
[b-bu2dkoredq] .floating-language-switcher .language-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
}

/* POPOVER - Light theme with green accent */
[b-bu2dkoredq] .floating-language-switcher .flux-popover {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0.5rem;
    min-width: 160px;
}

/* Options in dropdown */
[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-option {
    padding: 0.625rem 1rem;
    color: #374151;
    transition: all 0.15s ease;
}

[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-option:hover {
    background: #F0FDF4 !important;
    color: #059669;
}

[b-bu2dkoredq] .floating-language-switcher .flux-select-adv-option.selected {
    background: #10B981 !important;
    color: white !important;
}

[b-bu2dkoredq] .floating-language-switcher .language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fade in down animation */
@keyframes fadeInDown-b-bu2dkoredq {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - mobile positioning */
@media (max-width: 640px) {
    .floating-language-switcher[b-bu2dkoredq] {
        top: 1rem;
        right: 1rem;
    }
    
    [b-bu2dkoredq] .floating-language-switcher .flux-select-adv-trigger {
        min-width: 120px;
        padding: 0.375rem 0.75rem;
    }
}



/* /Pages/Manufacturers.razor.rz.scp.css */
.manufacturer-cell[b-sp5mh5sj0v] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.manufacturer-logo[b-sp5mh5sj0v] {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: var(--flux-radius-md);
}

.img-placeholder[b-sp5mh5sj0v] {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--flux-bg-tertiary);
    border-radius: var(--flux-radius-md);
}
/* /Pages/Products.razor.rz.scp.css */
.product-thumbnail[b-6onk1ynblb] {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--flux-radius-md);
}

.img-placeholder[b-6onk1ynblb] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--flux-bg-tertiary);
    border-radius: var(--flux-radius-md);
}

.product-name[b-6onk1ynblb] {
    font-weight: 600;
}

.line-through[b-6onk1ynblb] {
    text-decoration: line-through;
}
/* /Pages/Reports.razor.rz.scp.css */
.period-selector[b-t3gupasu85] {
    display: flex;
    gap: 0.5rem;
}

.summary-grid[b-t3gupasu85] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

[b-t3gupasu85] .summary-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.summary-icon[b-t3gupasu85] {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon.revenue[b-t3gupasu85] {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.summary-icon.orders[b-t3gupasu85] {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.summary-icon.customers[b-t3gupasu85] {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.summary-icon.avg-order[b-t3gupasu85] {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.summary-content[b-t3gupasu85] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label[b-t3gupasu85] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value[b-t3gupasu85] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-change[b-t3gupasu85] {
    font-size: 0.75rem;
    font-weight: 500;
}

.summary-change.positive[b-t3gupasu85] { color: #10B981; }
.summary-change.negative[b-t3gupasu85] { color: #EF4444; }
.summary-change.neutral[b-t3gupasu85] { color: var(--text-secondary); }

.reports-grid[b-t3gupasu85] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.full-width[b-t3gupasu85] {
    grid-column: 1 / -1;
}

.card-title[b-t3gupasu85] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.top-list[b-t3gupasu85] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.top-item[b-t3gupasu85] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.rank[b-t3gupasu85] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-variant);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.item-info[b-t3gupasu85] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.item-name[b-t3gupasu85] {
    font-weight: 500;
    color: var(--text-primary);
}

.item-detail[b-t3gupasu85] {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.item-value[b-t3gupasu85] {
    font-weight: 600;
    color: var(--primary);
}

.no-data[b-t3gupasu85] {
    color: var(--text-secondary);
    text-align: center;
    padding: 2rem;
}

.data-table.compact[b-t3gupasu85] {
    font-size: 0.875rem;
}

.data-table.compact th[b-t3gupasu85],
.data-table.compact td[b-t3gupasu85] {
    padding: 0.625rem 0.75rem;
}

@media (max-width: 1200px) {
    .summary-grid[b-t3gupasu85] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .summary-grid[b-t3gupasu85] {
        grid-template-columns: 1fr;
    }
    
    .reports-grid[b-t3gupasu85] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Settings.razor.rz.scp.css */
.settings-grid[b-oslgtjq79y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.save-actions[b-oslgtjq79y] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.card-title[b-oslgtjq79y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.form-grid[b-oslgtjq79y] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flux-input[b-oslgtjq79y] {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: var(--surface);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.flux-input:focus[b-oslgtjq79y] {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.discount-block[b-oslgtjq79y] {
    border: 0;
    margin: 0;
    padding: 0;
}

.discount-block:disabled[b-oslgtjq79y] {
    opacity: 0.55;
}

.discount-toggle[b-oslgtjq79y] {
    align-items: center;
}

.discount-toggle input[type="checkbox"][b-oslgtjq79y] {
    margin: 0;
}

@media (max-width: 768px) {
    .settings-grid[b-oslgtjq79y] {
        grid-template-columns: 1fr;
    }
    
    .form-row[b-oslgtjq79y] {
        grid-template-columns: 1fr;
    }
}

.page-container[b-oslgtjq79y] {
    padding-bottom: 1rem;
}

/* /Pages/Users.razor.rz.scp.css */
.user-cell.inactive[b-3g7qyqdslm] {
    opacity: 0.6;
}

.roles-cell[b-3g7qyqdslm] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.last-login[b-3g7qyqdslm] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
/* /Pages/WebUsers.razor.rz.scp.css */
.user-info[b-1ks1mloy8z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar[b-1ks1mloy8z] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.loyalty-points[b-1ks1mloy8z] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pagination-container[b-1ks1mloy8z] {
    margin-top: 1rem;
}

/* /Views/Manufacturers/ManufacturerDeleteProductsView.razor.rz.scp.css */
.manufacturer-delete-products-modal[b-548ew2ytqe] {
    min-width: 760px;
}

.toolbar-row[b-548ew2ytqe] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.manufacturer-delete-products-modal .form-section + .form-section[b-548ew2ytqe] {
    margin-top: 0.75rem;
}

.table-wrap[b-548ew2ytqe] {
    max-height: 420px;
    overflow: auto;
    border: 1px solid var(--flux-border-color, #e5e7eb);
    border-radius: var(--flux-radius-md, 10px);
}

.simple-grid[b-548ew2ytqe] {
    width: 100%;
    border-collapse: collapse;
}

.simple-grid thead th[b-548ew2ytqe] {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff;
    color: var(--flux-text-primary, #111827);
    text-align: left;
    padding: 0.625rem 0.75rem;
    font-weight: 600;
    border-bottom: 1px solid var(--flux-border-color, #e5e7eb);
}

.simple-grid tbody td[b-548ew2ytqe] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--flux-border-color, #f1f5f9);
    vertical-align: middle;
}

.simple-grid tbody tr:hover[b-548ew2ytqe] {
    background: var(--flux-bg-tertiary, #f8fafc);
}

.row-checkbox-wrap[b-548ew2ytqe] {
    display: flex;
    align-items: center;
}
/* /Views/Orders/OrderEditView.razor.rz.scp.css */
.order-items-table[b-6p3zlow0ep] {
    width: 100%;
    border-collapse: collapse;
}

.order-master-section[b-6p3zlow0ep] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.order-details-section[b-6p3zlow0ep] {
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.order-items-table th[b-6p3zlow0ep],
.order-items-table td[b-6p3zlow0ep] {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.order-items-table tbody tr[b-6p3zlow0ep] {
    cursor: pointer;
}

.order-items-table tbody tr.is-selected[b-6p3zlow0ep] {
    background: rgba(59, 130, 246, 0.08);
}
/* /Views/Shared/ConfirmationView.razor.rz.scp.css */
.confirmation-dialog[b-gk2bde2xbc] {
    padding: 1rem;
}

.confirmation-message[b-gk2bde2xbc] {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.confirmation-actions[b-gk2bde2xbc] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn[b-gk2bde2xbc] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary[b-gk2bde2xbc] {
    background: var(--surface-secondary, #f0f0f0);
    border: 1px solid var(--border-color, #ddd);
    color: var(--text-primary);
}

.btn-secondary:hover[b-gk2bde2xbc] {
    background: var(--surface-hover, #e0e0e0);
}

.btn-danger[b-gk2bde2xbc] {
    background: var(--error-color, #dc3545);
    border: none;
    color: white;
}

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