/* /Layout/AdminLayout.razor.rz.scp.css */
/* Admin Layout Styles */
.admin-layout[b-br88ts50g9] {
    display: flex;
    min-height: 100vh;
    background: #f4f6fa;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Sidebar Styles */
.admin-sidebar[b-br88ts50g9] {
    width: 280px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar.collapsed[b-br88ts50g9] {
    width: 88px;
}

.admin-sidebar.collapsed .logo-text[b-br88ts50g9],
.admin-sidebar.collapsed .nav-item span[b-br88ts50g9],
.admin-sidebar.collapsed .nav-section-title[b-br88ts50g9],
.admin-sidebar.collapsed .user-details[b-br88ts50g9],
.admin-sidebar.collapsed .logout-btn span[b-br88ts50g9] {
    display: none;
}

.admin-sidebar.collapsed .sidebar-header[b-br88ts50g9] {
    padding: 20px 10px;
}

.admin-sidebar.collapsed .nav-item[b-br88ts50g9] {
    justify-content: center;
    padding: 15px;
}

.admin-sidebar.collapsed .user-info[b-br88ts50g9] {
    justify-content: center;
}

.sidebar-header[b-br88ts50g9] {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-logo[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.logo-icon[b-br88ts50g9] {
    font-size: 28px;
}

.logo-text[b-br88ts50g9] {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text small[b-br88ts50g9] {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 1px;
}

.sidebar-toggle[b-br88ts50g9] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sidebar-toggle:hover[b-br88ts50g9] {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation Styles */
.sidebar-nav[b-br88ts50g9] {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.nav-section[b-br88ts50g9] {
    margin-bottom: 25px;
}

.nav-section-title[b-br88ts50g9] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #818cf8;
    padding: 0 25px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.nav-item[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 4px 12px;
    border-radius: 8px;
}

.nav-item:hover[b-br88ts50g9] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(4px);
}

.nav-item.active[b-br88ts50g9] {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    color: #818cf8;
    border-left-color: #6366f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-item i[b-br88ts50g9] {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.nav-item span[b-br88ts50g9] {
    font-size: 14px;
    font-weight: 500;
}

/* Sidebar Footer */
.sidebar-footer[b-br88ts50g9] {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-avatar[b-br88ts50g9] {
    font-size: 40px;
    color: #60a5fa;
}

.user-details[b-br88ts50g9] {
    flex: 1;
}

.user-name[b-br88ts50g9] {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.user-role[b-br88ts50g9] {
    font-size: 12px;
    color: #94a3b8;
}

.logout-btn[b-br88ts50g9] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(239, 68, 68, 0.15);
    border: none;
    border-radius: 8px;
    color: #f87171;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-btn:hover[b-br88ts50g9] {
    background: rgba(239, 68, 68, 0.25);
}

/* Main Content Area */
.admin-main[b-br88ts50g9] {
    flex: 1;
    margin-left: 280px;
    transition: all 0.3s ease;
}

.admin-sidebar.collapsed + .admin-main[b-br88ts50g9] {
    margin-left: 80px;
}

/* Top Header */
.admin-header[b-br88ts50g9] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-left[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn[b-br88ts50g9] {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-btn:hover[b-br88ts50g9] {
    background: #f1f5f9;
}

.breadcrumb[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a[b-br88ts50g9] {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover[b-br88ts50g9] {
    color: #3b82f6;
}

.breadcrumb .separator[b-br88ts50g9] {
    color: #cbd5e1;
}

.breadcrumb .current[b-br88ts50g9] {
    color: #1e293b;
    font-weight: 600;
}

.header-right[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search[b-br88ts50g9] {
    position: relative;
}

.header-search i[b-br88ts50g9] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.header-search input[b-br88ts50g9] {
    padding: 12px 15px 12px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 14px;
    width: 280px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.header-search input:focus[b-br88ts50g9] {
    outline: none;
    border-color: #818cf8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    width: 320px;
}

.header-notifications[b-br88ts50g9] {
    position: relative;
}

.notification-btn[b-br88ts50g9] {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.notification-btn:hover[b-br88ts50g9] {
    background: #f1f5f9;
}

.notification-badge[b-br88ts50g9] {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.header-user[b-br88ts50g9] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-user:hover[b-br88ts50g9] {
    background: #f1f5f9;
}

.user-avatar-small[b-br88ts50g9] {
    font-size: 32px;
    color: #60a5fa;
}

.user-name-small[b-br88ts50g9] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Page Content */
.admin-content[b-br88ts50g9] {
    padding: 30px;
    min-height: calc(100vh - 70px);
}

/* Mobile Overlay */
.mobile-overlay[b-br88ts50g9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .admin-sidebar[b-br88ts50g9] {
        transform: translateX(-100%);
    }

    .admin-sidebar.mobile-open[b-br88ts50g9] {
        transform: translateX(0);
    }

    .admin-main[b-br88ts50g9] {
        margin-left: 0;
    }

    .admin-sidebar.collapsed + .admin-main[b-br88ts50g9] {
        margin-left: 0;
    }

    .mobile-menu-btn[b-br88ts50g9] {
        display: block;
    }

    .mobile-overlay[b-br88ts50g9] {
        display: block;
    }

    .header-search input[b-br88ts50g9] {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .admin-header[b-br88ts50g9] {
        padding: 15px 20px;
    }

    .header-search[b-br88ts50g9] {
        display: none;
    }

    .header-user[b-br88ts50g9] {
        display: none;
    }

    .admin-content[b-br88ts50g9] {
        padding: 20px;
    }

    .breadcrumb[b-br88ts50g9] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .admin-header[b-br88ts50g9] {
        padding: 12px 15px;
    }

    .admin-content[b-br88ts50g9] {
        padding: 15px;
    }

    .breadcrumb[b-br88ts50g9] {
        display: none;
    }
}

/* Scrollbar Styles */
.sidebar-nav[b-br88ts50g9]::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav[b-br88ts50g9]::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav[b-br88ts50g9]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar-nav[b-br88ts50g9]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Animation */
@keyframes fadeIn-b-br88ts50g9 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-content[b-br88ts50g9] {
    animation: fadeIn-b-br88ts50g9 0.3s ease;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Scoped styles cleared - all styles moved to wwwroot/css/app.css */
/* /Layout/NavMenu.razor.rz.scp.css */
/* Scoped styles cleared - all styles moved to wwwroot/css/app.css */
/* /Pages/Account/OrderHistory.razor.rz.scp.css */
/* Order History Page - Premium Upgrade */

.page-title-bar[b-cvtdus5yki] {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.page-title-bar[b-cvtdus5yki]::after {
    content: '📦';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.1;
}

.page-title-bar h2[b-cvtdus5yki] {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
}

.page-title-bar h2 i[b-cvtdus5yki] {
    color: var(--primary);
}

.page-title-bar p[b-cvtdus5yki] {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* Filter Card */
.filter-card[b-cvtdus5yki] {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 10px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.nav-pills[b-cvtdus5yki] {
    background: var(--light-gray);
    padding: 6px;
    border-radius: 12px;
    display: inline-flex;
}

.nav-pills .nav-link[b-cvtdus5yki] {
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition);
}

.nav-pills .nav-link.active[b-cvtdus5yki] {
    background: white;
    color: var(--black);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-pills .nav-link:not(.active):hover[b-cvtdus5yki] {
    color: var(--black);
}

.nav-pills .nav-link .badge[b-cvtdus5yki] {
    background: var(--border) !important;
    color: var(--gray);
    margin-left: 6px;
    font-size: 11px;
}

.nav-pills .nav-link.active .badge[b-cvtdus5yki] {
    background: var(--primary) !important;
    color: var(--black);
}

/* Search Box */
.search-wrapper[b-cvtdus5yki] {
    position: relative;
}

.search-wrapper i[b-cvtdus5yki] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.form-control-search[b-cvtdus5yki] {
    padding-left: 45px;
    border-radius: 12px;
    height: 48px;
    border: 1px solid var(--border);
    font-weight: 500;
}

.form-control-search:focus[b-cvtdus5yki] {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

/* Order Card */
.order-card[b-cvtdus5yki] {
    background: white;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover[b-cvtdus5yki] {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.order-header[b-cvtdus5yki] {
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.order-info[b-cvtdus5yki] {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.info-group label[b-cvtdus5yki] {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-group span[b-cvtdus5yki] {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

/* Status Badges - New Refined Style */
.status-pill[b-cvtdus5yki] {
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-processing[b-cvtdus5yki] { background: #fffcf0; color: #a07800; border: 1px solid #fee2e2; }
.status-shipped[b-cvtdus5yki] { background: #f0f7ff; color: #0070e0; border: 1px solid #dbeafe; }
.status-delivered[b-cvtdus5yki] { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.status-cancelled[b-cvtdus5yki] { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Order Body */
.order-body[b-cvtdus5yki] {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image-wrap[b-cvtdus5yki] {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.product-image-wrap img[b-cvtdus5yki] {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.product-details[b-cvtdus5yki] {
    flex: 1;
}

.product-name[b-cvtdus5yki] {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.product-meta[b-cvtdus5yki] {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    gap: 12px;
}

.order-total-block[b-cvtdus5yki] {
    text-align: right;
    padding: 0 20px;
}

.total-label[b-cvtdus5yki] {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.total-amount[b-cvtdus5yki] {
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
}

/* Order Footer Actions */
.order-actions[b-cvtdus5yki] {
    background: white;
    border-top: 1px solid var(--border);
    padding: 15px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-action[b-cvtdus5yki] {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: white;
}

.btn-action:hover[b-cvtdus5yki] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--black);
}

.btn-primary-action[b-cvtdus5yki] {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

.btn-primary-action:hover[b-cvtdus5yki] {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Empty State */
.empty-orders[b-cvtdus5yki] {
    padding: 80px 40px;
    text-align: center;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.empty-icon[b-cvtdus5yki] {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

/* Pagination - FIXED */
.pagination-container[b-cvtdus5yki] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 15px 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.pagination[b-cvtdus5yki] {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.page-item .page-link[b-cvtdus5yki] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    color: var(--gray);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.page-item.active .page-link[b-cvtdus5yki] {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

.page-item:not(.active):hover .page-link[b-cvtdus5yki] {
    background: var(--light-gray);
    color: var(--black);
    border-color: var(--gray);
}

/* Responsive */
@media (max-width: 991px) {
    .order-body[b-cvtdus5yki] {
        flex-direction: column;
        align-items: flex-start;
    }
    .order-total-block[b-cvtdus5yki] {
        text-align: left;
        padding: 15px 0 0 0;
        border-top: 1px dashed var(--border);
        width: 100%;
    }
}

@media (max-width: 576px) {
    .order-header[b-cvtdus5yki] {
        flex-direction: column;
        align-items: flex-start;
    }
    .order-actions[b-cvtdus5yki] {
        flex-wrap: wrap;
    }
    .btn-action[b-cvtdus5yki] {
        flex: 1;
        min-width: 120px;
    }
}
/* /Pages/Admin/Articles.razor.rz.scp.css */
.articles-page[b-5cpeiktqfp] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-5cpeiktqfp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header-content h1[b-5cpeiktqfp] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-5cpeiktqfp] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-5cpeiktqfp] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-5cpeiktqfp] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-5cpeiktqfp] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-5cpeiktqfp] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:disabled[b-5cpeiktqfp] {
    opacity: 0.5;
    cursor: not-allowed;
}

.filters-section[b-5cpeiktqfp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
}

.search-box[b-5cpeiktqfp] {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-box i[b-5cpeiktqfp] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-5cpeiktqfp] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.filter-group[b-5cpeiktqfp] {
    display: flex;
    gap: 12px;
}

.filter-select[b-5cpeiktqfp] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 170px;
}

.form-card[b-5cpeiktqfp] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-5cpeiktqfp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.form-grid[b-5cpeiktqfp] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.form-image-row[b-5cpeiktqfp] {
    margin-bottom: 16px;
}

.form-image-preview[b-5cpeiktqfp] {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.form-image-preview img[b-5cpeiktqfp] {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.form-field[b-5cpeiktqfp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-5cpeiktqfp] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.form-input[b-5cpeiktqfp] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.form-input:focus[b-5cpeiktqfp] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.textarea[b-5cpeiktqfp] {
    resize: vertical;
}

.articles-grid[b-5cpeiktqfp] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.article-card[b-5cpeiktqfp] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.article-card:hover[b-5cpeiktqfp] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card-header[b-5cpeiktqfp] {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.article-title[b-5cpeiktqfp] {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.article-meta[b-5cpeiktqfp] {
    font-size: 13px;
    color: #64748b;
}

.article-card-body[b-5cpeiktqfp] {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-snippet[b-5cpeiktqfp] {
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
    max-height: 64px;
    overflow: hidden;
}

.article-row[b-5cpeiktqfp] {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-card-footer[b-5cpeiktqfp] {
    padding: 12px 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.article-actions[b-5cpeiktqfp] {
    display: flex;
    gap: 8px;
}

.action-btn[b-5cpeiktqfp] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-5cpeiktqfp] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-5cpeiktqfp] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.status-badge[b-5cpeiktqfp] {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.active[b-5cpeiktqfp] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-5cpeiktqfp] {
    background: #fee2e2;
    color: #dc2626;
}

@media (max-width: 1200px) {
    .articles-grid[b-5cpeiktqfp] {
        grid-template-columns: 1fr;
    }
    .form-grid[b-5cpeiktqfp] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-5cpeiktqfp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .filters-section[b-5cpeiktqfp] {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group[b-5cpeiktqfp] {
        flex-wrap: wrap;
    }
    .form-grid[b-5cpeiktqfp] {
        grid-template-columns: 1fr;
    }
}

/* /Pages/Admin/Categories.razor.rz.scp.css */
.categories-page[b-5hbns7hk83] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-5hbns7hk83] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    gap: 16px;
}

.page-header-content h1[b-5hbns7hk83] {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-5hbns7hk83] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-5hbns7hk83] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-primary[b-5hbns7hk83] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-5hbns7hk83] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-5hbns7hk83] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-5hbns7hk83] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.btn-secondary:disabled[b-5hbns7hk83] {
    opacity: 0.6;
    cursor: not-allowed;
}

.categories-grid[b-5hbns7hk83] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.category-card[b-5hbns7hk83] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-top[b-5hbns7hk83] {
    display: flex;
    gap: 14px;
    padding: 16px;
}

.category-thumb[b-5hbns7hk83] {
    width: 92px;
    height: 76px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-thumb img[b-5hbns7hk83] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder[b-5hbns7hk83] {
    color: #64748b;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    padding: 8px;
}

.category-info[b-5hbns7hk83] {
    flex: 1;
    min-width: 0;
}

.category-name[b-5hbns7hk83] {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-slug[b-5hbns7hk83] {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-meta[b-5hbns7hk83] {
    font-size: 12.5px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-footer[b-5hbns7hk83] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
    gap: 10px;
}

.status-badge[b-5hbns7hk83] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    white-space: nowrap;
}

.status-badge.active[b-5hbns7hk83] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-5hbns7hk83] {
    background: #fee2e2;
    color: #dc2626;
}

.category-actions[b-5hbns7hk83] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.action-btn[b-5hbns7hk83] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn.delete:hover[b-5hbns7hk83] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.empty-state[b-5hbns7hk83] {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    color: #64748b;
}

.empty-title[b-5hbns7hk83] {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.empty-sub[b-5hbns7hk83] {
    font-size: 13px;
}

.form-card[b-5hbns7hk83] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-5hbns7hk83] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.form-grid[b-5hbns7hk83] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-field[b-5hbns7hk83] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-5hbns7hk83] {
    font-size: 13px;
    font-weight: 900;
    color: #64748b;
}

.form-input[b-5hbns7hk83] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}

.form-input:focus[b-5hbns7hk83] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.textarea[b-5hbns7hk83] {
    resize: vertical;
}

.form-image-row[b-5hbns7hk83] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.image-preview[b-5hbns7hk83] {
    width: 160px;
    height: 120px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-preview img[b-5hbns7hk83] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload[b-5hbns7hk83] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-selected[b-5hbns7hk83] {
    font-size: 12.5px;
    font-weight: 800;
    color: #334155;
}

.logo-help[b-5hbns7hk83] {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 980px) {
    .categories-grid[b-5hbns7hk83] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .categories-grid[b-5hbns7hk83] {
        grid-template-columns: 1fr;
    }

    .form-grid[b-5hbns7hk83] {
        grid-template-columns: 1fr;
    }

    .form-image-row[b-5hbns7hk83] {
        flex-direction: column;
    }

    .image-preview[b-5hbns7hk83] {
        width: 100%;
    }
}

/* /Pages/Admin/Coupons.razor.rz.scp.css */
/* Coupons Page Styles */
.coupons-page[b-ktgzr67vzb] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-ktgzr67vzb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-ktgzr67vzb] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-ktgzr67vzb] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-ktgzr67vzb] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-ktgzr67vzb] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-ktgzr67vzb] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-ktgzr67vzb] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover:not(:disabled)[b-ktgzr67vzb] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-secondary:disabled[b-ktgzr67vzb] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm[b-ktgzr67vzb] {
    padding: 8px 16px;
    font-size: 13px;
}

/* Stats Grid */
.stats-grid[b-ktgzr67vzb] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-ktgzr67vzb] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover[b-ktgzr67vzb] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-ktgzr67vzb] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-icon.active[b-ktgzr67vzb] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.used[b-ktgzr67vzb] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon.savings[b-ktgzr67vzb] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.expired[b-ktgzr67vzb] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-content[b-ktgzr67vzb] {
    flex: 1;
}

.stat-label[b-ktgzr67vzb] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value[b-ktgzr67vzb] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

/* Filters Section */
.filters-section[b-ktgzr67vzb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box[b-ktgzr67vzb] {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i[b-ktgzr67vzb] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-ktgzr67vzb] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-ktgzr67vzb] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group[b-ktgzr67vzb] {
    display: flex;
    gap: 12px;
}

.filter-select[b-ktgzr67vzb] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus[b-ktgzr67vzb] {
    outline: none;
    border-color: #3b82f6;
}

/* Coupons Grid */
.coupons-grid[b-ktgzr67vzb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.coupon-card[b-ktgzr67vzb] {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.coupon-card:hover[b-ktgzr67vzb] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.coupon-card.expired[b-ktgzr67vzb] {
    opacity: 0.7;
}

.coupon-header[b-ktgzr67vzb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.coupon-code[b-ktgzr67vzb] {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 1px;
}

.coupon-status[b-ktgzr67vzb] {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.coupon-status.active[b-ktgzr67vzb] {
    background: #d1fae5;
    color: #059669;
}

.coupon-status.expired[b-ktgzr67vzb] {
    background: #fee2e2;
    color: #dc2626;
}

.coupon-status.disabled[b-ktgzr67vzb] {
    background: #f3f4f6;
    color: #6b7280;
}

.coupon-body[b-ktgzr67vzb] {
    padding: 20px;
}

.coupon-discount[b-ktgzr67vzb] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.discount-value[b-ktgzr67vzb] {
    font-size: 36px;
    font-weight: 700;
    color: #3b82f6;
}

.discount-label[b-ktgzr67vzb] {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.coupon-details[b-ktgzr67vzb] {
    margin-bottom: 16px;
}

.coupon-description[b-ktgzr67vzb] {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.coupon-meta[b-ktgzr67vzb] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item[b-ktgzr67vzb] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.meta-item i[b-ktgzr67vzb] {
    width: 16px;
    color: #94a3b8;
}

.coupon-footer[b-ktgzr67vzb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.coupon-actions[b-ktgzr67vzb] {
    display: flex;
    gap: 8px;
}

.action-btn[b-ktgzr67vzb] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-ktgzr67vzb] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-ktgzr67vzb] {
    background: #ef4444;
    border-color: #ef4444;
}

/* Pagination */
.pagination[b-ktgzr67vzb] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-btn[b-ktgzr67vzb] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-ktgzr67vzb] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-btn:disabled[b-ktgzr67vzb] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers[b-ktgzr67vzb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number[b-ktgzr67vzb] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-number:hover[b-ktgzr67vzb] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-number.active[b-ktgzr67vzb] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

/* Coupon Create/Edit Form */
.form-field[b-ktgzr67vzb] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-ktgzr67vzb] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.form-input[b-ktgzr67vzb] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.form-input:focus[b-ktgzr67vzb] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-grid[b-ktgzr67vzb] {
        grid-template-columns: repeat(2, 1fr);
    }

    .coupons-grid[b-ktgzr67vzb] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-ktgzr67vzb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .page-header-actions[b-ktgzr67vzb] {
        width: 100%;
    }

    .page-header-actions .btn-primary[b-ktgzr67vzb] {
        width: 100%;
        justify-content: center;
    }

    .stats-grid[b-ktgzr67vzb] {
        grid-template-columns: 1fr;
    }

    .filters-section[b-ktgzr67vzb] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-ktgzr67vzb] {
        max-width: 100%;
    }

    .filter-group[b-ktgzr67vzb] {
        flex-wrap: wrap;
    }

    .filter-select[b-ktgzr67vzb] {
        flex: 1;
        min-width: 120px;
    }

    .coupons-grid[b-ktgzr67vzb] {
        grid-template-columns: 1fr;
    }

    .pagination[b-ktgzr67vzb] {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-header-content h1[b-ktgzr67vzb] {
        font-size: 24px;
    }

    .stat-card[b-ktgzr67vzb] {
        padding: 20px;
    }

    .stat-value[b-ktgzr67vzb] {
        font-size: 24px;
    }

    .coupon-code[b-ktgzr67vzb] {
        font-size: 16px;
    }

    .discount-value[b-ktgzr67vzb] {
        font-size: 28px;
    }

    .coupon-footer[b-ktgzr67vzb] {
        flex-direction: column;
        gap: 12px;
    }

    .coupon-actions[b-ktgzr67vzb] {
        width: 100%;
        justify-content: center;
    }

    .btn-secondary[b-ktgzr67vzb] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Admin/Customers.razor.rz.scp.css */
/* Customers Custom Styles */

.customers-page[b-cd6noylzj7] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.page-header[b-cd6noylzj7] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(17, 153, 142, 0.3);
}

.page-header h1[b-cd6noylzj7] {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p[b-cd6noylzj7] {
    opacity: 0.9;
    font-size: 1.1rem;
}

.stats-grid[b-cd6noylzj7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-cd6noylzj7] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover[b-cd6noylzj7] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon[b-cd6noylzj7] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.total[b-cd6noylzj7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-icon.active[b-cd6noylzj7] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.stat-icon.banned[b-cd6noylzj7] {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
}

.stat-content[b-cd6noylzj7] {
    flex: 1;
}

.stat-label[b-cd6noylzj7] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value[b-cd6noylzj7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.filters-section[b-cd6noylzj7] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-box[b-cd6noylzj7] {
    position: relative;
    margin-bottom: 1rem;
}

.search-box i[b-cd6noylzj7] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-box input[b-cd6noylzj7] {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-box input:focus[b-cd6noylzj7] {
    outline: none;
    border-color: #11998e;
    box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

.filter-group[b-cd6noylzj7] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select[b-cd6noylzj7] {
    flex: 1;
    min-width: 150px;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus[b-cd6noylzj7] {
    outline: none;
    border-color: #11998e;
    box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

.users-table-card[b-cd6noylzj7] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.table-responsive[b-cd6noylzj7] {
    overflow-x: auto;
}

.users-table[b-cd6noylzj7] {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead th[b-cd6noylzj7] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.users-table tbody td[b-cd6noylzj7] {
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.users-table tbody tr:last-child td[b-cd6noylzj7] {
    border-bottom: none;
}

.users-table tbody tr:hover[b-cd6noylzj7] {
    background: rgba(17, 153, 142, 0.03);
}

.user-info[b-cd6noylzj7] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar[b-cd6noylzj7] {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.user-details[b-cd6noylzj7] {
    flex: 1;
}

.user-name[b-cd6noylzj7] {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.user-id[b-cd6noylzj7] {
    font-size: 0.75rem;
    color: #9ca3af;
}

.user-email[b-cd6noylzj7] {
    color: #6b7280;
    font-size: 0.9375rem;
}

.status-badge[b-cd6noylzj7] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.active[b-cd6noylzj7] {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.status-badge.suspended[b-cd6noylzj7] {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.action-buttons[b-cd6noylzj7] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.action-btn[b-cd6noylzj7] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover[b-cd6noylzj7] {
    border-color: #11998e;
    color: #11998e;
    background: rgba(17, 153, 142, 0.05);
}

.action-btn.ban:hover[b-cd6noylzj7] {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.action-btn.unban:hover[b-cd6noylzj7] {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.btn-secondary[b-cd6noylzj7] {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover[b-cd6noylzj7] {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.btn-secondary:disabled[b-cd6noylzj7] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading state */
.loading-spinner[b-cd6noylzj7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.spinner[b-cd6noylzj7] {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #11998e;
    border-radius: 50%;
    animation: spin-b-cd6noylzj7 1s linear infinite;
}

@keyframes spin-b-cd6noylzj7 {
    to {
        transform: rotate(360deg);
    }
}

.loading-text[b-cd6noylzj7] {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Empty state */
.empty-state[b-cd6noylzj7] {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
}

.empty-icon[b-cd6noylzj7] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h5[b-cd6noylzj7] {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.empty-state p[b-cd6noylzj7] {
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-grid[b-cd6noylzj7] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid[b-cd6noylzj7] {
        grid-template-columns: 1fr;
    }
    
    .stat-card[b-cd6noylzj7] {
        padding: 1rem;
    }
    
    .stat-icon[b-cd6noylzj7] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-value[b-cd6noylzj7] {
        font-size: 1.25rem;
    }
    
    .filters-section[b-cd6noylzj7] {
        padding: 1rem;
    }
    
    .filter-group[b-cd6noylzj7] {
        flex-direction: column;
    }
    
    .filter-select[b-cd6noylzj7] {
        min-width: 100%;
    }
    
    .users-table thead th[b-cd6noylzj7],
    .users-table tbody td[b-cd6noylzj7] {
        padding: 0.75rem 1rem;
    }
    
    .user-avatar[b-cd6noylzj7] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-header[b-cd6noylzj7] {
        padding: 1.5rem;
    }
    
    .page-header h1[b-cd6noylzj7] {
        font-size: 1.5rem;
    }
    
    .action-buttons[b-cd6noylzj7] {
        flex-direction: column;
    }
}

/* Animation */
@keyframes fadeIn-b-cd6noylzj7 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.users-table-card[b-cd6noylzj7] {
    animation: fadeIn-b-cd6noylzj7 0.5s ease-out;
}

.stat-card[b-cd6noylzj7] {
    animation: fadeIn-b-cd6noylzj7 0.5s ease-out;
}

.stat-card:nth-child(1)[b-cd6noylzj7] { animation-delay: 0.1s; }
.stat-card:nth-child(2)[b-cd6noylzj7] { animation-delay: 0.2s; }
.stat-card:nth-child(3)[b-cd6noylzj7] { animation-delay: 0.3s; }

.filters-section[b-cd6noylzj7] {
    animation: fadeIn-b-cd6noylzj7 0.5s ease-out;
    animation-delay: 0.2s;
}
/* /Pages/Admin/Dashboard.razor.rz.scp.css */
/* Dashboard Page Styles */
.dashboard-page[b-hl1bnst038] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-hl1bnst038] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-hl1bnst038] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-hl1bnst038] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.btn-primary[b-hl1bnst038] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-hl1bnst038] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Stats Grid */
.stats-grid[b-hl1bnst038] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-hl1bnst038] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover[b-hl1bnst038] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-hl1bnst038] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-content[b-hl1bnst038] {
    flex: 1;
}

.stat-label[b-hl1bnst038] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value[b-hl1bnst038] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.stat-change[b-hl1bnst038] {
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stat-change.positive[b-hl1bnst038] {
    color: #10b981;
}

.stat-change.negative[b-hl1bnst038] {
    color: #ef4444;
}

/* Charts Grid */
.charts-grid[b-hl1bnst038] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.chart-card[b-hl1bnst038] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.chart-header[b-hl1bnst038] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.chart-header h3[b-hl1bnst038] {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.chart-select[b-hl1bnst038] {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
}

.chart-body[b-hl1bnst038] {
    padding: 24px;
    min-height: 300px;
}

.chart-placeholder[b-hl1bnst038] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.chart-placeholder i[b-hl1bnst038] {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.chart-placeholder p[b-hl1bnst038] {
    font-size: 14px;
    margin: 0;
}

/* Content Grid */
.content-grid[b-hl1bnst038] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.content-card[b-hl1bnst038] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header[b-hl1bnst038] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header h3[b-hl1bnst038] {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.view-all[b-hl1bnst038] {
    font-size: 13px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.view-all:hover[b-hl1bnst038] {
    color: #2563eb;
}

.card-body[b-hl1bnst038] {
    padding: 20px 24px;
}

/* Data Table */
.table-responsive[b-hl1bnst038] {
    overflow-x: auto;
}

.data-table[b-hl1bnst038] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-hl1bnst038],
.data-table td[b-hl1bnst038] {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th[b-hl1bnst038] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td[b-hl1bnst038] {
    font-size: 14px;
    color: #1e293b;
}

.data-table tr:last-child td[b-hl1bnst038] {
    border-bottom: none;
}

.data-table tr:hover[b-hl1bnst038] {
    background: #f8fafc;
}

/* Status Badges */
.status-badge[b-hl1bnst038] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.completed[b-hl1bnst038] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.pending[b-hl1bnst038] {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.processing[b-hl1bnst038] {
    background: #dbeafe;
    color: #2563eb;
}

/* Product List */
.product-list[b-hl1bnst038] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-item[b-hl1bnst038] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.product-item:hover[b-hl1bnst038] {
    background: #f8fafc;
}

.product-image[b-hl1bnst038] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 20px;
}

.product-info[b-hl1bnst038] {
    flex: 1;
}

.product-name[b-hl1bnst038] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.product-meta[b-hl1bnst038] {
    font-size: 12px;
    color: #64748b;
}

.product-stats[b-hl1bnst038] {
    text-align: right;
}

.product-sales[b-hl1bnst038] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 2px;
}

.product-revenue[b-hl1bnst038] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Quick Actions */
.quick-actions[b-hl1bnst038] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-actions h3[b-hl1bnst038] {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.actions-grid[b-hl1bnst038] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.action-card[b-hl1bnst038] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background: #f8fafc;
    text-decoration: none;
    transition: all 0.3s;
}

.action-card:hover[b-hl1bnst038] {
    background: #f1f5f9;
    transform: translateY(-4px);
}

.action-icon[b-hl1bnst038] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.action-text[b-hl1bnst038] {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-grid[b-hl1bnst038] {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-grid[b-hl1bnst038] {
        grid-template-columns: 1fr;
    }

    .content-grid[b-hl1bnst038] {
        grid-template-columns: 1fr;
    }

    .actions-grid[b-hl1bnst038] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-hl1bnst038] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stats-grid[b-hl1bnst038] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-hl1bnst038] {
        padding: 20px;
    }

    .stat-value[b-hl1bnst038] {
        font-size: 24px;
    }

    .actions-grid[b-hl1bnst038] {
        grid-template-columns: 1fr;
    }

    .action-card[b-hl1bnst038] {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px;
    }

    .action-icon[b-hl1bnst038] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1[b-hl1bnst038] {
        font-size: 24px;
    }

    .btn-primary[b-hl1bnst038] {
        width: 100%;
        justify-content: center;
    }

    .data-table th[b-hl1bnst038],
    .data-table td[b-hl1bnst038] {
        padding: 10px 12px;
        font-size: 13px;
    }
}
/* /Pages/Admin/Inquiries.razor.rz.scp.css */
.inquiries-page[b-1attmmz5d2] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-1attmmz5d2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header-content h1[b-1attmmz5d2] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-1attmmz5d2] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-1attmmz5d2] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-1attmmz5d2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-1attmmz5d2] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-1attmmz5d2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:disabled[b-1attmmz5d2] {
    opacity: 0.5;
    cursor: not-allowed;
}

.filters-section[b-1attmmz5d2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
}

.search-box[b-1attmmz5d2] {
    position: relative;
    flex: 1;
    max-width: 420px;
}

.search-box i[b-1attmmz5d2] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-1attmmz5d2] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.filter-group[b-1attmmz5d2] {
    display: flex;
    gap: 12px;
}

.filter-select[b-1attmmz5d2] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 190px;
}

.form-card[b-1attmmz5d2] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-1attmmz5d2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.form-grid[b-1attmmz5d2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.form-field[b-1attmmz5d2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-1attmmz5d2] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.form-input[b-1attmmz5d2] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.form-input:focus[b-1attmmz5d2] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.textarea[b-1attmmz5d2] {
    resize: vertical;
}

.table-wrap[b-1attmmz5d2] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inquiries-table[b-1attmmz5d2] {
    width: 100%;
    border-collapse: collapse;
}

.inquiries-table th[b-1attmmz5d2], .inquiries-table td[b-1attmmz5d2] {
    padding: 14px 14px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 14px;
    color: #334155;
    vertical-align: top;
}

.inquiries-table th[b-1attmmz5d2] {
    background: #f8fafc;
    color: #64748b;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sender-cell .sender-name[b-1attmmz5d2] {
    font-weight: 800;
}

.sender-cell .sender-email[b-1attmmz5d2] {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    word-break: break-word;
}

.status-badge[b-1attmmz5d2] {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
}

.status-badge.active[b-1attmmz5d2] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.info[b-1attmmz5d2] {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-badge.success[b-1attmmz5d2] {
    background: #dcfce7;
    color: #15803d;
}

.status-badge.inactive[b-1attmmz5d2] {
    background: #fee2e2;
    color: #dc2626;
}

.inline-update[b-1attmmz5d2] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-select[b-1attmmz5d2] {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
}

.update-btn[b-1attmmz5d2] {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    font-weight: 700;
}

.update-btn:hover:not(:disabled)[b-1attmmz5d2] {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

.update-btn:disabled[b-1attmmz5d2] {
    opacity: 0.6;
    cursor: not-allowed;
}

.action-buttons[b-1attmmz5d2] {
    display: flex;
    gap: 8px;
}

.action-btn[b-1attmmz5d2] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-1attmmz5d2] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-1attmmz5d2] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

@media (max-width: 1200px) {
    .form-grid[b-1attmmz5d2] {
        grid-template-columns: repeat(2, 1fr);
    }
    .inline-update[b-1attmmz5d2] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .page-header[b-1attmmz5d2] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .filters-section[b-1attmmz5d2] {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group[b-1attmmz5d2] {
        flex-wrap: wrap;
    }
    .form-grid[b-1attmmz5d2] {
        grid-template-columns: 1fr;
    }
    .inquiries-table th[b-1attmmz5d2], .inquiries-table td[b-1attmmz5d2] {
        padding: 12px 10px;
    }
}

/* /Pages/Admin/Newsletter.razor.rz.scp.css */
.newsletter-page[b-u3lhmhqykr] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-u3lhmhqykr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header-content h1[b-u3lhmhqykr] {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-u3lhmhqykr] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.btn-primary[b-u3lhmhqykr] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-u3lhmhqykr] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-u3lhmhqykr] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-card[b-u3lhmhqykr] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-u3lhmhqykr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.form-row[b-u3lhmhqykr] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form-input[b-u3lhmhqykr] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.form-input:focus[b-u3lhmhqykr] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.table-wrap[b-u3lhmhqykr] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-title[b-u3lhmhqykr] {
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    font-weight: 800;
    color: #0f172a;
}

.newsletter-table[b-u3lhmhqykr] {
    width: 100%;
    border-collapse: collapse;
}

.newsletter-table th[b-u3lhmhqykr],
.newsletter-table td[b-u3lhmhqykr] {
    padding: 14px 14px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

.newsletter-table th[b-u3lhmhqykr] {
    background: #f8fafc;
    color: #64748b;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.status-badge[b-u3lhmhqykr] {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
}

.status-badge.active[b-u3lhmhqykr] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-u3lhmhqykr] {
    background: #fee2e2;
    color: #dc2626;
}

.action-buttons[b-u3lhmhqykr] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.toggle-btn[b-u3lhmhqykr] {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    font-weight: 800;
}

.toggle-btn:disabled[b-u3lhmhqykr] {
    opacity: 0.7;
    cursor: not-allowed;
}

.action-btn[b-u3lhmhqykr] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    color: #64748b;
}

.action-btn.delete:hover[b-u3lhmhqykr] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

@media (max-width: 768px) {
    .form-row[b-u3lhmhqykr] {
        flex-direction: column;
        align-items: stretch;
    }
}

/* /Pages/Admin/OrderDetails.razor.rz.scp.css */
/* OrderDetails Custom Styles */

.order-details-page[b-ycajiu5t33] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.page-header[b-ycajiu5t33] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.page-header h1[b-ycajiu5t33] {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p[b-ycajiu5t33] {
    opacity: 0.9;
    font-size: 1.1rem;
}

.stats-grid[b-ycajiu5t33] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-ycajiu5t33] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover[b-ycajiu5t33] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon[b-ycajiu5t33] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.total[b-ycajiu5t33] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-icon.pending[b-ycajiu5t33] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.stat-icon.processing[b-ycajiu5t33] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.stat-icon.shipped[b-ycajiu5t33] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.stat-content[b-ycajiu5t33] {
    flex: 1;
}

.stat-label[b-ycajiu5t33] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-value[b-ycajiu5t33] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.card[b-ycajiu5t33] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header[b-ycajiu5t33] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
}

.card-header h5[b-ycajiu5t33] {
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.card-body[b-ycajiu5t33] {
    padding: 0;
}

.table[b-ycajiu5t33] {
    margin: 0;
}

.table thead th[b-ycajiu5t33] {
    background: #f8fafc;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table tbody td[b-ycajiu5t33] {
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.table tbody tr:last-child td[b-ycajiu5t33] {
    border-bottom: none;
}

.table tbody tr:hover[b-ycajiu5t33] {
    background: rgba(102, 126, 234, 0.03);
}

.table tfoot td[b-ycajiu5t33] {
    background: #f8fafc;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.badge[b-ycajiu5t33] {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.bg-warning[b-ycajiu5t33] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
}

.badge.bg-info[b-ycajiu5t33] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.badge.bg-primary[b-ycajiu5t33] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
}

.badge.bg-success[b-ycajiu5t33] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.badge.bg-danger[b-ycajiu5t33] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.badge.bg-secondary[b-ycajiu5t33] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
}

.form-select[b-ycajiu5t33] {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-select:focus[b-ycajiu5t33] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn[b-ycajiu5t33] {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary[b-ycajiu5t33] {
    border: 2px solid #e5e7eb;
    color: #6b7280;
}

.btn-outline-secondary:hover[b-ycajiu5t33] {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.pre-formatted[b-ycajiu5t33] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #374151;
    white-space: pre-wrap;
    margin: 0;
}

.spinner-border[b-ycajiu5t33] {
    width: 3rem;
    height: 3rem;
}

.alert[b-ycajiu5t33] {
    border-radius: 12px;
    border: none;
    padding: 1.5rem;
}

.alert-warning[b-ycajiu5t33] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid[b-ycajiu5t33] {
        grid-template-columns: 1fr;
    }
    
    .stat-card[b-ycajiu5t33] {
        padding: 1rem;
    }
    
    .stat-icon[b-ycajiu5t33] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-value[b-ycajiu5t33] {
        font-size: 1.25rem;
    }
    
    .table thead th[b-ycajiu5t33],
    .table tbody td[b-ycajiu5t33] {
        padding: 0.75rem 1rem;
    }
    
    .page-header[b-ycajiu5t33] {
        padding: 1.5rem;
    }
    
    .page-header h1[b-ycajiu5t33] {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn-b-ycajiu5t33 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-ycajiu5t33] {
    animation: fadeIn-b-ycajiu5t33 0.5s ease-out;
}

.stat-card[b-ycajiu5t33] {
    animation: fadeIn-b-ycajiu5t33 0.5s ease-out;
}

.stat-card:nth-child(1)[b-ycajiu5t33] { animation-delay: 0.1s; }
.stat-card:nth-child(2)[b-ycajiu5t33] { animation-delay: 0.2s; }
.stat-card:nth-child(3)[b-ycajiu5t33] { animation-delay: 0.3s; }
.stat-card:nth-child(4)[b-ycajiu5t33] { animation-delay: 0.4s; }
/* /Pages/Admin/Orders.razor.rz.scp.css */
/* Orders Page Styles */
.orders-page[b-acm30hu8r3] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-acm30hu8r3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-acm30hu8r3] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-acm30hu8r3] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-acm30hu8r3] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-acm30hu8r3] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-acm30hu8r3] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-acm30hu8r3] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover[b-acm30hu8r3] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Stats Grid */
.stats-grid[b-acm30hu8r3] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-acm30hu8r3] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover[b-acm30hu8r3] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-acm30hu8r3] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-icon.pending[b-acm30hu8r3] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.stat-icon.processing[b-acm30hu8r3] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon.shipped[b-acm30hu8r3] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-icon.delivered[b-acm30hu8r3] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-content[b-acm30hu8r3] {
    flex: 1;
}

.stat-label[b-acm30hu8r3] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value[b-acm30hu8r3] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

/* Filters Section */
.filters-section[b-acm30hu8r3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box[b-acm30hu8r3] {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i[b-acm30hu8r3] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-acm30hu8r3] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-acm30hu8r3] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group[b-acm30hu8r3] {
    display: flex;
    gap: 12px;
}

.filter-select[b-acm30hu8r3] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus[b-acm30hu8r3] {
    outline: none;
    border-color: #3b82f6;
}

/* Orders Table */
.orders-table-card[b-acm30hu8r3] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.table-responsive[b-acm30hu8r3] {
    overflow-x: auto;
}

.orders-table[b-acm30hu8r3] {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th[b-acm30hu8r3],
.orders-table td[b-acm30hu8r3] {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.orders-table th[b-acm30hu8r3] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
}

.orders-table td[b-acm30hu8r3] {
    font-size: 14px;
    color: #1e293b;
}

.orders-table tr:last-child td[b-acm30hu8r3] {
    border-bottom: none;
}

.orders-table tr:hover[b-acm30hu8r3] {
    background: #f8fafc;
}

.order-id[b-acm30hu8r3] {
    font-weight: 600;
    color: #3b82f6;
}

.customer-info[b-acm30hu8r3] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar[b-acm30hu8r3] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
}

.customer-details[b-acm30hu8r3] {
    flex: 1;
}

.customer-name[b-acm30hu8r3] {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.customer-email[b-acm30hu8r3] {
    font-size: 12px;
    color: #64748b;
}

.order-date[b-acm30hu8r3] {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 2px;
}

.order-time[b-acm30hu8r3] {
    font-size: 12px;
    color: #64748b;
}

.items-count[b-acm30hu8r3] {
    font-size: 13px;
    color: #64748b;
}

.order-total[b-acm30hu8r3] {
    font-weight: 700;
    color: #1e293b;
}

/* Status Badges */
.status-badge[b-acm30hu8r3] {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.completed[b-acm30hu8r3] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.pending[b-acm30hu8r3] {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.processing[b-acm30hu8r3] {
    background: #dbeafe;
    color: #2563eb;
}

.status-badge.shipped[b-acm30hu8r3] {
    background: #ede9fe;
    color: #7c3aed;
}

.status-badge.cancelled[b-acm30hu8r3] {
    background: #fee2e2;
    color: #dc2626;
}

/* Payment Status */
.payment-info-wrap[b-acm30hu8r3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.payment-method-badge[b-acm30hu8r3] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

.payment-status[b-acm30hu8r3] {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}

.payment-status.paid[b-acm30hu8r3] {
    background: #ecfdf5;
    color: #059669;
}

.payment-status.pending[b-acm30hu8r3] {
    color: #d97706;
}

.payment-status.failed[b-acm30hu8r3] {
    background: #fee2e2;
    color: #dc2626;
}

/* Action Buttons */
.action-buttons[b-acm30hu8r3] {
    display: flex;
    gap: 8px;
}

.action-btn[b-acm30hu8r3] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-acm30hu8r3] {
    background: #3b82f6;
    color: #fff;
}

/* Pagination */
.pagination[b-acm30hu8r3] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-btn[b-acm30hu8r3] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-acm30hu8r3] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-btn:disabled[b-acm30hu8r3] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers[b-acm30hu8r3] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number[b-acm30hu8r3] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-number:hover[b-acm30hu8r3] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-number.active[b-acm30hu8r3] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.pagination-dots[b-acm30hu8r3] {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-grid[b-acm30hu8r3] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-acm30hu8r3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .page-header-actions[b-acm30hu8r3] {
        width: 100%;
    }

    .page-header-actions .btn-primary[b-acm30hu8r3],
    .page-header-actions .btn-secondary[b-acm30hu8r3] {
        flex: 1;
        justify-content: center;
    }

    .stats-grid[b-acm30hu8r3] {
        grid-template-columns: 1fr;
    }

    .filters-section[b-acm30hu8r3] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-acm30hu8r3] {
        max-width: 100%;
    }

    .filter-group[b-acm30hu8r3] {
        flex-wrap: wrap;
    }

    .filter-select[b-acm30hu8r3] {
        flex: 1;
        min-width: 120px;
    }

    .orders-table th[b-acm30hu8r3],
    .orders-table td[b-acm30hu8r3] {
        padding: 12px 16px;
        font-size: 13px;
    }

    .customer-info[b-acm30hu8r3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .customer-avatar[b-acm30hu8r3] {
        display: none;
    }

    .pagination[b-acm30hu8r3] {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-header-content h1[b-acm30hu8r3] {
        font-size: 24px;
    }

    .stat-card[b-acm30hu8r3] {
        padding: 20px;
    }

    .stat-value[b-acm30hu8r3] {
        font-size: 24px;
    }

    .orders-table-card[b-acm30hu8r3] {
        border-radius: 8px;
    }

    .orders-table th[b-acm30hu8r3],
    .orders-table td[b-acm30hu8r3] {
        padding: 10px 12px;
    }

    .action-buttons[b-acm30hu8r3] {
        flex-direction: column;
    }
}
/* /Pages/Admin/Pages.razor.rz.scp.css */
/* Pages Page Styles */
.pages-page[b-zmkk6ga8gh] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-zmkk6ga8gh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-zmkk6ga8gh] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-zmkk6ga8gh] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-zmkk6ga8gh] {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn-primary[b-zmkk6ga8gh] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-zmkk6ga8gh] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-zmkk6ga8gh] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:disabled[b-zmkk6ga8gh] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Stats */
.stats-grid[b-zmkk6ga8gh] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-zmkk6ga8gh] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover[b-zmkk6ga8gh] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-zmkk6ga8gh] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-icon.active[b-zmkk6ga8gh] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.used[b-zmkk6ga8gh] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon.savings[b-zmkk6ga8gh] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.expired[b-zmkk6ga8gh] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-content[b-zmkk6ga8gh] {
    flex: 1;
}

.stat-label[b-zmkk6ga8gh] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value[b-zmkk6ga8gh] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

/* Form */
.form-card[b-zmkk6ga8gh] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-zmkk6ga8gh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.form-grid[b-zmkk6ga8gh] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.form-field[b-zmkk6ga8gh] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-zmkk6ga8gh] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.form-input[b-zmkk6ga8gh] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

.form-input:focus[b-zmkk6ga8gh] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.textarea[b-zmkk6ga8gh] {
    resize: vertical;
}

/* Filters */
.filters-section[b-zmkk6ga8gh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box[b-zmkk6ga8gh] {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i[b-zmkk6ga8gh] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-zmkk6ga8gh] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.filter-group[b-zmkk6ga8gh] {
    display: flex;
    gap: 12px;
}

.filter-select[b-zmkk6ga8gh] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

/* Cards Grid */
.pages-grid[b-zmkk6ga8gh] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.page-card[b-zmkk6ga8gh] {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.page-card:hover[b-zmkk6ga8gh] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-card-header[b-zmkk6ga8gh] {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.page-title[b-zmkk6ga8gh] {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.page-slug[b-zmkk6ga8gh] {
    font-size: 13px;
    color: #64748b;
}

.page-card-body[b-zmkk6ga8gh] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-row[b-zmkk6ga8gh] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
}

.meta-row i[b-zmkk6ga8gh] {
    width: 18px;
    text-align: center;
    color: #94a3b8;
}

.page-card-footer[b-zmkk6ga8gh] {
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.page-actions[b-zmkk6ga8gh] {
    display: flex;
    gap: 8px;
}

.action-btn[b-zmkk6ga8gh] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-zmkk6ga8gh] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-zmkk6ga8gh] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

/* Status badges */
.status-badge[b-zmkk6ga8gh] {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.active[b-zmkk6ga8gh] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-zmkk6ga8gh] {
    background: #fee2e2;
    color: #dc2626;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid[b-zmkk6ga8gh] {
        grid-template-columns: repeat(2, 1fr);
    }

    .pages-grid[b-zmkk6ga8gh] {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-grid[b-zmkk6ga8gh] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-zmkk6ga8gh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filters-section[b-zmkk6ga8gh] {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group[b-zmkk6ga8gh] {
        flex-wrap: wrap;
    }

    .search-box[b-zmkk6ga8gh] {
        max-width: 100%;
    }

    .form-grid[b-zmkk6ga8gh] {
        grid-template-columns: 1fr;
    }
}

/* /Pages/Admin/Products.razor.rz.scp.css */
/* Products Page Styles */
.products-page[b-uxfn2xv9dc] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-uxfn2xv9dc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-uxfn2xv9dc] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-uxfn2xv9dc] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-uxfn2xv9dc] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-uxfn2xv9dc] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-uxfn2xv9dc] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-uxfn2xv9dc] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover[b-uxfn2xv9dc] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-sm[b-uxfn2xv9dc] {
    padding: 8px 16px;
    font-size: 13px;
}

/* Filters Section */
.filters-section[b-uxfn2xv9dc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box[b-uxfn2xv9dc] {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i[b-uxfn2xv9dc] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-uxfn2xv9dc] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-uxfn2xv9dc] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group[b-uxfn2xv9dc] {
    display: flex;
    gap: 12px;
}

.filter-select[b-uxfn2xv9dc] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus[b-uxfn2xv9dc] {
    outline: none;
    border-color: #3b82f6;
}

/* Products Grid */
.products-grid[b-uxfn2xv9dc] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.product-card[b-uxfn2xv9dc] {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover[b-uxfn2xv9dc] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-image[b-uxfn2xv9dc] {
    position: relative;
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder[b-uxfn2xv9dc] {
    font-size: 64px;
    color: #cbd5e1;
}

.product-badge[b-uxfn2xv9dc] {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-badge.out-of-stock[b-uxfn2xv9dc] {
    background: #ef4444;
}

.product-actions[b-uxfn2xv9dc] {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions[b-uxfn2xv9dc] {
    opacity: 1;
}

.action-btn[b-uxfn2xv9dc] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover[b-uxfn2xv9dc] {
    background: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-uxfn2xv9dc] {
    background: #ef4444;
}

.product-content[b-uxfn2xv9dc] {
    padding: 20px;
}

.product-category[b-uxfn2xv9dc] {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name[b-uxfn2xv9dc] {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.product-description[b-uxfn2xv9dc] {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.product-meta[b-uxfn2xv9dc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-sku[b-uxfn2xv9dc] {
    font-size: 12px;
    color: #94a3b8;
}

.product-stock[b-uxfn2xv9dc] {
    font-size: 12px;
    font-weight: 600;
}

.product-stock.in-stock[b-uxfn2xv9dc] {
    color: #10b981;
}

.product-stock.out[b-uxfn2xv9dc] {
    color: #ef4444;
}

.product-pricing[b-uxfn2xv9dc] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.current-price[b-uxfn2xv9dc] {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.original-price[b-uxfn2xv9dc] {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-badge[b-uxfn2xv9dc] {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 4px;
}

.product-footer[b-uxfn2xv9dc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.product-sales[b-uxfn2xv9dc] {
    font-size: 13px;
    color: #64748b;
}

/* Pagination */
.pagination[b-uxfn2xv9dc] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-btn[b-uxfn2xv9dc] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-uxfn2xv9dc] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-btn:disabled[b-uxfn2xv9dc] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers[b-uxfn2xv9dc] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number[b-uxfn2xv9dc] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-number:hover[b-uxfn2xv9dc] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-number.active[b-uxfn2xv9dc] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.pagination-dots[b-uxfn2xv9dc] {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid[b-uxfn2xv9dc] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-uxfn2xv9dc] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .page-header-actions[b-uxfn2xv9dc] {
        width: 100%;
    }

    .page-header-actions .btn-primary[b-uxfn2xv9dc],
    .page-header-actions .btn-secondary[b-uxfn2xv9dc] {
        flex: 1;
        justify-content: center;
    }

    .filters-section[b-uxfn2xv9dc] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-uxfn2xv9dc] {
        max-width: 100%;
    }

    .filter-group[b-uxfn2xv9dc] {
        flex-wrap: wrap;
    }

    .filter-select[b-uxfn2xv9dc] {
        flex: 1;
        min-width: 120px;
    }

    .products-grid[b-uxfn2xv9dc] {
        grid-template-columns: 1fr;
    }

    .pagination[b-uxfn2xv9dc] {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-header-content h1[b-uxfn2xv9dc] {
        font-size: 24px;
    }

    .product-image[b-uxfn2xv9dc] {
        height: 160px;
    }

    .product-content[b-uxfn2xv9dc] {
        padding: 16px;
    }

    .product-name[b-uxfn2xv9dc] {
        font-size: 15px;
    }

    .current-price[b-uxfn2xv9dc] {
        font-size: 18px;
    }
}
/* /Pages/Admin/Settings.razor.rz.scp.css */
.settings-page[b-p28a8ckmtu] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-p28a8ckmtu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-header-content h1[b-p28a8ckmtu] {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-p28a8ckmtu] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.btn-primary[b-p28a8ckmtu] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-p28a8ckmtu] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-p28a8ckmtu] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-card[b-p28a8ckmtu] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-grid[b-p28a8ckmtu] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-field[b-p28a8ckmtu] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-p28a8ckmtu] {
    font-size: 13px;
    color: #64748b;
    font-weight: 800;
}

.form-input[b-p28a8ckmtu] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.form-input:focus[b-p28a8ckmtu] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.textarea[b-p28a8ckmtu] {
    resize: vertical;
}

.textarea[b-p28a8ckmtu] {
    resize: vertical;
}

.logo-row[b-p28a8ckmtu] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.logo-preview[b-p28a8ckmtu] {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.logo-preview-placeholder[b-p28a8ckmtu] {
    width: 120px;
    height: 80px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 800;
    background: #f8fafc;
}

.logo-input[b-p28a8ckmtu] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-help[b-p28a8ckmtu] {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 768px) {
    .form-grid[b-p28a8ckmtu] {
        grid-template-columns: 1fr;
    }

    .logo-row[b-p28a8ckmtu] {
        flex-direction: column;
    }
}

/* /Pages/Admin/Sliders.razor.rz.scp.css */
.sliders-page[b-hihxdz8fxm] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-hihxdz8fxm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    gap: 16px;
}

.page-header-content h1[b-hihxdz8fxm] {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page-header-content p[b-hihxdz8fxm] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-hihxdz8fxm] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-primary[b-hihxdz8fxm] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-hihxdz8fxm] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-hihxdz8fxm] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-hihxdz8fxm] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.btn-secondary:disabled[b-hihxdz8fxm] {
    opacity: 0.6;
    cursor: not-allowed;
}

.slider-grid[b-hihxdz8fxm] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.slider-card[b-hihxdz8fxm] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.slider-card-top[b-hihxdz8fxm] {
    display: flex;
    gap: 14px;
    padding: 16px;
}

.slider-thumb[b-hihxdz8fxm] {
    width: 92px;
    height: 72px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-thumb img[b-hihxdz8fxm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder[b-hihxdz8fxm] {
    color: #64748b;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    padding: 8px;
}

.slider-card-info[b-hihxdz8fxm] {
    flex: 1;
    min-width: 0;
}

.slider-title[b-hihxdz8fxm] {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-subtitle[b-hihxdz8fxm] {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-meta[b-hihxdz8fxm] {
    font-size: 12.5px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slider-card-footer[b-hihxdz8fxm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
}

.status-badge[b-hihxdz8fxm] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
}

.status-badge.active[b-hihxdz8fxm] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-hihxdz8fxm] {
    background: #fee2e2;
    color: #dc2626;
}

.slider-actions[b-hihxdz8fxm] {
    display: flex;
    gap: 10px;
}

.action-btn[b-hihxdz8fxm] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn.delete:hover[b-hihxdz8fxm] {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.empty-state[b-hihxdz8fxm] {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    color: #64748b;
}

.empty-title[b-hihxdz8fxm] {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.form-card[b-hihxdz8fxm] {
    margin-top: 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-card-header[b-hihxdz8fxm] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.form-grid[b-hihxdz8fxm] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-field[b-hihxdz8fxm] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label[b-hihxdz8fxm] {
    font-size: 13px;
    font-weight: 900;
    color: #64748b;
}

.form-input[b-hihxdz8fxm] {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}

.form-input:focus[b-hihxdz8fxm] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-image-row[b-hihxdz8fxm] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.image-preview[b-hihxdz8fxm] {
    width: 140px;
    height: 110px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-preview img[b-hihxdz8fxm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload[b-hihxdz8fxm] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-selected[b-hihxdz8fxm] {
    font-size: 12.5px;
    font-weight: 800;
    color: #334155;
}

.logo-help[b-hihxdz8fxm] {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 980px) {
    .slider-grid[b-hihxdz8fxm] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .slider-grid[b-hihxdz8fxm] {
        grid-template-columns: 1fr;
    }

    .form-grid[b-hihxdz8fxm] {
        grid-template-columns: 1fr;
    }

    .form-image-row[b-hihxdz8fxm] {
        flex-direction: column;
    }
}

/* /Pages/Admin/Users.razor.rz.scp.css */
/* Users Page Styles */
.users-page[b-5fdxeh5e76] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-5fdxeh5e76] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header-content h1[b-5fdxeh5e76] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.page-header-content p[b-5fdxeh5e76] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.page-header-actions[b-5fdxeh5e76] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-5fdxeh5e76] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover[b-5fdxeh5e76] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-5fdxeh5e76] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover[b-5fdxeh5e76] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Stats Grid */
.stats-grid[b-5fdxeh5e76] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card[b-5fdxeh5e76] {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-card:hover[b-5fdxeh5e76] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-5fdxeh5e76] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-icon.total[b-5fdxeh5e76] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon.admins[b-5fdxeh5e76] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-icon.sellers[b-5fdxeh5e76] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.customers[b-5fdxeh5e76] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-content[b-5fdxeh5e76] {
    flex: 1;
}

.stat-label[b-5fdxeh5e76] {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value[b-5fdxeh5e76] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

/* Filters Section */
.filters-section[b-5fdxeh5e76] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.search-box[b-5fdxeh5e76] {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i[b-5fdxeh5e76] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input[b-5fdxeh5e76] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-5fdxeh5e76] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group[b-5fdxeh5e76] {
    display: flex;
    gap: 12px;
}

.filter-select[b-5fdxeh5e76] {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus[b-5fdxeh5e76] {
    outline: none;
    border-color: #3b82f6;
}

/* Users Table */
.users-table-card[b-5fdxeh5e76] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.table-responsive[b-5fdxeh5e76] {
    overflow-x: auto;
}

.users-table[b-5fdxeh5e76] {
    width: 100%;
    border-collapse: collapse;
}

.users-table th[b-5fdxeh5e76],
.users-table td[b-5fdxeh5e76] {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.users-table th[b-5fdxeh5e76] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
}

.users-table td[b-5fdxeh5e76] {
    font-size: 14px;
    color: #1e293b;
}

.users-table tr:last-child td[b-5fdxeh5e76] {
    border-bottom: none;
}

.users-table tr:hover[b-5fdxeh5e76] {
    background: #f8fafc;
}

.user-info[b-5fdxeh5e76] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-5fdxeh5e76] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
}

.user-details[b-5fdxeh5e76] {
    flex: 1;
}

.user-name[b-5fdxeh5e76] {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.user-id[b-5fdxeh5e76] {
    font-size: 12px;
    color: #94a3b8;
}

.user-email[b-5fdxeh5e76] {
    font-size: 14px;
    color: #64748b;
}

.join-date[b-5fdxeh5e76] {
    font-size: 14px;
    color: #64748b;
}

/* Role Badges */
.role-badge[b-5fdxeh5e76] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.role-badge.admin[b-5fdxeh5e76] {
    background: #ede9fe;
    color: #7c3aed;
}

.role-badge.seller[b-5fdxeh5e76] {
    background: #d1fae5;
    color: #059669;
}

.role-badge.customer[b-5fdxeh5e76] {
    background: #dbeafe;
    color: #2563eb;
}

/* Status Badges */
.status-badge[b-5fdxeh5e76] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active[b-5fdxeh5e76] {
    background: #d1fae5;
    color: #059669;
}

.status-badge.inactive[b-5fdxeh5e76] {
    background: #f3f4f6;
    color: #6b7280;
}

.status-badge.suspended[b-5fdxeh5e76] {
    background: #fee2e2;
    color: #dc2626;
}

/* Action Buttons */
.action-buttons[b-5fdxeh5e76] {
    display: flex;
    gap: 8px;
}

.action-btn[b-5fdxeh5e76] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover[b-5fdxeh5e76] {
    background: #3b82f6;
    color: #fff;
}

.action-btn.delete:hover[b-5fdxeh5e76] {
    background: #ef4444;
}

/* Pagination */
.pagination[b-5fdxeh5e76] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination-btn[b-5fdxeh5e76] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled)[b-5fdxeh5e76] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-btn:disabled[b-5fdxeh5e76] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers[b-5fdxeh5e76] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number[b-5fdxeh5e76] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-number:hover[b-5fdxeh5e76] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pagination-number.active[b-5fdxeh5e76] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.pagination-dots[b-5fdxeh5e76] {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stats-grid[b-5fdxeh5e76] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header[b-5fdxeh5e76] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .page-header-actions[b-5fdxeh5e76] {
        width: 100%;
    }

    .page-header-actions .btn-primary[b-5fdxeh5e76],
    .page-header-actions .btn-secondary[b-5fdxeh5e76] {
        flex: 1;
        justify-content: center;
    }

    .stats-grid[b-5fdxeh5e76] {
        grid-template-columns: 1fr;
    }

    .filters-section[b-5fdxeh5e76] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-5fdxeh5e76] {
        max-width: 100%;
    }

    .filter-group[b-5fdxeh5e76] {
        flex-wrap: wrap;
    }

    .filter-select[b-5fdxeh5e76] {
        flex: 1;
        min-width: 120px;
    }

    .users-table th[b-5fdxeh5e76],
    .users-table td[b-5fdxeh5e76] {
        padding: 12px 16px;
        font-size: 13px;
    }

    .user-info[b-5fdxeh5e76] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .user-avatar[b-5fdxeh5e76] {
        display: none;
    }

    .pagination[b-5fdxeh5e76] {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-header-content h1[b-5fdxeh5e76] {
        font-size: 24px;
    }

    .stat-card[b-5fdxeh5e76] {
        padding: 20px;
    }

    .stat-value[b-5fdxeh5e76] {
        font-size: 24px;
    }

    .users-table-card[b-5fdxeh5e76] {
        border-radius: 8px;
    }

    .users-table th[b-5fdxeh5e76],
    .users-table td[b-5fdxeh5e76] {
        padding: 10px 12px;
    }

    .action-buttons[b-5fdxeh5e76] {
        flex-direction: column;
    }
}

/* Admin Addresses Panel */
.addresses-panel[b-5fdxeh5e76] {
    margin-top: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 18px;
}

.addresses-header[b-5fdxeh5e76] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.addresses-header h3[b-5fdxeh5e76] {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

.addresses-sub[b-5fdxeh5e76] {
    font-size: 13px;
    color: #64748b;
}

.addresses-actions[b-5fdxeh5e76] {
    display: flex;
    align-items: center;
}

.addresses-content[b-5fdxeh5e76] {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 18px;
}

.address-card[b-5fdxeh5e76] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.address-card-title[b-5fdxeh5e76] {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.form-field[b-5fdxeh5e76] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.form-label[b-5fdxeh5e76] {
    font-size: 13px;
    font-weight: 900;
    color: #64748b;
}

.address-input[b-5fdxeh5e76] {
    padding: 11px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}

.address-input:focus[b-5fdxeh5e76] {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-row[b-5fdxeh5e76] {
    display: flex;
    gap: 14px;
    margin: 10px 0 14px;
}

.checkbox-item[b-5fdxeh5e76] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 700;
}

.address-form-actions[b-5fdxeh5e76] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.addresses-list[b-5fdxeh5e76] {
    min-height: 200px;
}

.address-list-empty[b-5fdxeh5e76] {
    padding: 18px;
    color: #64748b;
    text-align: center;
}

.addresses-table[b-5fdxeh5e76] {
    width: 100%;
    border-collapse: collapse;
}

.addresses-table th[b-5fdxeh5e76],
.addresses-table td[b-5fdxeh5e76] {
    padding: 12px 12px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    text-align: left;
}

.addresses-table th[b-5fdxeh5e76] {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    background: #f8fafc;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.default-chip[b-5fdxeh5e76] {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    background: #f1f5f9;
    color: #64748b;
    margin-right: 8px;
}

.default-chip.on[b-5fdxeh5e76] {
    background: #d1fae5;
    color: #059669;
}

@media (max-width: 980px) {
    .addresses-content[b-5fdxeh5e76] {
        grid-template-columns: 1fr;
    }
}
/* /Shared/Toaster.razor.rz.scp.css */
.toast-container[b-ctnk4407rg] {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item[b-ctnk4407rg] {
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
    animation: toastSlideIn-b-ctnk4407rg 0.22s ease-out both;
    border-left: 6px solid transparent;
}

.toast-item.success[b-ctnk4407rg] {
    border-left-color: #10b981;
}

.toast-item.error[b-ctnk4407rg] {
    border-left-color: #ef4444;
}

.toast-item.info[b-ctnk4407rg] {
    border-left-color: #3b82f6;
}

.toast-content[b-ctnk4407rg] {
    flex: 1;
}

.toast-message[b-ctnk4407rg] {
    font-size: 14px;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.35;
}

.toast-close[b-ctnk4407rg] {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 1);
    background: #fff;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover[b-ctnk4407rg] {
    background: #f8fafc;
    color: #0f172a;
}

@keyframes toastSlideIn-b-ctnk4407rg {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

