/* ── Page header ── */
.ncrm-page-header { display:flex; align-items:center; justify-content:space-between; border-bottom:3px solid var(--blue); padding-bottom:12px; margin-bottom:20px; }
.ncrm-page-title { font-size:22px; font-weight:800; color:var(--navy); margin:0; }
.ncrm-page-sub { font-size:13px; color:var(--muted); margin:2px 0 0; }
.ncrm-header-actions { display:flex; gap:8px; }
/* ── Buttons ── */
.ncrm-btn { display:inline-flex; align-items:center; gap:4px; padding:7px 14px; border-radius:7px; font-size:13px; font-weight:600; text-decoration:none; cursor:pointer; border:1px solid transparent; line-height:1; transition:all .15s; white-space:nowrap; }
.ncrm-btn-primary { background:var(--blue); color:#fff; border-color:var(--blue); }
.ncrm-btn-primary:hover { background:#1a65a5; color:#fff; }
.ncrm-btn-secondary{ background:#e8f2fb; color:var(--blue); border-color:#b5d4f4; }
.ncrm-btn-secondary:hover { background:#d4e9f8; }
.ncrm-btn-ghost { background:#fff; color:var(--muted); border-color:var(--border); }
.ncrm-btn-ghost:hover { border-color:#94a3b8; color:var(--text); }
.ncrm-btn-xs { padding:4px 9px; font-size:11px; border-radius:5px; }
.ncrm-btn-sm { padding:6px 12px; font-size:12px; }
.ncrm-btn-pts { background:#fef9c3; color:#854d0e; border-color:#fde68a; }
/* ── Tier pills (filter bar) ── */
.ncrm-tier-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.ncrm-tier-pill { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:20px; font-size:12px; font-weight:600; text-decoration:none; border:1.5px solid var(--border); color:var(--muted); background:#fff; transition:all .15s; }
.ncrm-tier-pill:hover, .ncrm-tier-pill.active { border-color:var(--blue); color:var(--blue); background:#e8f2fb; }
.ncrm-pill-count { background:var(--bg-soft); color:var(--muted); padding:1px 6px; border-radius:10px; font-size:11px; }
/* ── Search bar ── */
.ncrm-search-bar { display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.ncrm-search-wrap { position:relative; flex:1; max-width:420px; }
.ncrm-search-icon { position:absolute; left:12px; top:50%; transform:translateY(-50%); font-size:14px; pointer-events:none; }
.ncrm-search-wrap input { width:100%; padding:9px 36px 9px 34px; border:1.5px solid var(--border); border-radius:8px; font-size:13px; outline:none; }
.ncrm-search-wrap input:focus { border-color:var(--blue); }
.ncrm-search-clear { position:absolute; right:10px; top:50%; transform:translateY(-50%); color:var(--muted); text-decoration:none; font-size:13px; }
.ncrm-results-bar { font-size:12px; color:var(--muted); margin-bottom:10px; }
/* ── Table ── */
.ncrm-table-wrap { overflow-x:auto; border-radius:var(--radius); border:1.5px solid var(--border); }
.ncrm-table { width:100%; border-collapse:collapse; font-size:13px; }
.ncrm-table thead tr { background:var(--navy); }
.ncrm-table thead th { color:#fff; padding:11px 14px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; white-space:nowrap; }
.ncrm-table tbody tr { border-bottom:1px solid var(--border); transition:background .1s; }
.ncrm-table tbody tr:hover { background:#f5faff; }
.ncrm-table tbody tr:last-child { border-bottom:none; }
.ncrm-table td { padding:11px 14px; vertical-align:middle; }
.ncrm-center { text-align:center; }
/* ── Member cell (avatar + name) ── */
.ncrm-member-cell { display:flex; align-items:center; gap:10px; }
.ncrm-avatar { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; flex-shrink:0; }
.ncrm-member-name { display:block; font-weight:700; color:var(--navy); }
.ncrm-meta-line { display:block; font-size:11px; color:var(--muted); margin-top:2px; }
.ncrm-link { color:var(--blue); text-decoration:none; font-size:12px; }
.ncrm-link:hover { text-decoration:underline; }
.ncrm-email { font-size:12px; }
.ncrm-date { font-size:12px; color:var(--muted); white-space:nowrap; }
/* ── Tier badge ── */
.ncrm-tier-badge { display:inline-block; padding:3px 9px; border-radius:20px; font-size:11px; font-weight:700; white-space:nowrap; }
.ncrm-tier-free { background:#f1f5f9; color:#475569; border:1px solid #e2e8f0; }
.ncrm-tier-basic { background:#dbeafe; color:#1e40af; border:1px solid #bfdbfe; }
.ncrm-tier-premium { background:#ede9fe; color:#5b21b6; border:1px solid #ddd6fe; }
.ncrm-tier-vip { background:#fef9c3; color:#713f12; border:1px solid #fde68a; }
/* ── Status ── */
.ncrm-status { display:inline-block; padding:2px 8px; border-radius:10px; font-size:11px; font-weight:700; }
.ncrm-status-active { background:#d1fae5; color:#065f46; }
.ncrm-status-cancelled { background:#fee2e2; color:#991b1b; }
.ncrm-status-free { background:#f1f5f9; color:#475569; }
.ncrm-status-none { color:#d1d5db; }
.ncrm-status-pending { background:#fef9c3; color:#713f12; }
.ncrm-status-approved { background:#d1fae5; color:#065f46; }
.ncrm-status-sent { background:#dbeafe; color:#1e40af; }
.ncrm-status-dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:#d1d5db; }
.ncrm-status-dot.ncrm-status-completed { background:#1a7a3c; }
.ncrm-status-dot.ncrm-status-cancelled { background:#b91c1c; }
.ncrm-status-dot.ncrm-status-scheduled { background:#1E73B9; }
/* ── Points ── */
.ncrm-points { font-size:13px; font-weight:700; }
.ncrm-points-has { color:var(--cyan); }
.ncrm-points-zero { color:#d1d5db; }
/* ── Count badges ── */
.ncrm-count-badge { display:inline-block; min-width:24px; text-align:center; padding:2px 6px; border-radius:10px; font-size:12px; font-weight:700; color:#94a3b8; background:#f8fafc; border:1px solid #e2e8f0; }
.ncrm-count-badge.has { background:#e8f2fb; color:var(--blue); border-color:#b5d4f4; }
/* ── Auth badge ── */
.ncrm-auth-badge { display:inline-block; padding:2px 8px; border-radius:10px; font-size:11px; font-weight:700; }
.ncrm-auth-email { background:#f1f5f9; color:#475569; }
.ncrm-auth-google { background:#fef9c3; color:#854d0e; }
.ncrm-auth-apple { background:#1a1a1a; color:#fff; }
.ncrm-auth-facebook { background:#1877f2; color:#fff; }
/* ── Row actions ── */
.ncrm-row-actions { display:flex; gap:4px; flex-wrap:nowrap; }
/* ── Empty state ── */
.ncrm-empty-row td { padding:0 !important; }
.ncrm-empty { text-align:center; padding:48px 20px; background:#f8fafc; }
.ncrm-empty-icon { font-size:36px; display:block; margin-bottom:10px; }
.ncrm-empty p { color:var(--muted); margin:0 0 12px; }
/* ── Pagination ── */
.ncrm-pagination { margin-top:16px; display:flex; gap:10px; align-items:center; }
.ncrm-page-info { font-size:13px; color:var(--muted); }
/* ────────────────────────────────
DETAIL VIEW STYLES
──────────────────────────────── */
.ncrm-detail-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.ncrm-breadcrumb { font-size:14px; color:var(--muted); }
.ncrm-breadcrumb a { color:var(--blue); text-decoration:none; font-weight:600; }
.ncrm-bc-sep { margin:0 8px; }
.ncrm-quick-actions { display:flex; gap:8px; flex-wrap:wrap; }
/* ── Hero bar ── */
.ncrm-hero-bar { background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); padding:20px 24px; margin-bottom:20px; display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.ncrm-hero-left { display:flex; align-items:center; gap:16px; flex:1; min-width:280px; }
.ncrm-detail-avatar { width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:800; flex-shrink:0; overflow:hidden; }
.ncrm-detail-avatar img { width:100%; height:100%; object-fit:cover; }
.ncrm-hero-name { font-size:18px; font-weight:800; color:var(--navy); margin:0 0 4px; }
.ncrm-hero-meta { display:flex; gap:8px; flex-wrap:wrap; font-size:12px; color:var(--muted); margin-bottom:6px; }
.ncrm-hero-meta a { color:var(--blue); text-decoration:none; }
.ncrm-hero-badges { display:flex; gap:6px; flex-wrap:wrap; }
.ncrm-status-badge { display:inline-block; padding:2px 8px; border-radius:10px; font-size:11px; font-weight:700; }
.ncrm-verified { background:#d1fae5; color:#065f46; }
.ncrm-unverified { background:#fef9c3; color:#713f12; }
.ncrm-hero-stats { display:flex; gap:12px; flex-wrap:wrap; }
.ncrm-hero-stat { text-align:center; min-width:72px; }
.ncrm-hero-stat-val { font-size:22px; font-weight:900; line-height:1; }
.ncrm-hero-stat-lbl { font-size:10px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:600; margin-top:3px; }
/* ── Detail grid ── */
.ncrm-detail-grid { display:grid; grid-template-columns:280px 1fr; gap:20px; align-items:start; }
@media (max-width:900px) { .ncrm-detail-grid { grid-template-columns:1fr; } }
/* ── Panels ── */
.ncrm-panel { background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); overflow:hidden; margin-bottom:18px; }
.ncrm-panel-head { background:var(--bg-soft); padding:12px 18px; font-size:13px; font-weight:700; color:var(--navy); border-bottom:1px solid var(--border); display:flex; align-items:center; gap:8px; }
.ncrm-panel-head-sub { font-size:12px; font-weight:400; color:var(--muted); }
.ncrm-panel-count { display:inline-block; background:var(--blue); color:#fff; font-size:11px; font-weight:700; padding:1px 7px; border-radius:10px; }
.ncrm-panel-body { padding:10px 18px 16px; }
.ncrm-panel-foot { padding:12px 18px; background:var(--bg-soft); border-top:1px solid var(--border); display:flex; gap:8px; }
/* ── Row layout inside panels ── */
.ncrm-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid #EEF3F8; font-size:13px; }
.ncrm-row:last-child { border-bottom:none; }
.ncrm-row-label { color:var(--muted); font-weight:600; min-width:90px; }
.ncrm-row-val { color:var(--text); text-align:right; word-break:break-all; }
/* ── Membership mini-grid ── */
.ncrm-mem-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-bottom:14px; }
.ncrm-mem-cell { background:var(--bg-soft); border-radius:7px; padding:9px; text-align:center; }
.ncrm-mem-val { font-size:13px; font-weight:700; color:var(--navy); }
.ncrm-mem-key { font-size:11px; color:var(--muted); margin-top:2px; }
/* ── Coupon ── */
.ncrm-coupon-panel .ncrm-panel-head { background:linear-gradient(135deg,#1E73B9,#0891b2); color:#fff; border-bottom-color:rgba(255,255,255,.2); }
.ncrm-coupon-code { font-family:monospace; font-size:20px; font-weight:800; letter-spacing:.1em; color:var(--navy); background:var(--bg-soft); border:2px dashed var(--blue); border-radius:8px; padding:12px 20px; text-align:center; margin-top:8px; }
/* ── Forms ── */
.ncrm-tier-form { margin-top:14px; }
.ncrm-form-label { display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); margin-bottom:4px; }
.ncrm-input { width:100%; padding:7px 10px; border:1.5px solid var(--border); border-radius:6px; font-size:13px; }
.ncrm-input:focus { border-color:var(--blue); outline:none; }
.ncrm-input-sm { width:90px; }
.ncrm-inline-form { display:flex; gap:10px; align-items:flex-end; flex-wrap:wrap; }
.ncrm-select { padding:7px 10px; border:1.5px solid var(--border); border-radius:6px; font-size:13px; }
/* ── List panels ── */
.ncrm-list-panel { padding:0 !important; }
.ncrm-list-row { display:flex; align-items:center; gap:10px; padding:10px 18px; border-bottom:1px solid #EEF3F8; font-size:13px; }
.ncrm-list-row:last-child { border-bottom:none; }
.ncrm-list-icon { font-size:16px; flex-shrink:0; }
.ncrm-cost { font-weight:700; color:var(--green); white-space:nowrap; }
.ncrm-see-more { padding:10px 18px; margin:0; }
/* ── Points ledger ── */
.ncrm-points-delta { font-size:13px; font-weight:800; min-width:50px; text-align:center; }
.ncrm-pts-pos { color:var(--green); }
.ncrm-pts-neg { color:var(--red); }
.ncrm-pts-type { font-size:10px; color:var(--muted); background:var(--bg-soft); padding:1px 5px; border-radius:4px; }
/* ── Assets ── */
.ncrm-assets-grid { display:flex; flex-wrap:wrap; gap:8px; }
.ncrm-asset-chip { background:var(--bg-soft); border:1px solid var(--border); border-radius:20px; padding:5px 12px; font-size:12px; font-weight:600; color:var(--text); }
/* ── Badges ── */
.ncrm-badge { display:inline-block; padding:1px 6px; border-radius:4px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.ncrm-badge-warn { background:#fef9c3; color:#713f12; }
.ncrm-type-badge { background:#e8f2fb; color:var(--blue); margin-left:4px; }
/* ── Misc ── */
.ncrm-muted { color:var(--muted); font-size:13px; margin:8px 0 0; }
.ncrm-detail-left .ncrm-panel { margin-bottom:16px; }
?>
Fatal error: Uncaught Error: Call to undefined method NTFAV_DB::init() in /home/u289889984/domains/nortech.site/public_html/wp-content/plugins/nortech-crm-v320/nortech-crm-pro.php:1148
Stack trace:
#0 /home/u289889984/domains/nortech.site/public_html/wp-includes/class-wp-hook.php(341): ntcrm_pro_boot_session4()
#1 /home/u289889984/domains/nortech.site/public_html/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()
#2 /home/u289889984/domains/nortech.site/public_html/wp-includes/plugin.php(522): WP_Hook->do_action()
#3 /home/u289889984/domains/nortech.site/public_html/wp-settings.php(593): do_action()
#4 /home/u289889984/domains/nortech.site/public_html/wp-config.php(121): require_once('/home/u28988998...')
#5 /home/u289889984/domains/nortech.site/public_html/wp-load.php(50): require_once('/home/u28988998...')
#6 /home/u289889984/domains/nortech.site/public_html/wp-blog-header.php(13): require_once('/home/u28988998...')
#7 /home/u289889984/domains/nortech.site/public_html/index.php(17): require('/home/u28988998...')
#8 {main}
thrown in /home/u289889984/domains/nortech.site/public_html/wp-content/plugins/nortech-crm-v320/nortech-crm-pro.php on line 1148