2026-03-16 23:20:54 +01:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap');
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--brand-orange: #fd6216;
|
|
|
|
|
--brand-navy: #050026;
|
|
|
|
|
--brand-orange-50: #fff1e8;
|
|
|
|
|
--brand-orange-100: #ffe2d2;
|
|
|
|
|
--brand-orange-200: #ffc9ac;
|
2026-03-19 03:36:46 +01:00
|
|
|
--ink: #0f172a;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
2026-03-19 03:36:46 +01:00
|
|
|
background: #f8fafc;
|
|
|
|
|
color: var(--ink);
|
2026-03-16 23:20:54 +01:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---- Auth / Login ---- */
|
|
|
|
|
.auth-page {
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-bg {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(circle at 20% 20%, rgba(253, 98, 22, 0.24), transparent 42%),
|
|
|
|
|
radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.16), transparent 34%),
|
|
|
|
|
linear-gradient(180deg, #100b2f 0%, #0c0828 52%, #07051d 100%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-layout {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: min(1120px, 100%);
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1.08fr 0.92fr;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual {
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
|
|
|
background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
padding: 28px;
|
|
|
|
|
box-shadow: 0 24px 72px -34px rgba(0, 0, 0, 0.72);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual-kicker {
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
color: #ffd7c2;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual h1 {
|
|
|
|
|
margin: 16px 0 0;
|
|
|
|
|
font-size: clamp(30px, 3.4vw, 42px);
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual p {
|
|
|
|
|
margin: 12px 0 0;
|
|
|
|
|
color: rgba(255, 255, 255, 0.82);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual img {
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 280px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-card {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.22);
|
|
|
|
|
background: rgba(255, 255, 255, 0.96);
|
|
|
|
|
box-shadow: 0 24px 72px -34px rgba(0, 0, 0, 0.72);
|
|
|
|
|
padding: 30px;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-form-card {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-logo {
|
|
|
|
|
height: 52px;
|
|
|
|
|
width: auto;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-title {
|
|
|
|
|
margin: 18px 0 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-copy {
|
|
|
|
|
margin: 12px 0 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-form-grid {
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-switch {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-switch.split {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-link-btn {
|
|
|
|
|
border: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--brand-orange);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-link-btn:hover {
|
|
|
|
|
color: #ea580c;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-inline-msg {
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
|
margin: 6px 0 0;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---- Admin Shell ---- */
|
|
|
|
|
.admin-root {
|
|
|
|
|
min-height: 100vh;
|
2026-03-23 21:13:42 +01:00
|
|
|
background: #f9fafb;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-header {
|
2026-03-19 13:50:20 +01:00
|
|
|
position: fixed;
|
2026-03-19 03:36:46 +01:00
|
|
|
top: 0;
|
2026-03-19 13:50:20 +01:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2026-03-23 21:13:42 +01:00
|
|
|
z-index: 50;
|
2026-03-19 13:50:20 +01:00
|
|
|
height: 64px;
|
2026-03-19 03:36:46 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2026-03-23 21:13:42 +01:00
|
|
|
border-bottom: 1px solid #e5e7eb;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
|
|
|
|
|
padding: 0 24px;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-header-left {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-23 21:13:42 +01:00
|
|
|
gap: 32px;
|
2026-03-19 13:50:20 +01:00
|
|
|
min-width: 0;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-brand {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-brand img {
|
2026-03-23 21:13:42 +01:00
|
|
|
height: 34px;
|
2026-03-19 03:36:46 +01:00
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.admin-page-heading {
|
2026-03-19 03:36:46 +01:00
|
|
|
margin: 0;
|
2026-03-19 13:50:20 +01:00
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #1f2937;
|
2026-03-23 21:13:42 +01:00
|
|
|
margin-left: 112px;
|
2026-03-19 13:50:20 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.admin-header-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-23 21:13:42 +01:00
|
|
|
gap: 24px;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.admin-avatar-btn {
|
|
|
|
|
border: 0;
|
2026-03-23 21:13:42 +01:00
|
|
|
border-radius: 8px;
|
2026-03-19 13:50:20 +01:00
|
|
|
background: transparent;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-23 21:13:42 +01:00
|
|
|
gap: 12px;
|
|
|
|
|
padding: 4px 8px 4px 4px;
|
2026-03-19 13:50:20 +01:00
|
|
|
cursor: pointer;
|
2026-03-23 21:13:42 +01:00
|
|
|
color: #6b7280;
|
|
|
|
|
transition: background-color 150ms ease;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-avatar-btn:hover {
|
|
|
|
|
background: #f3f4f6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-avatar {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid #fed7aa;
|
|
|
|
|
background: #ffedd5;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-avatar-meta {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
2026-03-23 21:13:42 +01:00
|
|
|
line-height: 1;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-avatar-name {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #334155;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-avatar-role {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 21:13:42 +01:00
|
|
|
.admin-notification-btn {
|
|
|
|
|
position: relative;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: background-color 150ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-notification-btn svg {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-notification-btn:hover {
|
|
|
|
|
background: #f3f4f6;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.admin-logout-btn {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-logout-btn svg {
|
2026-03-23 21:13:42 +01:00
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-logout-btn:hover {
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:20:54 +01:00
|
|
|
.shell {
|
|
|
|
|
display: grid;
|
2026-03-23 21:13:42 +01:00
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
|
height: 100vh;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
overflow: hidden;
|
2026-03-19 13:50:20 +01:00
|
|
|
padding-top: 80px;
|
|
|
|
|
background: #f9fafb;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-23 21:13:42 +01:00
|
|
|
.sidebar-wrap {
|
|
|
|
|
height: calc(100vh - 5rem);
|
|
|
|
|
border-right: 1px solid #e2e8f0;
|
|
|
|
|
background: #fff;
|
|
|
|
|
width: 256px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transition: width 300ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shell.sidebar-collapsed .sidebar-wrap {
|
|
|
|
|
width: 80px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar {
|
2026-03-23 21:13:42 +01:00
|
|
|
height: 100%;
|
2026-03-19 03:36:46 +01:00
|
|
|
border-right: 1px solid #e2e8f0;
|
2026-03-16 23:20:54 +01:00
|
|
|
background: #fcfcfd;
|
2026-03-19 03:36:46 +01:00
|
|
|
padding: 20px 12px 12px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-23 21:13:42 +01:00
|
|
|
min-height: 0;
|
|
|
|
|
transition: all 300ms ease;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.sidebar-toggle-row {
|
2026-03-23 21:13:42 +01:00
|
|
|
margin-bottom: 16px;
|
2026-03-19 03:36:46 +01:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
2026-03-23 21:13:42 +01:00
|
|
|
padding: 0 8px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.sidebar-toggle-btn {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #64748b;
|
2026-03-23 21:13:42 +01:00
|
|
|
line-height: 0;
|
|
|
|
|
padding: 8px;
|
2026-03-19 03:36:46 +01:00
|
|
|
cursor: pointer;
|
2026-03-23 21:13:42 +01:00
|
|
|
transition: background-color 150ms ease, color 150ms ease;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-toggle-btn:hover {
|
|
|
|
|
background: #f1f5f9;
|
|
|
|
|
color: #334155;
|
|
|
|
|
}
|
|
|
|
|
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
.sidebar-chevron {
|
|
|
|
|
display: inline-block;
|
2026-03-23 21:13:42 +01:00
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
transition: transform 300ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-chevron.collapsed {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Collapsed sidebar */
|
|
|
|
|
.sidebar.sidebar-collapsed {
|
2026-03-23 21:13:42 +01:00
|
|
|
align-items: stretch;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar.sidebar-collapsed .sidebar-toggle-row {
|
2026-03-23 21:13:42 +01:00
|
|
|
padding: 0 8px;
|
|
|
|
|
justify-content: flex-end;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar.sidebar-collapsed .nav-item {
|
|
|
|
|
justify-content: center;
|
2026-03-23 21:13:42 +01:00
|
|
|
padding: 12px 8px;
|
|
|
|
|
gap: 12px;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collapsed-dot {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -2px;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--brand-orange);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.sidebar-nav {
|
|
|
|
|
flex: 1;
|
2026-03-23 21:13:42 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 6px;
|
2026-03-19 03:36:46 +01:00
|
|
|
min-height: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding-right: 4px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item {
|
2026-03-19 03:36:46 +01:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-03-23 21:13:42 +01:00
|
|
|
gap: 12px;
|
2026-03-16 23:20:54 +01:00
|
|
|
text-decoration: none;
|
2026-03-23 21:13:42 +01:00
|
|
|
color: #64748b;
|
2026-03-16 23:20:54 +01:00
|
|
|
border: 1px solid transparent;
|
2026-03-19 13:50:20 +01:00
|
|
|
border-radius: 12px;
|
2026-03-23 21:13:42 +01:00
|
|
|
padding: 12px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: 1.25;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-weight: 500;
|
2026-03-23 21:13:42 +01:00
|
|
|
transition: all 180ms ease;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-icon {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
flex: 0 0 18px;
|
|
|
|
|
object-fit: contain;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item:hover {
|
2026-03-19 03:36:46 +01:00
|
|
|
border-color: #e2e8f0;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:20:54 +01:00
|
|
|
.nav-item.active {
|
|
|
|
|
border-color: var(--brand-orange-200);
|
2026-03-19 03:36:46 +01:00
|
|
|
background: linear-gradient(to right, var(--brand-orange-50), color-mix(in srgb, var(--brand-orange-100) 70%, white 30%));
|
2026-03-23 21:13:42 +01:00
|
|
|
color: #0f172a;
|
2026-03-19 03:36:46 +01:00
|
|
|
box-shadow: inset 3px 0 0 0 var(--brand-orange);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-title {
|
|
|
|
|
flex: 1;
|
2026-03-23 21:13:42 +01:00
|
|
|
min-width: 0;
|
|
|
|
|
white-space: nowrap;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
overflow: hidden;
|
2026-03-23 21:13:42 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-active-rail {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 8px;
|
|
|
|
|
bottom: 8px;
|
|
|
|
|
width: 3px;
|
|
|
|
|
border-radius: 0 999px 999px 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 180ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item.active .nav-active-rail {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
background: var(--brand-orange);
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.active-badge {
|
|
|
|
|
border: 1px solid var(--brand-orange-200);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background: var(--brand-orange-100);
|
|
|
|
|
color: #b45309;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
padding: 2px 7px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
2026-03-19 03:36:46 +01:00
|
|
|
min-width: 0;
|
2026-03-23 21:13:42 +01:00
|
|
|
overflow: hidden;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
height: 100%;
|
2026-03-19 13:50:20 +01:00
|
|
|
background: #f9fafb;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.main-inner {
|
2026-03-19 13:50:20 +01:00
|
|
|
max-width: none;
|
|
|
|
|
padding: 24px;
|
2026-03-23 21:13:42 +01:00
|
|
|
overflow-y: auto;
|
|
|
|
|
height: calc(100vh - 80px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: #c7c7c7 transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar-track {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: #c7c7c7;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background-color: #aeb4be;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-tab-wrap {
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
background: #fff;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
margin: -20px -24px 20px;
|
|
|
|
|
padding: 0 24px;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-tabs {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-tab {
|
|
|
|
|
text-decoration: none;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
border: none;
|
2026-03-19 03:36:46 +01:00
|
|
|
border-bottom: 2px solid transparent;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
background: transparent;
|
2026-03-19 03:36:46 +01:00
|
|
|
padding: 12px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #475569;
|
|
|
|
|
margin-bottom: -1px;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
2026-03-19 03:36:46 +01:00
|
|
|
transition: color 140ms ease, border-color 140ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-tab:hover {
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
border-bottom-color: #fd6216;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-tab.active {
|
|
|
|
|
border-bottom-color: #fd6216;
|
|
|
|
|
color: #050026;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---- Shared Content ---- */
|
2026-03-16 23:20:54 +01:00
|
|
|
.page-title {
|
|
|
|
|
margin: 0;
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
font-size: 22px;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-weight: 800;
|
2026-03-16 23:20:54 +01:00
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-subtitle {
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
margin: 4px 0 0;
|
|
|
|
|
font-size: 13px;
|
2026-03-16 23:20:54 +01:00
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.page-hero-card {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
border: 1px solid #fed7aa;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 10px 28px -24px rgba(15, 23, 42, 0.42);
|
|
|
|
|
padding: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-link-tabs {
|
2026-03-20 15:37:56 +01:00
|
|
|
display: flex;
|
2026-03-19 13:50:20 +01:00
|
|
|
flex-wrap: wrap;
|
2026-03-20 15:37:56 +01:00
|
|
|
gap: 32px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 0 24px;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-link-tab {
|
|
|
|
|
text-decoration: none;
|
2026-03-20 15:37:56 +01:00
|
|
|
border: 0;
|
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
padding: 14px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
transition: color 150ms ease, border-color 150ms ease;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-link-tab:hover {
|
2026-03-20 15:37:56 +01:00
|
|
|
border-bottom-color: #fd6216;
|
2026-03-19 13:50:20 +01:00
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-link-tab.active {
|
2026-03-20 15:37:56 +01:00
|
|
|
border-bottom-color: #fd6216;
|
|
|
|
|
color: #0f172a;
|
2026-03-19 13:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-segmented {
|
|
|
|
|
margin: 14px 0 12px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-segment {
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #475569;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 7px 12px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-segment.active {
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-segment:disabled {
|
|
|
|
|
opacity: 0.45;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:20:54 +01:00
|
|
|
.grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1.2fr 1fr;
|
|
|
|
|
gap: 16px;
|
2026-03-19 03:36:46 +01:00
|
|
|
margin-top: 16px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
background: #fff;
|
2026-03-19 03:36:46 +01:00
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 18px;
|
|
|
|
|
box-shadow: 0 12px 32px -28px rgba(15, 23, 42, 0.35);
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card h2 {
|
|
|
|
|
margin: 0 0 12px;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-size: 19px;
|
|
|
|
|
color: #111827;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field {
|
2026-03-19 03:36:46 +01:00
|
|
|
margin-bottom: 14px;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field label {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 6px;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-size: 12px;
|
2026-03-16 23:20:54 +01:00
|
|
|
font-weight: 600;
|
|
|
|
|
color: #334155;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field input,
|
|
|
|
|
.field textarea,
|
|
|
|
|
.field select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
2026-03-19 03:36:46 +01:00
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 10px 12px;
|
2026-03-16 23:20:54 +01:00
|
|
|
font-size: 14px;
|
|
|
|
|
background: #fff;
|
2026-03-19 03:36:46 +01:00
|
|
|
outline: none;
|
|
|
|
|
transition: border-color 160ms ease, box-shadow 160ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field input:focus,
|
|
|
|
|
.field textarea:focus,
|
|
|
|
|
.field select:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-top: 16px;
|
2026-03-19 03:36:46 +01:00
|
|
|
flex-wrap: wrap;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #334155;
|
2026-03-19 03:36:46 +01:00
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 9px 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-decoration: none;
|
2026-03-16 23:20:54 +01:00
|
|
|
cursor: pointer;
|
2026-03-19 03:36:46 +01:00
|
|
|
transition: all 160ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn:hover {
|
|
|
|
|
border-color: #94a3b8;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn:disabled {
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
cursor: not-allowed;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.primary {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
background: var(--brand-orange);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.btn.primary:hover {
|
|
|
|
|
border-color: #ea580c;
|
|
|
|
|
background: #ea580c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block-btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:20:54 +01:00
|
|
|
.json {
|
|
|
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
background: #0f172a;
|
|
|
|
|
color: #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
max-height: 560px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.notice {
|
2026-03-19 03:36:46 +01:00
|
|
|
margin-top: 10px;
|
2026-03-16 23:20:54 +01:00
|
|
|
font-size: 12px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inline-note {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #0f766e;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-weight: 700;
|
2026-03-16 23:20:54 +01:00
|
|
|
}
|
2026-03-16 23:30:37 +01:00
|
|
|
|
|
|
|
|
.list-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-bottom: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.table-wrap {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: separate;
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-table thead th {
|
|
|
|
|
background: #050026;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-table tbody td {
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
color: #334155;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-table tbody tr:hover td {
|
|
|
|
|
background: #fff7ed;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.list-table tbody tr.row-selected td {
|
|
|
|
|
background: #fff7ed;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 16:08:09 +01:00
|
|
|
.list-table-soft-head thead th {
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.align-right {
|
|
|
|
|
text-align: right !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 13:50:20 +01:00
|
|
|
.action-icon-btn {
|
|
|
|
|
border: 1px solid #d1d5db;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #334155;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-icon-btn:hover {
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-icon-btn.danger {
|
|
|
|
|
color: #b91c1c;
|
|
|
|
|
border-color: #fca5a5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-pagination {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
border-top: 1px solid #e2e8f0;
|
|
|
|
|
background: #fff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 03:36:46 +01:00
|
|
|
.status-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
background: #f1f5f9;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-chip.active {
|
|
|
|
|
background: #ecfdf5;
|
|
|
|
|
color: #047857;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:30:37 +01:00
|
|
|
.list-item {
|
|
|
|
|
border: 1px solid #dbe1ec;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-item h3 {
|
|
|
|
|
margin: 0 0 8px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-item p {
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 23:37:26 +01:00
|
|
|
.json-input {
|
|
|
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-note {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #b91c1c;
|
2026-03-19 03:36:46 +01:00
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1180px) {
|
|
|
|
|
.auth-layout {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.auth-visual {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1000px) {
|
|
|
|
|
.shell {
|
|
|
|
|
grid-template-columns: 1fr;
|
2026-03-19 13:50:20 +01:00
|
|
|
padding-top: 72px;
|
|
|
|
|
height: calc(100vh - 72px);
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
|
border-right: 0;
|
|
|
|
|
border-bottom: 1px solid #dbe1ec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid,
|
2026-03-19 15:14:15 +01:00
|
|
|
.list-grid,
|
|
|
|
|
.field-grid-2,
|
|
|
|
|
.detail-layout {
|
2026-03-19 03:36:46 +01:00
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-header-inner {
|
2026-03-19 13:50:20 +01:00
|
|
|
height: 56px;
|
|
|
|
|
width: calc(100% - 24px);
|
|
|
|
|
margin: 0 12px;
|
|
|
|
|
gap: 10px;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-brand img {
|
2026-03-19 13:50:20 +01:00
|
|
|
height: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-page-heading {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.admin-role-chip,
|
|
|
|
|
.admin-avatar-meta {
|
|
|
|
|
display: none;
|
2026-03-19 03:36:46 +01:00
|
|
|
}
|
2026-03-16 23:37:26 +01:00
|
|
|
}
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
|
|
|
|
|
/* ---- Builder Components ---- */
|
|
|
|
|
.builder-header {
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
border: 1px solid #ffc9ac;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-header h2 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #111827;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-header p {
|
|
|
|
|
margin: 4px 0 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-header-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-tab-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-tab-btn {
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #475569;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 150ms ease;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-tab-btn:hover {
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-tab-btn.active {
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-section {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-section-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-section-header input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-section-header input:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-item {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-item input,
|
|
|
|
|
.builder-item textarea,
|
|
|
|
|
.builder-item select {
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
outline: none;
|
|
|
|
|
background: #fff;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-item input:focus,
|
|
|
|
|
.builder-item textarea:focus,
|
|
|
|
|
.builder-item select:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.builder-item-row-4 {
|
|
|
|
|
grid-template-columns: 1fr 90px 90px 110px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.danger {
|
|
|
|
|
border-color: #fca5a5;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #b91c1c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.danger:hover {
|
|
|
|
|
border-color: #ef4444;
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.orange {
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.orange:hover {
|
|
|
|
|
background: #ffe2d2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.navy {
|
|
|
|
|
border-color: #050026;
|
|
|
|
|
background: #050026;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.navy:hover {
|
|
|
|
|
background: #0a0040;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-grid-2 {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 15:14:15 +01:00
|
|
|
.kv-item {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kv-label {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.kv-value {
|
|
|
|
|
margin: 6px 0 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-pill {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-approved {
|
|
|
|
|
border-color: #86efac;
|
|
|
|
|
background: #f0fdf4;
|
|
|
|
|
color: #166534;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-pending {
|
|
|
|
|
border-color: #fcd34d;
|
|
|
|
|
background: #fffbeb;
|
|
|
|
|
color: #92400e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-rejected {
|
|
|
|
|
border-color: #fca5a5;
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
color: #991b1b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-info {
|
|
|
|
|
border-color: #93c5fd;
|
|
|
|
|
background: #eff6ff;
|
|
|
|
|
color: #1d4ed8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.identity-avatar {
|
|
|
|
|
width: 62px;
|
|
|
|
|
height: 62px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: linear-gradient(135deg, #fd6216 0%, #050026 100%);
|
|
|
|
|
color: #fff;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat {
|
|
|
|
|
min-width: 90px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat-value {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-stat-label {
|
|
|
|
|
margin: 4px 0 0;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.meta-chip {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
color: #475569;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-layout {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 2fr 1fr;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 15:19:02 +01:00
|
|
|
.modal-backdrop {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 60;
|
|
|
|
|
background: rgba(2, 6, 23, 0.55);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
|
width: min(560px, 100%);
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.6);
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
.sub-card {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-19 15:14:15 +01:00
|
|
|
.sub-card-success {
|
|
|
|
|
border-color: #86efac;
|
|
|
|
|
background: #f0fdf4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sub-card-warning {
|
|
|
|
|
border-color: #fcd34d;
|
|
|
|
|
background: #fffbeb;
|
|
|
|
|
}
|
|
|
|
|
|
feat(admin): build complete admin panel with UI parity and search/filter
- Implement all admin management pages (employees, users, jobs, leads, orders, companies, customers, candidates, approval, invoices, reviews, support, KB, pricing, coupons, credits, discounts, tax, reports, ledger)
- Implement 9 professional vertical pages (developers, designers, tutors, video editors, photographers, makeup artists, graphic designers, social media managers, fitness trainers)
- Implement internal/external dashboard and role management with builder UI
- Fix tab styling: replace inline border-bottom styles with admin-tab CSS class across 8+ pages
- Add search/filter functionality to invoice and review pages
- Add toggle status (activate/deactivate) to employees page with PATCH /api/admin/employees/{id}
- Align UI styling with NextJS admin panel for visual parity
- Add stat cards to approval page showing counts by status
- Implement graceful empty states for all list views
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-03-19 13:04:10 +01:00
|
|
|
.sub-card-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sub-card-header h4 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #111827;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nested-card {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nested-card-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nested-card-header input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nested-card-header input:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-item {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-item input,
|
|
|
|
|
.widget-item textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
outline: none;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget-item input:focus,
|
|
|
|
|
.widget-item textarea:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Permission table for internal role management */
|
|
|
|
|
.perm-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: separate;
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.perm-table thead th {
|
|
|
|
|
background: #0B0720;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.perm-table thead th:not(:first-child) {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.perm-table tbody td {
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
color: #334155;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.perm-table tbody td:not(:first-child) {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.perm-table tbody tr:hover td {
|
|
|
|
|
background: #fff7ed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.module-picker {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.module-chip {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
transition: all 150ms ease;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.module-chip:hover {
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.module-chip.selected {
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Builder preview */
|
|
|
|
|
.preview-shell {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: #f1f5f9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 16px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-layout {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 260px 1fr;
|
|
|
|
|
min-height: 500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-sidebar {
|
|
|
|
|
border-right: 1px solid #e2e8f0;
|
|
|
|
|
background: #fcfcfd;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-sidebar-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #475569;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
width: 100%;
|
|
|
|
|
transition: all 150ms ease;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-sidebar-item:hover {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #0f172a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-sidebar-item.active {
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
color: #111827;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
box-shadow: inset 3px 0 0 0 #fd6216;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-content {
|
|
|
|
|
padding: 24px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-section {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-tabs {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
border-bottom: 1px solid #e2e8f0;
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-tab-btn {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: #475569;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-tab-btn.active {
|
|
|
|
|
border-color: #ffc9ac;
|
|
|
|
|
background: #fff1e8;
|
|
|
|
|
color: #c2410c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-fields-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
|
gap: 16px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-field label {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #334155;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-field input,
|
|
|
|
|
.preview-field select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-widget-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-widget {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-widget .w-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-widget .w-metric {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #050026;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.preview-widget .w-desc {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Onboarding step builder */
|
|
|
|
|
.step-builder {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.step-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.step-num {
|
|
|
|
|
background: #050026;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.step-title-input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.step-title-input:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(253, 98, 22, 0.14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-type-select {
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 130px 100px auto;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-row input,
|
|
|
|
|
.field-row select {
|
|
|
|
|
border: 1px solid #cbd5e1;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
outline: none;
|
|
|
|
|
font-family: 'Exo 2', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field-row input:focus,
|
|
|
|
|
.field-row select:focus {
|
|
|
|
|
border-color: var(--brand-orange);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-box {
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
border: 1px solid #fca5a5;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
color: #b91c1c;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.success-note {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #047857;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-box {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #475569;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.role-detail-card {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.role-field-readonly {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 10px 12px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
background: #f8fafc;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-actions-right {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.role-form-section {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.role-form-section h3 {
|
|
|
|
|
margin: 0 0 4px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.role-form-section p {
|
|
|
|
|
margin: 0 0 16px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.external-role-form .field select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.checkbox-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.checkbox-label input[type="checkbox"] {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.onboarding-info-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 12px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.onboarding-stat {
|
|
|
|
|
border: 1px solid #e2e8f0;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.onboarding-stat .stat-label {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
color: #64748b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.onboarding-stat .stat-value {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #050026;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|