Spaces:
Sleeping
Sleeping
| @import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap'); | |
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| /* ============================================================ | |
| AJet Design System Tokens | |
| ============================================================ */ | |
| :root { | |
| /* Brand Colors */ | |
| --ajet-navy-900: #00122A; | |
| --ajet-navy-800: #002454; | |
| --ajet-navy-700: #004187; | |
| --ajet-navy-600: #0062BA; | |
| --ajet-blue-700: #0081E2; | |
| --ajet-blue-600: #008EFF; | |
| --ajet-blue-300: #7ACEFC; | |
| --ajet-blue-100: #E6F4FF; | |
| --ajet-lime-700: #9ACC37; | |
| --ajet-lime-600: #B0EF43; | |
| --ajet-lime-400: #D0F982; | |
| --ajet-lime-200: #E5FCB4; | |
| --ajet-white: #FFFFFF; | |
| --ajet-cream: #F7F6F1; | |
| --ajet-gray-100: #F1F4F8; | |
| --ajet-gray-200: #E3E8EF; | |
| --ajet-gray-300: #C9D1DB; | |
| --ajet-gray-500: #7A8699; | |
| --ajet-gray-700: #3A4656; | |
| --ajet-gray-900: #0E1520; | |
| /* Semantic */ | |
| --bg: var(--ajet-cream); | |
| --surface: var(--ajet-white); | |
| --surface-alt: var(--ajet-blue-100); | |
| --border: var(--ajet-gray-200); | |
| --border-strong: var(--ajet-gray-300); | |
| --fg-1: var(--ajet-navy-900); | |
| --fg-2: var(--ajet-gray-700); | |
| --fg-3: var(--ajet-gray-500); | |
| --fg-on-dark: var(--ajet-white); | |
| --accent: var(--ajet-blue-700); | |
| --accent-hover: var(--ajet-blue-600); | |
| --accent-soft: var(--ajet-blue-100); | |
| --go: var(--ajet-lime-600); | |
| --go-fg: var(--ajet-navy-900); | |
| --dark-bg: var(--ajet-navy-900); | |
| --dark-surface: var(--ajet-navy-800); | |
| --dark-border: rgba(255, 255, 255, 0.08); | |
| --dark-border-strong: rgba(255, 255, 255, 0.16); | |
| --dark-fg-1: var(--ajet-white); | |
| --dark-fg-2: rgba(255, 255, 255, 0.72); | |
| --dark-fg-3: rgba(255, 255, 255, 0.48); | |
| --success: var(--ajet-lime-600); | |
| --warning: #FFB020; | |
| --danger: #E5484D; | |
| --info: var(--ajet-blue-700); | |
| /* Typography */ | |
| --font-sans: 'Hanken Grotesk', 'Inter', system-ui, -apple-system, sans-serif; | |
| --font-display: 'Hanken Grotesk', system-ui, sans-serif; | |
| --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; | |
| /* Radii */ | |
| --r-sm: 6px; | |
| --r-md: 12px; | |
| --r-lg: 16px; | |
| --r-xl: 24px; | |
| --r-pill: 999px; | |
| /* Shadows */ | |
| --shadow-sm: 0 1px 2px rgba(0, 18, 42, 0.06); | |
| --shadow-md: 0 4px 14px rgba(0, 18, 42, 0.08); | |
| --shadow-lg: 0 12px 32px rgba(0, 18, 42, 0.12); | |
| /* Motion */ | |
| --ease-out: cubic-bezier(0.22, 1, 0.36, 1); | |
| --dur-fast: 120ms; | |
| --dur-base: 200ms; | |
| /* shadcn compatibility */ | |
| --background: 0 0% 100%; | |
| --foreground: 222 47% 11%; | |
| --card: 0 0% 100%; | |
| --card-foreground: 222 47% 11%; | |
| --primary: 207 100% 44%; | |
| --primary-foreground: 0 0% 100%; | |
| --secondary: 210 40% 96%; | |
| --secondary-foreground: 222 47% 11%; | |
| --muted: 210 40% 96%; | |
| --muted-foreground: 215 16% 47%; | |
| --accent-shadcn: 210 40% 96%; | |
| --accent-foreground: 222 47% 11%; | |
| --destructive: 0 72% 51%; | |
| --destructive-foreground: 0 0% 100%; | |
| --border-shadcn: 214 32% 91%; | |
| --input: 214 32% 91%; | |
| --ring: 207 100% 44%; | |
| } | |
| @layer base { | |
| * { | |
| box-sizing: border-box; | |
| } | |
| html, body { | |
| height: 100%; | |
| width: 100%; | |
| margin: 0; | |
| } | |
| html { | |
| overflow-x: hidden; | |
| } | |
| body { | |
| font-family: var(--font-sans); | |
| font-size: 14px; | |
| line-height: 1.45; | |
| color: var(--fg-1); | |
| background: var(--bg); | |
| -webkit-font-smoothing: antialiased; | |
| text-rendering: optimizeLegibility; | |
| overflow-x: hidden; | |
| min-width: 0; | |
| } | |
| img, svg, video, canvas { | |
| max-width: 100%; | |
| } | |
| } | |
| /* ============================================================ | |
| AJet App Shell | |
| ============================================================ */ | |
| /* Layout */ | |
| .app-shell { | |
| display: grid; | |
| grid-template-columns: 248px 1fr; | |
| height: 100vh; | |
| width: 100vw; | |
| } | |
| .app-shell--collapsed { grid-template-columns: 72px 1fr; } | |
| .ajet-dashboard-shell, | |
| .ajet-dashboard-main, | |
| .ajet-dashboard-content { | |
| min-width: 0; | |
| width: 100%; | |
| } | |
| .ajet-dashboard-main, | |
| .ajet-dashboard-content { | |
| overflow-x: hidden; | |
| } | |
| /* Sidebar */ | |
| .ajet-sidebar { | |
| background: var(--ajet-navy-900); | |
| color: var(--dark-fg-1); | |
| flex-direction: column; | |
| overflow: hidden; | |
| position: relative; | |
| } | |
| .ajet-sidebar-desktop { | |
| display: none ; | |
| width: 248px; | |
| flex-shrink: 0; | |
| } | |
| .ajet-mobile-sidebar-trigger { | |
| display: block; | |
| flex-shrink: 0; | |
| } | |
| .ajet-sidebar::before { | |
| content: ""; | |
| position: absolute; inset: 0; | |
| background: radial-gradient(80% 40% at 100% 0%, rgba(0, 129, 226, 0.18), transparent 60%); | |
| pointer-events: none; | |
| } | |
| .ajet-sidebar > * { position: relative; } | |
| .ajet-sidebar-head { | |
| display: flex; align-items: center; gap: 12px; | |
| padding: 20px 20px 24px; | |
| border-bottom: 1px solid var(--dark-border); | |
| } | |
| .ajet-sidebar-logo { | |
| width: 36px; height: 36px; | |
| display: grid; place-items: center; | |
| flex-shrink: 0; | |
| } | |
| .ajet-sidebar-logo img { | |
| width: 30px; | |
| height: 30px; | |
| object-fit: contain; | |
| display: block; | |
| } | |
| .ajet-sidebar-wordmark { | |
| font-family: var(--font-display); | |
| font-weight: 900; | |
| font-size: 17px; | |
| letter-spacing: -0.02em; | |
| color: var(--dark-fg-1); | |
| white-space: nowrap; | |
| } | |
| .ajet-sidebar-wordmark span { color: var(--ajet-lime-600); } | |
| .ajet-mobile-logo { | |
| width: 28px; | |
| height: 28px; | |
| display: grid; | |
| place-items: center; | |
| border-radius: 8px; | |
| background: var(--ajet-blue-700); | |
| overflow: hidden; | |
| flex-shrink: 0; | |
| } | |
| .ajet-mobile-logo img { | |
| width: 22px; | |
| height: 22px; | |
| object-fit: contain; | |
| display: block; | |
| } | |
| .ajet-sidebar-section { | |
| padding: 18px 20px 8px; | |
| font-size: 10px; | |
| font-weight: 600; | |
| letter-spacing: 0.08em; | |
| text-transform: uppercase; | |
| color: var(--dark-fg-3); | |
| } | |
| .ajet-sidebar-nav { | |
| flex: 1; | |
| padding: 8px 12px 16px; | |
| overflow-y: auto; | |
| } | |
| .ajet-nav-item { | |
| display: flex; align-items: center; gap: 12px; | |
| padding: 9px 12px; | |
| border-radius: 10px; | |
| color: var(--dark-fg-2); | |
| font-size: 13.5px; | |
| font-weight: 500; | |
| cursor: pointer; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| white-space: nowrap; | |
| margin-bottom: 2px; | |
| border: 1px solid transparent; | |
| text-decoration: none; | |
| } | |
| .ajet-nav-item:hover { | |
| background: rgba(255,255,255,0.05); | |
| color: var(--dark-fg-1); | |
| } | |
| .ajet-nav-item.active { | |
| background: var(--ajet-blue-700); | |
| color: var(--dark-fg-1); | |
| font-weight: 600; | |
| box-shadow: 0 4px 12px rgba(0, 129, 226, 0.35); | |
| } | |
| .ajet-nav-badge { | |
| margin-left: auto; | |
| background: var(--ajet-lime-600); | |
| color: var(--ajet-navy-900); | |
| font-size: 10px; | |
| font-weight: 700; | |
| padding: 1px 6px; | |
| border-radius: 999px; | |
| line-height: 1.4; | |
| } | |
| .ajet-sidebar-foot { | |
| padding: 12px 16px 16px; | |
| border-top: 1px solid var(--dark-border); | |
| font-size: 11px; | |
| color: var(--dark-fg-3); | |
| } | |
| /* Topbar */ | |
| .ajet-topbar { | |
| height: 56px; | |
| background: var(--surface); | |
| border-bottom: 1px solid var(--border); | |
| display: flex; align-items: center; | |
| padding: 0 24px; | |
| gap: 16px; | |
| position: sticky; top: 0; z-index: 10; | |
| min-width: 0; | |
| width: 100%; | |
| } | |
| .ajet-breadcrumbs { | |
| display: flex; align-items: center; gap: 8px; | |
| font-size: 13px; color: var(--fg-2); | |
| } | |
| .ajet-bc-sep { color: var(--fg-3); } | |
| .ajet-bc-current { color: var(--fg-1); font-weight: 600; } | |
| .ajet-topbar-search { | |
| max-width: 420px; flex: 1; | |
| position: relative; | |
| } | |
| .ajet-topbar-search input { | |
| width: 100%; | |
| height: 36px; | |
| border: 1px solid var(--border); | |
| background: var(--ajet-gray-100); | |
| border-radius: 10px; | |
| padding: 0 12px 0 36px; | |
| font-size: 13px; | |
| color: var(--fg-1); | |
| font-family: inherit; | |
| outline: none; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| } | |
| .ajet-topbar-search input:focus { | |
| border-color: var(--accent); | |
| background: var(--surface); | |
| box-shadow: 0 0 0 4px rgba(0,129,226,0.15); | |
| } | |
| .ajet-topbar-search-icon { | |
| position: absolute; left: 10px; top: 50%; transform: translateY(-50%); | |
| color: var(--fg-3); | |
| pointer-events: none; | |
| } | |
| .ajet-topbar-actions { | |
| margin-left: auto; | |
| display: flex; align-items: center; gap: 8px; | |
| flex-shrink: 0; | |
| } | |
| .ajet-icon-btn { | |
| width: 36px; height: 36px; | |
| border-radius: 10px; | |
| display: grid; place-items: center; | |
| color: var(--fg-2); | |
| cursor: pointer; | |
| position: relative; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| background: transparent; | |
| border: none; | |
| } | |
| .ajet-icon-btn:hover { background: var(--ajet-gray-100); color: var(--fg-1); } | |
| .ajet-notif-dot { | |
| position: absolute; top: 8px; right: 8px; | |
| width: 8px; height: 8px; | |
| background: var(--ajet-lime-600); | |
| border: 2px solid var(--surface); | |
| border-radius: 50%; | |
| } | |
| .ajet-avatar { | |
| width: 32px; height: 32px; | |
| border-radius: 10px; | |
| background: var(--ajet-navy-700); | |
| color: white; | |
| display: grid; place-items: center; | |
| font-weight: 700; font-size: 12px; | |
| cursor: pointer; | |
| } | |
| /* Content area */ | |
| .ajet-content { | |
| flex: 1; | |
| overflow-y: auto; | |
| padding: 24px 28px 40px; | |
| } | |
| /* Page Header */ | |
| .ajet-page-header { | |
| display: flex; align-items: flex-end; justify-content: space-between; | |
| gap: 24px; | |
| margin-bottom: 20px; | |
| } | |
| .ajet-page-header h1 { | |
| font-family: var(--font-display); | |
| font-weight: 700; | |
| font-size: 28px; | |
| letter-spacing: -0.02em; | |
| margin: 0 0 4px; | |
| color: var(--fg-1); | |
| } | |
| .ajet-page-sub { | |
| color: var(--fg-2); | |
| font-size: 14px; | |
| margin: 0; | |
| } | |
| .ajet-page-actions { display: flex; gap: 8px; align-items: center; } | |
| /* Buttons */ | |
| .ajet-btn { | |
| display: inline-flex; align-items: center; gap: 8px; | |
| height: 36px; | |
| padding: 0 14px; | |
| border-radius: 10px; | |
| border: 1px solid transparent; | |
| font-family: inherit; | |
| font-size: 13px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| background: transparent; | |
| color: var(--fg-1); | |
| white-space: nowrap; | |
| } | |
| .ajet-btn:hover { transform: translateY(-1px); } | |
| .ajet-btn:active { transform: translateY(0); } | |
| .ajet-btn--primary { | |
| background: var(--ajet-blue-700); | |
| color: #fff; | |
| box-shadow: 0 4px 12px rgba(0,129,226,0.25); | |
| } | |
| .ajet-btn--primary:hover { background: var(--ajet-blue-600); } | |
| .ajet-btn--ghost { | |
| background: var(--surface); | |
| border-color: var(--border); | |
| color: var(--fg-1); | |
| } | |
| .ajet-btn--ghost:hover { background: var(--ajet-gray-100); } | |
| .ajet-btn--ai { | |
| background: linear-gradient(135deg, #0081E2 0%, #B0EF43 180%); | |
| color: #fff; | |
| position: relative; | |
| overflow: hidden; | |
| box-shadow: 0 6px 20px rgba(0,129,226,0.35); | |
| } | |
| .ajet-btn--lime { | |
| background: var(--ajet-lime-600); | |
| color: var(--ajet-navy-900); | |
| font-weight: 700; | |
| } | |
| .ajet-btn--lime:hover { background: var(--ajet-lime-700); } | |
| .ajet-btn--danger { background: var(--danger); color: #fff; } | |
| .ajet-btn--sm { height: 30px; padding: 0 10px; font-size: 12px; border-radius: 8px; } | |
| .ajet-btn--icon { width: 36px; padding: 0; justify-content: center; } | |
| /* Cards */ | |
| .ajet-card { | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| border-radius: 14px; | |
| box-shadow: var(--shadow-sm); | |
| min-width: 0; | |
| } | |
| .ajet-card--hover { | |
| transition: all var(--dur-fast) var(--ease-out); | |
| cursor: pointer; | |
| } | |
| .ajet-card--hover:hover { | |
| box-shadow: var(--shadow-md); | |
| transform: translateY(-2px); | |
| border-color: var(--border-strong); | |
| } | |
| .ajet-card-body { padding: 18px 20px; } | |
| .ajet-card-head { | |
| padding: 16px 20px; | |
| border-bottom: 1px solid var(--border); | |
| display: flex; align-items: center; justify-content: space-between; | |
| gap: 12px; | |
| } | |
| .ajet-card-head h3 { | |
| margin: 0; | |
| font-family: var(--font-display); | |
| font-size: 15px; | |
| font-weight: 700; | |
| letter-spacing: -0.01em; | |
| } | |
| .ajet-card-sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; } | |
| /* Stat Card */ | |
| .ajet-stat-card { | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| border-radius: 14px; | |
| padding: 18px 20px; | |
| position: relative; | |
| overflow: hidden; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| min-width: 0; | |
| } | |
| .ajet-stat-card:hover { box-shadow: var(--shadow-md); } | |
| .ajet-stat-icon { | |
| position: absolute; top: 18px; right: 18px; | |
| width: 32px; height: 32px; | |
| border-radius: 10px; | |
| background: var(--accent-soft); | |
| color: var(--accent); | |
| display: grid; place-items: center; | |
| } | |
| .ajet-stat-label { font-size: 12px; font-weight: 600; color: var(--fg-2); margin-bottom: 8px; } | |
| .ajet-stat-value { | |
| font-family: var(--font-display); | |
| font-size: 30px; font-weight: 700; | |
| color: var(--fg-1); | |
| letter-spacing: -0.02em; | |
| line-height: 1.05; | |
| margin-bottom: 6px; | |
| } | |
| .ajet-stat-trend { | |
| display: inline-flex; align-items: center; gap: 4px; | |
| font-size: 12px; font-weight: 600; | |
| } | |
| .ajet-stat-trend.up { color: #4A9A1E; } | |
| .ajet-stat-trend.down { color: var(--danger); } | |
| .ajet-stat-trend-sub { color: var(--fg-3); font-weight: 500; margin-left: 4px; } | |
| /* Badges */ | |
| .ajet-badge { | |
| display: inline-flex; align-items: center; gap: 4px; | |
| padding: 2px 8px; | |
| border-radius: 999px; | |
| font-size: 11px; | |
| font-weight: 600; | |
| line-height: 1.6; | |
| white-space: nowrap; | |
| } | |
| .ajet-badge--navy { background: rgba(0,18,42,0.08); color: var(--ajet-navy-900); } | |
| .ajet-badge--blue { background: var(--accent-soft); color: var(--ajet-blue-700); } | |
| .ajet-badge--lime { background: rgba(176,239,67,0.22); color: #4A6E10; } | |
| .ajet-badge--amber { background: rgba(255,176,32,0.14); color: #9A6400; } | |
| .ajet-badge--red { background: rgba(229,72,77,0.1); color: var(--danger); } | |
| .ajet-badge--gray { background: var(--ajet-gray-100); color: var(--fg-2); } | |
| .ajet-badge--dot::before { | |
| content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; margin-right: 2px; | |
| display: inline-block; | |
| } | |
| .ajet-cat-A { background: rgba(0, 129, 226, 0.12); color: var(--ajet-blue-700); } | |
| .ajet-cat-B { background: rgba(176, 239, 67, 0.28); color: #4A6E10; } | |
| .ajet-cat-C { background: rgba(255, 176, 32, 0.18); color: #9A6400; } | |
| .ajet-cat-D { background: rgba(58, 70, 86, 0.1); color: var(--ajet-gray-700); } | |
| /* Table */ | |
| .ajet-table-wrap { | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| border-radius: 14px; | |
| overflow-x: auto; | |
| overflow-y: hidden; | |
| max-width: 100%; | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| .ajet-table-scroll { | |
| max-width: 100%; | |
| overflow-x: auto; | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| .ajet-table-toolbar { | |
| display: flex; align-items: center; gap: 8px; | |
| padding: 12px 16px; | |
| border-bottom: 1px solid var(--border); | |
| background: var(--surface); | |
| flex-wrap: wrap; | |
| } | |
| .ajet-data-table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| font-size: 13px; | |
| } | |
| .ajet-data-table thead th { | |
| text-align: left; | |
| padding: 10px 16px; | |
| background: var(--ajet-gray-100); | |
| color: var(--fg-2); | |
| font-weight: 600; | |
| font-size: 11px; | |
| text-transform: uppercase; | |
| letter-spacing: 0.04em; | |
| border-bottom: 1px solid var(--border); | |
| white-space: nowrap; | |
| } | |
| .ajet-data-table tbody td { | |
| padding: 12px 16px; | |
| border-bottom: 1px solid var(--border); | |
| color: var(--fg-1); | |
| vertical-align: middle; | |
| } | |
| .ajet-data-table tbody tr { | |
| transition: background var(--dur-fast) var(--ease-out); | |
| cursor: pointer; | |
| } | |
| .ajet-data-table tbody tr:hover { background: var(--ajet-blue-100); } | |
| .ajet-data-table tbody tr:last-child td { border-bottom: none; } | |
| .ajet-table-footer { | |
| display: flex; align-items: center; justify-content: space-between; | |
| padding: 12px 16px; | |
| border-top: 1px solid var(--border); | |
| font-size: 12px; color: var(--fg-2); | |
| } | |
| /* Inputs */ | |
| .ajet-input, .ajet-select { | |
| height: 34px; | |
| border: 1px solid var(--border); | |
| background: var(--surface); | |
| border-radius: 8px; | |
| padding: 0 10px; | |
| font-family: inherit; | |
| font-size: 13px; | |
| color: var(--fg-1); | |
| outline: none; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| } | |
| .ajet-input:focus, .ajet-select:focus { | |
| border-color: var(--accent); | |
| box-shadow: 0 0 0 4px rgba(0,129,226,0.15); | |
| } | |
| .ajet-input-search { | |
| position: relative; | |
| min-width: 240px; | |
| } | |
| .ajet-input-search input { | |
| padding-left: 32px; | |
| width: 100%; | |
| height: 34px; | |
| border: 1px solid var(--border); | |
| background: var(--surface); | |
| border-radius: 8px; | |
| font-family: inherit; | |
| font-size: 13px; | |
| color: var(--fg-1); | |
| outline: none; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| } | |
| .ajet-input-search input:focus { | |
| border-color: var(--accent); | |
| box-shadow: 0 0 0 4px rgba(0,129,226,0.15); | |
| } | |
| .ajet-input-search-icon { | |
| position: absolute; left: 10px; top: 50%; transform: translateY(-50%); | |
| color: var(--fg-3); pointer-events: none; | |
| } | |
| /* Mini bar */ | |
| .ajet-mini-bar { display: inline-flex; align-items: center; gap: 8px; } | |
| .ajet-mini-bar-track { | |
| width: 80px; height: 6px; | |
| background: var(--ajet-gray-200); | |
| border-radius: 999px; | |
| overflow: hidden; | |
| } | |
| .ajet-mini-bar-fill { height: 100%; border-radius: 999px; } | |
| .ajet-mini-bar-fill.good { background: var(--ajet-lime-600); } | |
| .ajet-mini-bar-fill.ok { background: var(--ajet-blue-700); } | |
| .ajet-mini-bar-fill.warn { background: var(--warning); } | |
| .ajet-mini-bar-fill.bad { background: var(--danger); } | |
| .ajet-mini-bar-label { font-size: 12px; font-weight: 600; color: var(--fg-1); min-width: 28px; text-align: right; } | |
| /* Chip / pill filter */ | |
| .ajet-chip { | |
| display: inline-flex; align-items: center; gap: 6px; | |
| height: 28px; padding: 0 10px; | |
| border-radius: 999px; | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| font-size: 12px; | |
| font-weight: 500; | |
| color: var(--fg-1); | |
| cursor: pointer; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| font-family: inherit; | |
| } | |
| .ajet-chip:hover { background: var(--ajet-gray-100); } | |
| .ajet-chip.active { background: var(--ajet-navy-900); color: #fff; border-color: var(--ajet-navy-900); } | |
| /* Tabs */ | |
| .ajet-tabs { | |
| display: flex; gap: 4px; | |
| border-bottom: 1px solid var(--border); | |
| margin-bottom: 20px; | |
| } | |
| .ajet-tab { | |
| padding: 10px 14px; | |
| font-size: 13px; | |
| font-weight: 600; | |
| color: var(--fg-2); | |
| cursor: pointer; | |
| border-bottom: 2px solid transparent; | |
| margin-bottom: -1px; | |
| transition: all var(--dur-fast) var(--ease-out); | |
| background: transparent; | |
| border-top: none; | |
| border-left: none; | |
| border-right: none; | |
| font-family: inherit; | |
| } | |
| .ajet-tab:hover { color: var(--fg-1); } | |
| .ajet-tab.active { color: var(--ajet-blue-700); border-bottom-color: var(--ajet-blue-700); } | |
| /* AI Panel */ | |
| .ajet-ai-panel { | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| border-radius: 14px; | |
| overflow: hidden; | |
| position: relative; | |
| } | |
| .ajet-ai-panel::before { | |
| content: ""; | |
| position: absolute; top: 0; left: 0; right: 0; height: 3px; | |
| background: linear-gradient(90deg, var(--ajet-blue-700), var(--ajet-lime-600)); | |
| } | |
| .ajet-ai-panel-head { | |
| padding: 16px 20px; | |
| border-bottom: 1px solid var(--border); | |
| display: flex; align-items: center; gap: 10px; | |
| } | |
| .ajet-ai-panel-head h3 { | |
| margin: 0; | |
| font-family: var(--font-display); | |
| font-size: 15px; | |
| font-weight: 700; | |
| } | |
| .ajet-ai-badge { | |
| margin-left: auto; | |
| background: linear-gradient(135deg, var(--ajet-blue-700), var(--ajet-lime-600)); | |
| color: #fff; | |
| font-size: 10px; | |
| font-weight: 700; | |
| padding: 2px 8px; | |
| border-radius: 999px; | |
| letter-spacing: 0.04em; | |
| } | |
| /* AI glow border */ | |
| .ajet-ai-glow { | |
| position: relative; | |
| } | |
| .ajet-ai-glow::before { | |
| content: ""; | |
| position: absolute; inset: -1px; | |
| border-radius: 15px; | |
| padding: 1px; | |
| background: linear-gradient(135deg, var(--ajet-blue-700), var(--ajet-lime-600)); | |
| -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); | |
| -webkit-mask-composite: xor; | |
| mask-composite: exclude; | |
| pointer-events: none; | |
| } | |
| /* Empty state */ | |
| .ajet-empty { | |
| text-align: center; | |
| padding: 48px 24px; | |
| color: var(--fg-2); | |
| } | |
| .ajet-empty h4 { margin: 8px 0 4px; font-family: var(--font-display); font-size: 17px; color: var(--fg-1); } | |
| /* Scrollbars */ | |
| ::-webkit-scrollbar { width: 8px; height: 8px; } | |
| ::-webkit-scrollbar-track { background: transparent; } | |
| ::-webkit-scrollbar-thumb { background: var(--ajet-gray-300); border-radius: 999px; } | |
| ::-webkit-scrollbar-thumb:hover { background: var(--ajet-gray-500); } | |
| /* Utilities */ | |
| .ajet-row { display: flex; align-items: center; gap: 8px; } | |
| .ajet-col { display: flex; flex-direction: column; gap: 8px; } | |
| .ajet-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; } | |
| .ajet-muted { color: var(--fg-3); } | |
| .ajet-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } | |
| .ajet-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } | |
| .ajet-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } | |
| .ajet-grid-dash { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 16px; } | |
| .ajet-grid-panel3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } | |
| .ajet-responsive-grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; } | |
| .ajet-row > *, | |
| .ajet-card-head > *, | |
| .ajet-page-header > * { | |
| min-width: 0; | |
| } | |
| .ajet-mobile-calendar-scroll { | |
| max-width: 100%; | |
| overflow-x: auto; | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| @media (min-width: 1024px) { | |
| .ajet-sidebar-desktop { | |
| display: flex ; | |
| flex-direction: column; | |
| } | |
| .ajet-mobile-sidebar-trigger { | |
| display: none ; | |
| } | |
| } | |
| @media (max-width: 1100px) { | |
| .ajet-grid-4 { | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | |
| } | |
| .ajet-grid-3, | |
| .ajet-grid-dash, | |
| .ajet-grid-panel3, | |
| .ajet-responsive-grid-5 { | |
| grid-template-columns: 1fr ; | |
| } | |
| .ajet-responsive-stack { | |
| grid-template-columns: 1fr ; | |
| } | |
| .ajet-sticky-panel, | |
| .ajet-report-aside { | |
| position: static ; | |
| top: auto ; | |
| max-height: none ; | |
| } | |
| } | |
| @media (max-width: 900px) { | |
| .ajet-dashboard-shell { | |
| height: 100dvh ; | |
| } | |
| .ajet-dashboard-content { | |
| padding: 18px 16px 32px ; | |
| } | |
| .ajet-topbar { | |
| height: 56px; | |
| padding: 0 12px; | |
| gap: 10px; | |
| } | |
| .ajet-topbar > div:first-child { | |
| min-width: 0; | |
| flex: 1; | |
| } | |
| .ajet-topbar nav { | |
| min-width: 0; | |
| overflow: hidden; | |
| } | |
| .ajet-topbar nav ol { | |
| flex-wrap: nowrap; | |
| min-width: 0; | |
| } | |
| .ajet-topbar nav li { | |
| min-width: 0; | |
| } | |
| .ajet-topbar nav a, | |
| .ajet-topbar nav [aria-current='page'] { | |
| display: inline-block; | |
| max-width: 34vw; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } | |
| .ajet-topbar-search { | |
| display: none; | |
| } | |
| .ajet-page-header { | |
| align-items: stretch; | |
| flex-direction: column; | |
| gap: 12px; | |
| } | |
| .ajet-page-actions { | |
| flex-wrap: wrap; | |
| } | |
| .ajet-page-actions > *, | |
| .ajet-page-actions .ajet-row { | |
| max-width: 100%; | |
| } | |
| .ajet-card-head { | |
| align-items: flex-start; | |
| flex-wrap: wrap; | |
| } | |
| .ajet-table-toolbar { | |
| align-items: stretch; | |
| } | |
| .ajet-table-toolbar > .ajet-row { | |
| flex-wrap: wrap; | |
| } | |
| .ajet-table-toolbar .ajet-select { | |
| max-width: 100%; | |
| } | |
| .ajet-input-search { | |
| min-width: 0; | |
| width: 100%; | |
| } | |
| .ajet-table-wrap .ajet-data-table, | |
| .ajet-table-scroll .ajet-data-table { | |
| min-width: 760px; | |
| } | |
| .ajet-report-doc { | |
| max-width: 100% ; | |
| margin: 0 ; | |
| } | |
| .ajet-report-section { | |
| padding: 16px ; | |
| } | |
| .ajet-mobile-calendar-grid { | |
| min-width: 680px; | |
| } | |
| .ajet-table-footer { | |
| align-items: flex-start; | |
| flex-direction: column; | |
| gap: 10px; | |
| } | |
| } | |
| @media (max-width: 640px) { | |
| .ajet-dashboard-content { | |
| padding: 14px 12px 28px ; | |
| } | |
| .ajet-page-header h1 { | |
| font-size: 24px; | |
| } | |
| .ajet-page-sub { | |
| font-size: 13px; | |
| } | |
| .ajet-grid-4, | |
| .ajet-grid-3, | |
| .ajet-grid-2, | |
| .ajet-grid-dash, | |
| .ajet-grid-panel3, | |
| .ajet-responsive-grid-5, | |
| .ajet-responsive-grid-2, | |
| .ajet-responsive-grid-3, | |
| .ajet-responsive-grid-auto, | |
| .ajet-kpi-node { | |
| grid-template-columns: 1fr ; | |
| gap: 12px; | |
| } | |
| .ajet-card-body { | |
| padding: 14px; | |
| } | |
| .ajet-card-head { | |
| padding: 14px; | |
| } | |
| .ajet-stat-card { | |
| padding: 16px; | |
| } | |
| .ajet-stat-value { | |
| font-size: 26px; | |
| } | |
| .ajet-btn { | |
| min-height: 36px; | |
| } | |
| .ajet-page-actions .ajet-btn, | |
| .ajet-page-actions .ajet-select { | |
| max-width: 100%; | |
| } | |
| .ajet-tabs { | |
| overflow-x: auto; | |
| padding-bottom: 1px; | |
| } | |
| .ajet-tab { | |
| white-space: nowrap; | |
| } | |
| .ajet-topbar-actions { | |
| gap: 4px; | |
| } | |
| .ajet-icon-btn { | |
| width: 34px; | |
| height: 34px; | |
| } | |
| .ajet-avatar { | |
| width: 30px; | |
| height: 30px; | |
| } | |
| .ajet-kpi-node { | |
| align-items: stretch ; | |
| padding-left: 12px ; | |
| } | |
| .ajet-responsive-grid-2 > .ajet-report-section { | |
| border-right: none ; | |
| } | |
| } | |
| /* Live dot animation */ | |
| @keyframes pulse-dot { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.4; } | |
| } | |
| .ajet-live-dot { | |
| width: 8px; height: 8px; border-radius: 50%; | |
| background: var(--ajet-lime-600); | |
| animation: pulse-dot 2s ease-in-out infinite; | |
| display: inline-block; | |
| } | |
| /* Shimmer */ | |
| @keyframes shimmer { | |
| 0% { background-position: -200% 0; } | |
| 100% { background-position: 200% 0; } | |
| } | |
| .ajet-shimmer { | |
| background: linear-gradient(90deg, var(--ajet-gray-100) 0%, var(--ajet-gray-200) 50%, var(--ajet-gray-100) 100%); | |
| background-size: 200% 100%; | |
| animation: shimmer 1.6s linear infinite; | |
| border-radius: 6px; | |
| } | |
| /* Print — agency briefing report */ | |
| @media print { | |
| @page { size: A4; margin: 12mm; } | |
| body { background: #fff ; } | |
| .ajet-sidebar, | |
| .ajet-topbar, | |
| .ajet-no-print { display: none ; } | |
| main { | |
| padding: 0 ; | |
| overflow: visible ; | |
| height: auto ; | |
| } | |
| .ajet-report-shell { | |
| display: block ; | |
| } | |
| .ajet-report-shell > .ajet-report-aside { display: none ; } | |
| .ajet-report-doc { | |
| box-shadow: none ; | |
| border: none ; | |
| margin: 0 ; | |
| width: 100% ; | |
| max-width: 100% ; | |
| page-break-inside: avoid; | |
| } | |
| .ajet-card { break-inside: avoid; } | |
| } | |