| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600;700;800&display=swap'); |
|
|
| :root { |
| --bg-app: oklch(97% 0.008 160); |
| --bg-surface: oklch(100% 0 0); |
| --bg-surface-hover: oklch(95% 0.01 160); |
| --bg-surface-glass: oklch(100% 0 0 / 0.85); |
| --bg-surface-elevated: oklch(100% 0 0); |
|
|
| --border-default: oklch(88% 0.008 160 / 0.6); |
| --border-muted: oklch(92% 0.006 160 / 0.4); |
| --border-glow: oklch(75% 0.12 160 / 0.3); |
|
|
| --text-default: oklch(22% 0.015 160); |
| --text-muted: oklch(50% 0.02 160); |
| --text-subtle: oklch(65% 0.015 160); |
| --text-on-primary: oklch(100% 0 0); |
|
|
| --color-primary-50: oklch(95% 0.03 160 / 0.15); |
| --color-primary-100: oklch(93% 0.04 160 / 0.2); |
| --color-primary-200: oklch(88% 0.06 160); |
| --color-primary-300: oklch(80% 0.1 160); |
| --color-primary-400: oklch(72% 0.14 160); |
| --color-primary-500: oklch(60% 0.18 160); |
| --color-primary-600: oklch(50% 0.16 160); |
| --color-primary-700: oklch(40% 0.14 160); |
| --color-primary-800: oklch(30% 0.1 160); |
| --color-primary-900: oklch(20% 0.06 160); |
|
|
| --color-neutral-900: oklch(96% 0.008 160); |
| --color-neutral-800: oklch(92% 0.008 160); |
| --color-neutral-700: oklch(85% 0.008 160); |
| --color-neutral-600: oklch(75% 0.01 160); |
| --color-neutral-500: oklch(65% 0.012 160); |
| --color-neutral-400: oklch(55% 0.015 160); |
| --color-neutral-300: oklch(42% 0.015 160); |
| --color-neutral-200: oklch(32% 0.015 160); |
| --color-neutral-100: oklch(24% 0.015 160); |
| --color-neutral-50: oklch(18% 0.012 160); |
|
|
| --color-danger-500: oklch(55% 0.2 30); |
| --color-danger-600: oklch(45% 0.18 30); |
| --color-warning-500: oklch(70% 0.18 80); |
| --color-warning-600: oklch(60% 0.18 80); |
| --color-info-500: oklch(58% 0.15 250); |
| --color-info-600: oklch(48% 0.14 250); |
| --color-success-500: oklch(58% 0.18 150); |
| --color-success-600: oklch(48% 0.16 150); |
|
|
| --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; |
| --font-mono: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace; |
|
|
| --text-xs: 0.75rem; |
| --text-sm: 0.875rem; |
| --text-base: 1rem; |
| --text-lg: 1.25rem; |
| --text-xl: 1.5rem; |
| --text-2xl: 2rem; |
| --text-3xl: 2.75rem; |
|
|
| --leading-tight: 1.2; |
| --leading-normal: 1.5; |
| --leading-relaxed: 1.6; |
|
|
| --space-1: 4px; |
| --space-2: 8px; |
| --space-3: 12px; |
| --space-4: 16px; |
| --space-5: 24px; |
| --space-6: 32px; |
| --space-8: 48px; |
| --space-10: 64px; |
| --space-12: 80px; |
|
|
| --radius-sm: 6px; |
| --radius-md: 10px; |
| --radius-lg: 16px; |
| --radius-xl: 24px; |
| --radius-2xl: 32px; |
| --radius-full: 9999px; |
|
|
| --shadow-xs: 0 1px 2px oklch(0% 0 0 / 0.04); |
| --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.06); |
| --shadow-md: 0 4px 8px oklch(0% 0 0 / 0.06); |
| --shadow-lg: 0 8px 24px oklch(0% 0 0 / 0.08); |
| --shadow-xl: 0 16px 40px oklch(0% 0 0 / 0.1); |
| --transition-fast: 150ms ease; |
| --transition-normal: 250ms ease; |
| --transition-slow: 400ms ease; |
| --sidebar-width: 260px; |
| } |
|
|
| *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } |
|
|
| body { |
| font-family: var(--font-sans); |
| background: var(--bg-app); |
| color: var(--text-default); |
| min-height: 100vh; |
| font-size: var(--text-base); |
| line-height: var(--leading-normal); |
| -webkit-font-smoothing: antialiased; |
| -moz-osx-font-smoothing: grayscale; |
| } |
|
|
| a { color: var(--color-primary-500); text-decoration: none; transition: color var(--transition-fast); } |
| a:hover { color: var(--color-primary-600); } |
|
|
| ::selection { background: var(--color-primary-100); color: var(--color-primary-900); } |
|
|
| :focus-visible { outline: 2px solid var(--color-primary-500); outline-offset: 2px; border-radius: var(--radius-sm); } |
|
|
| ::-webkit-scrollbar { width: 6px; height: 6px; } |
| ::-webkit-scrollbar-track { background: transparent; } |
| ::-webkit-scrollbar-thumb { background: var(--color-neutral-300); border-radius: var(--radius-full); } |
| ::-webkit-scrollbar-thumb:hover { background: var(--color-neutral-400); } |
|
|
| .app-layout { display: flex; min-height: 100vh; } |
|
|
| |
| .sidebar { |
| width: var(--sidebar-width); |
| background: #ffffff; |
| color: var(--text-default); |
| display: flex; |
| flex-direction: column; |
| position: fixed; |
| top: 0; |
| left: 0; |
| bottom: 0; |
| z-index: 50; |
| transition: transform var(--transition-slow); |
| border-right: 1px solid var(--border-default); |
| box-shadow: 2px 0 12px rgba(0,0,0,0.04); |
| } |
|
|
| .sidebar-brand { |
| padding: var(--space-6) var(--space-5) var(--space-5); |
| display: flex; |
| align-items: center; |
| gap: var(--space-3); |
| text-decoration: none; |
| color: var(--text-default); |
| transition: opacity var(--transition-fast); |
| border-bottom: 1px solid var(--border-default); |
| } |
|
|
| .sidebar-brand:hover { opacity: 0.85; color: var(--text-default); } |
|
|
| .sidebar-brand .brand-icon { |
| width: 34px; |
| height: 34px; |
| background: var(--color-primary-500); |
| border-radius: var(--radius-md); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 17px; |
| font-weight: 800; |
| color: #fff; |
| flex-shrink: 0; |
| } |
|
|
| .sidebar-brand h1 { |
| font-size: var(--text-xl); |
| font-weight: 800; |
| letter-spacing: -0.03em; |
| line-height: 1; |
| } |
|
|
| .sidebar-brand h1 span { color: var(--color-primary-600); } |
|
|
| .sidebar-nav { flex: 1; padding: var(--space-4) var(--space-3); overflow-y: auto; } |
|
|
| .sidebar-nav::-webkit-scrollbar { width: 3px; } |
| .sidebar-nav::-webkit-scrollbar-thumb { background: var(--color-primary-100); border-radius: var(--radius-full); } |
|
|
| .sidebar-section-title { |
| font-size: 10px; |
| font-weight: 600; |
| color: var(--text-muted); |
| text-transform: uppercase; |
| letter-spacing: 0.08em; |
| padding: var(--space-4) var(--space-3) var(--space-2); |
| } |
|
|
| .nav-item { |
| display: flex; |
| align-items: center; |
| gap: var(--space-3); |
| padding: var(--space-2) var(--space-3); |
| border-radius: var(--radius-md); |
| color: var(--color-neutral-400); |
| font-size: var(--text-sm); |
| font-weight: 500; |
| transition: all var(--transition-fast); |
| cursor: pointer; |
| text-decoration: none; |
| margin-bottom: 2px; |
| position: relative; |
| } |
|
|
| .nav-item:hover { background: var(--color-primary-50); color: var(--color-primary-700); text-decoration: none; } |
|
|
| .nav-item.active { |
| background: var(--color-primary-50); |
| color: var(--color-primary-600); |
| font-weight: 600; |
| } |
|
|
| .nav-item.active::before { |
| content: ''; |
| position: absolute; |
| left: -3px; |
| top: 50%; |
| transform: translateY(-50%); |
| width: 3px; |
| height: 20px; |
| background: var(--color-primary-500); |
| border-radius: 0 var(--radius-sm) var(--radius-sm) 0; |
| } |
|
|
| .nav-item .nav-icon { width: 20px; text-align: center; font-size: 15px; flex-shrink: 0; } |
| .nav-item .nav-label { flex: 1; } |
| .nav-item .nav-badge { |
| background: var(--color-primary-500); |
| color: #fff; |
| font-size: 10px; |
| padding: 1px 7px; |
| border-radius: var(--radius-full); |
| font-weight: 600; |
| } |
|
|
| .sidebar-footer { |
| padding: var(--space-4) var(--space-4); |
| border-top: 1px solid var(--border-default); |
| } |
|
|
| .sidebar-user { |
| display: flex; |
| align-items: center; |
| gap: var(--space-3); |
| padding: var(--space-2) var(--space-3); |
| border-radius: var(--radius-md); |
| transition: background var(--transition-fast); |
| } |
|
|
| .sidebar-user:hover { background: var(--color-primary-50); } |
|
|
| .sidebar-user .user-avatar { |
| width: 32px; |
| height: 32px; |
| border-radius: var(--radius-full); |
| background: var(--color-primary-500); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #fff; |
| font-weight: 700; |
| font-size: var(--text-sm); |
| flex-shrink: 0; |
| } |
|
|
| .sidebar-user .user-details { flex: 1; min-width: 0; } |
| .sidebar-user .user-name { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-default); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } |
| .sidebar-user .user-email { display: block; font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } |
|
|
| .logout-btn { |
| display: flex; |
| align-items: center; |
| gap: var(--space-3); |
| padding: var(--space-2) var(--space-3); |
| border-radius: var(--radius-md); |
| color: var(--text-muted); |
| font-size: var(--text-sm); |
| cursor: pointer; |
| transition: all var(--transition-fast); |
| border: none; |
| background: none; |
| width: 100%; |
| font-family: inherit; |
| margin-top: var(--space-2); |
| } |
|
|
| .logout-btn:hover { color: var(--color-danger-500); background: rgba(239,68,68,0.06); } |
|
|
| |
| .main-content { |
| flex: 1; |
| margin-left: var(--sidebar-width); |
| min-height: 100vh; |
| display: flex; |
| flex-direction: column; |
| } |
|
|
| .top-bar { |
| background: rgba(255,255,255,0.85); |
| border-bottom: 1px solid var(--border-default); |
| padding: var(--space-3) var(--space-6); |
| display: flex; |
| align-items: center; |
| gap: var(--space-4); |
| position: sticky; |
| top: 0; |
| z-index: 30; |
| backdrop-filter: blur(12px); |
| -webkit-backdrop-filter: blur(12px); |
| transition: box-shadow var(--transition-fast); |
| } |
|
|
| .top-bar-search { |
| flex: 1; |
| max-width: 420px; |
| position: relative; |
| } |
|
|
| .top-bar-search input { |
| width: 100%; |
| padding: var(--space-2) var(--space-3) var(--space-2) 38px; |
| border-radius: var(--radius-full); |
| border: 1px solid var(--border-default); |
| background: var(--bg-surface-hover); |
| font-size: var(--text-sm); |
| transition: all var(--transition-fast); |
| } |
|
|
| .top-bar-search input:focus { |
| border-color: var(--color-primary-500); |
| box-shadow: 0 0 0 3px var(--color-primary-100); |
| background: var(--bg-surface); |
| } |
|
|
| .top-bar-search .search-icon { |
| position: absolute; |
| left: 13px; |
| top: 50%; |
| transform: translateY(-50%); |
| color: var(--text-subtle); |
| font-size: 14px; |
| pointer-events: none; |
| } |
|
|
| .top-bar-actions { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; } |
|
|
| .page-content { |
| padding: var(--space-8) var(--space-8); |
| flex: 1; |
| max-width: 1240px; |
| width: 100%; |
| margin: 0 auto; |
| animation: fadeIn 0.3s ease-out; |
| } |
|
|
| .page-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: flex-start; |
| margin-bottom: var(--space-8); |
| } |
|
|
| .page-header h2 { |
| font-size: var(--text-3xl); |
| font-weight: 800; |
| color: var(--text-default); |
| letter-spacing: -0.03em; |
| line-height: 1.2; |
| } |
|
|
| .page-header .subtitle { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-1); } |
| .page-header .actions { display: flex; gap: var(--space-2); align-items: center; } |
|
|
| |
| .stats-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); |
| gap: var(--space-4); |
| margin-bottom: var(--space-8); |
| } |
|
|
| .stat-card { |
| background: var(--bg-surface); |
| border-radius: var(--radius-xl); |
| border: 1px solid var(--border-default); |
| padding: var(--space-5) var(--space-6); |
| transition: all var(--transition-normal); |
| position: relative; |
| overflow: hidden; |
| display: flex; |
| flex-direction: column; |
| } |
|
|
| .stat-card::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 3px; |
| background: var(--color-primary-500); |
| opacity: 0; |
| transition: opacity var(--transition-fast); |
| } |
|
|
| .stat-card:hover { border-color: var(--color-primary-200); box-shadow: var(--shadow-lg); transform: translateY(-2px); } |
| .stat-card:hover::before { opacity: 1; } |
|
|
| .stat-card .stat-icon { |
| width: 36px; |
| height: 36px; |
| border-radius: var(--radius-md); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 16px; |
| margin-bottom: var(--space-3); |
| flex-shrink: 0; |
| } |
|
|
| .stat-card .stat-value { |
| font-size: var(--text-2xl); |
| font-weight: 800; |
| color: var(--text-default); |
| letter-spacing: -0.03em; |
| line-height: 1; |
| margin-top: auto; |
| } |
|
|
| .stat-card .stat-value-sm { font-size: var(--text-base); } |
|
|
| .stat-card .stat-label { |
| font-size: var(--text-xs); |
| color: var(--text-muted); |
| margin-top: var(--space-1); |
| font-weight: 500; |
| } |
|
|
| |
| .card { |
| background: var(--bg-surface); |
| border-radius: var(--radius-xl); |
| border: 1px solid var(--border-default); |
| padding: var(--space-6); |
| margin-bottom: var(--space-5); |
| transition: all var(--transition-fast); |
| } |
|
|
| .card:hover { box-shadow: var(--shadow-sm); border-color: var(--color-primary-100); } |
|
|
| .card-title { |
| font-size: var(--text-sm); |
| font-weight: 600; |
| color: var(--text-default); |
| margin-bottom: var(--space-4); |
| display: flex; |
| align-items: center; |
| gap: var(--space-2); |
| } |
|
|
| .card-title .card-icon { |
| width: 28px; |
| height: 28px; |
| border-radius: var(--radius-sm); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 14px; |
| background: var(--color-primary-50); |
| color: var(--color-primary-500); |
| } |
|
|
| |
| input, textarea, select { |
| width: 100%; |
| padding: var(--space-2) var(--space-3); |
| border: 1px solid var(--border-default); |
| border-radius: var(--radius-md); |
| font-size: var(--text-sm); |
| font-family: var(--font-sans); |
| transition: all var(--transition-fast); |
| background: var(--bg-surface); |
| color: var(--text-default); |
| line-height: var(--leading-normal); |
| } |
|
|
| input:focus, textarea:focus, select:focus { |
| outline: none; |
| border-color: var(--color-primary-500); |
| box-shadow: 0 0 0 3px var(--color-primary-100); |
| } |
|
|
| textarea { |
| min-height: 100px; |
| resize: vertical; |
| font-family: var(--font-mono); |
| font-size: var(--text-xs); |
| line-height: var(--leading-relaxed); |
| } |
|
|
| label { display: block; font-size: var(--text-sm); font-weight: 500; color: var(--text-muted); margin-bottom: var(--space-1); } |
| .form-group { margin-bottom: var(--space-4); } |
|
|
| |
| .toggle-label { display: flex; align-items: center; gap: var(--space-3); cursor: pointer; margin-bottom: var(--space-4); } |
| .toggle-label input { display: none; } |
| .toggle-slider { position: relative; width: 44px; height: 24px; background: var(--color-neutral-500); border-radius: 12px; transition: background var(--transition-fast); flex-shrink: 0; } |
| .toggle-slider::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: white; border-radius: 50%; transition: transform var(--transition-fast); box-shadow: var(--shadow-sm); } |
| .toggle-label input:checked + .toggle-slider { background: var(--color-primary-500); } |
| .toggle-label input:checked + .toggle-slider::after { transform: translateX(20px); } |
|
|
| |
| .btn { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| gap: var(--space-2); |
| padding: var(--space-2) var(--space-4); |
| border-radius: var(--radius-md); |
| font-size: var(--text-sm); |
| font-weight: 500; |
| font-family: var(--font-sans); |
| border: none; |
| cursor: pointer; |
| transition: all var(--transition-fast); |
| line-height: var(--leading-tight); |
| white-space: nowrap; |
| } |
|
|
| .btn:active { transform: scale(0.97); } |
|
|
| .btn-primary { background: var(--color-primary-500); color: #fff; } |
| .btn-primary:hover { background: var(--color-primary-600); box-shadow: var(--shadow-md); } |
| .btn-primary:active { transform: scale(0.97); } |
|
|
| .btn-secondary { background: var(--bg-surface); color: var(--text-default); border: 1px solid var(--border-default); } |
| .btn-secondary:hover { background: var(--bg-surface-hover); border-color: var(--color-neutral-300); } |
|
|
| .btn-ghost { background: transparent; color: var(--text-muted); } |
| .btn-ghost:hover { background: var(--bg-surface-hover); color: var(--text-default); } |
|
|
| .btn-danger { background: var(--color-danger-500); color: #fff; } |
| .btn-danger:hover { background: var(--color-danger-600); } |
|
|
| .btn-sm { padding: var(--space-1) var(--space-3); font-size: var(--text-xs); border-radius: var(--radius-sm); } |
| .btn-lg { padding: var(--space-3) var(--space-6); font-size: var(--text-base); } |
|
|
| .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; } |
|
|
| .btn-icon { |
| width: 36px; |
| height: 36px; |
| padding: 0; |
| border-radius: var(--radius-md); |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| background: transparent; |
| border: 1px solid var(--border-default); |
| color: var(--text-muted); |
| cursor: pointer; |
| transition: all var(--transition-fast); |
| font-size: 16px; |
| } |
|
|
| .btn-icon:hover { background: var(--bg-surface-hover); color: var(--text-default); border-color: var(--color-neutral-300); } |
|
|
| |
| .auth-page { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| min-height: 100vh; |
| background: var(--bg-app); |
| position: relative; |
| overflow: hidden; |
| } |
|
|
| .auth-page::before { |
| content: ''; |
| position: absolute; |
| top: -30%; |
| right: -10%; |
| width: 700px; |
| height: 700px; |
| background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 65%); |
| border-radius: 50%; |
| pointer-events: none; |
| } |
|
|
| .auth-page::after { |
| content: ''; |
| position: absolute; |
| bottom: -20%; |
| left: -10%; |
| width: 500px; |
| height: 500px; |
| background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 60%); |
| border-radius: 50%; |
| pointer-events: none; |
| } |
|
|
| .auth-card { |
| background: #ffffff; |
| border-radius: var(--radius-2xl); |
| border: 1px solid var(--border-default); |
| padding: var(--space-10); |
| width: 100%; |
| max-width: 420px; |
| box-shadow: var(--shadow-xl); |
| position: relative; |
| z-index: 1; |
| } |
|
|
| .auth-card .auth-brand { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| gap: var(--space-2); |
| margin-bottom: var(--space-3); |
| text-decoration: none; |
| color: var(--text-default); |
| } |
|
|
| .auth-card .auth-brand-icon { |
| width: 42px; |
| height: 42px; |
| background: var(--color-primary-500); |
| border-radius: var(--radius-md); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 20px; |
| font-weight: 800; |
| color: #fff; |
| } |
|
|
| .auth-card h1 { |
| font-size: var(--text-2xl); |
| font-weight: 800; |
| color: var(--text-default); |
| text-align: center; |
| letter-spacing: -0.02em; |
| } |
|
|
| .auth-card h1 span { color: var(--color-primary-500); } |
|
|
| .auth-card .subtitle { text-align: center; color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-6); } |
|
|
| .auth-card .footer-link { text-align: center; font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-5); } |
|
|
| |
| .pwd-wrapper { position: relative; } |
| .pwd-wrapper input { padding-right: 44px; width: 100%; } |
| .pwd-toggle { |
| position: absolute; right: 12px; top: 50%; transform: translateY(-50%); |
| cursor: pointer; font-size: 20px; line-height: 1; user-select: none; |
| color: var(--text-muted); transition: color .15s; padding: 4px; |
| } |
| .pwd-toggle:hover { color: var(--text-default); } |
|
|
| |
| .reset-token-box { |
| background: var(--bg-surface-hover); border: 1px dashed var(--color-primary-300); |
| border-radius: var(--radius-lg); padding: var(--space-4); |
| font-family: var(--font-mono, monospace); font-size: var(--text-xs); |
| word-break: break-all; text-align: center; margin-bottom: var(--space-5); |
| color: var(--text-default); user-select: all; |
| } |
|
|
| |
| .search-section { display: flex; gap: var(--space-2); } |
| .search-section input { flex: 1; } |
|
|
| .results-stats { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-3); font-weight: 500; } |
|
|
| |
| .job-list { display: flex; flex-direction: column; gap: var(--space-2); } |
|
|
| .job-item { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: var(--space-4) var(--space-5); |
| border: 1px solid var(--border-default); |
| border-radius: var(--radius-lg); |
| transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); |
| cursor: pointer; |
| background: var(--bg-surface); |
| position: relative; |
| } |
|
|
| .job-item:hover { |
| border-color: var(--color-primary-200); |
| box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04); |
| transform: translateY(-1px); |
| } |
|
|
| .job-item .job-info { flex: 1; min-width: 0; } |
| .job-item .job-title { font-weight: 600; font-size: var(--text-sm); color: var(--text-default); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } |
| .job-item .job-company { font-size: var(--text-xs); color: var(--text-muted); margin-top: 3px; display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; } |
| .job-item .job-source { font-size: 11px; color: var(--text-subtle); } |
|
|
| .job-item .job-score { |
| display: inline-flex; |
| align-items: center; |
| gap: var(--space-1); |
| font-size: var(--text-sm); |
| font-weight: 700; |
| padding: var(--space-1) var(--space-3); |
| border-radius: var(--radius-full); |
| background: var(--color-primary-50); |
| color: var(--color-primary-500); |
| } |
|
|
| .job-item .job-actions { display: flex; gap: var(--space-2); align-items: center; flex-shrink: 0; margin-left: var(--space-3); } |
|
|
| .badge { |
| display: inline-flex; |
| align-items: center; |
| font-size: 10px; |
| padding: 2px 8px; |
| border-radius: var(--radius-full); |
| font-weight: 600; |
| letter-spacing: 0.02em; |
| } |
|
|
| .badge-new { background: var(--color-info-500); color: #fff; } |
| .badge-tailored { background: var(--color-primary-50); color: var(--color-primary-500); } |
|
|
| .cat-badge { |
| display: inline-flex; |
| align-items: center; |
| font-size: 10px; |
| padding: 2px 8px; |
| border-radius: var(--radius-full); |
| font-weight: 500; |
| margin-right: var(--space-1); |
| } |
|
|
| |
| .cv-editor { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); } |
| .cv-editor textarea { min-height: 400px; } |
| .cv-editor .preview { font-size: var(--text-xs); color: var(--text-muted); padding: var(--space-3); background: var(--bg-app); border-radius: var(--radius-md); max-height: 400px; overflow-y: auto; border: 1px solid var(--border-default); } |
|
|
| .settings-section {} |
|
|
| .key-input { display: flex; gap: var(--space-2); align-items: center; margin-bottom: var(--space-3); } |
| .key-input label { flex: 0 0 80px; margin: 0; font-size: var(--text-xs); } |
| .key-input input { font-family: var(--font-mono); font-size: var(--text-xs); } |
|
|
| .key-status { display: inline-block; width: 8px; height: 8px; border-radius: var(--radius-full); } |
| .key-status.set { background: var(--color-success-500); box-shadow: 0 0 6px oklch(58% 0.18 150 / 0.4); } |
| .key-status.unset { background: var(--color-neutral-300); } |
|
|
| .toast { |
| position: fixed; |
| bottom: var(--space-6); |
| right: var(--space-6); |
| padding: var(--space-3) var(--space-5); |
| border-radius: var(--radius-lg); |
| color: #fff; |
| font-size: var(--text-sm); |
| font-weight: 500; |
| z-index: 1000; |
| opacity: 0; |
| transition: all var(--transition-normal); |
| transform: translateY(8px); |
| box-shadow: var(--shadow-lg); |
| display: flex; |
| align-items: center; |
| gap: var(--space-2); |
| backdrop-filter: blur(8px); |
| } |
|
|
| .toast.show { opacity: 1; transform: translateY(0); } |
| .toast.success { background: var(--color-success-600); } |
| .toast.error { background: var(--color-danger-600); } |
| .toast.info { background: var(--color-info-600); } |
|
|
| .spinner { |
| display: inline-block; |
| width: 16px; |
| height: 16px; |
| border: 2px solid var(--color-neutral-200); |
| border-top-color: var(--color-primary-500); |
| border-radius: var(--radius-full); |
| animation: spin 0.6s linear infinite; |
| } |
|
|
| .spinner-lg { width: 24px; height: 24px; border-width: 3px; } |
|
|
| @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } |
| @keyframes slideInLeft { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } } |
| @keyframes spin { to { transform: rotate(360deg); } } |
| @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } |
|
|
| .animate-in { animation: fadeIn 0.3s ease-out; } |
| .animate-slide-in { animation: slideInLeft 0.3s ease-out; } |
|
|
| .job-item.job-new { border-left: 3px solid var(--color-primary-500); } |
| .job-item.job-age-fresh { border-left-color: var(--color-primary-400); background: var(--color-primary-50); } |
| .job-item.job-age-fresh:hover { background: var(--color-primary-100); } |
| .job-item.job-age-today { border-left-color: var(--color-warning-500); } |
| .job-item .new-badge, |
| .new-badge { background: var(--color-primary-500); color: #fff; font-size: 9px; padding: 1px 7px; border-radius: var(--radius-full); margin-left: var(--space-2); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; } |
|
|
| .new-badge-fresh { background: var(--color-primary-500); } |
|
|
| .job-age-fresh { opacity: 1; } |
|
|
| .job-age-old { opacity: 0.85; } |
|
|
| |
| .modal-overlay { |
| position: fixed; |
| inset: 0; |
| background: oklch(15% 0.01 160 / 0.35); |
| backdrop-filter: blur(4px); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| z-index: 100; |
| animation: fadeIn 0.2s ease-out; |
| } |
|
|
| .modal { |
| background: var(--bg-surface); |
| border-radius: var(--radius-2xl); |
| padding: var(--space-6); |
| max-width: 600px; |
| width: 90%; |
| max-height: 80vh; |
| overflow-y: auto; |
| box-shadow: var(--shadow-2xl); |
| animation: fadeIn 0.3s ease-out; |
| } |
|
|
| .modal h2 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-3); } |
| .modal .close { float: right; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-subtle); padding: var(--space-1); border-radius: var(--radius-sm); } |
| .modal .close:hover { color: var(--text-default); background: var(--bg-surface-hover); } |
| .modal-actions { display: flex; gap: var(--space-2); margin-top: var(--space-4); justify-content: flex-end; } |
|
|
| .empty-state { text-align: center; padding: var(--space-12) var(--space-6); color: var(--text-subtle); } |
| .empty-state .empty-icon { font-size: 48px; margin-bottom: var(--space-4); opacity: 0.4; } |
| .empty-state h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--text-muted); } |
| .empty-state p { font-size: var(--text-sm); max-width: 320px; margin: 0 auto; } |
|
|
| |
| .filters-bar { |
| display: flex; |
| gap: var(--space-2); |
| flex-wrap: wrap; |
| margin-bottom: var(--space-5); |
| align-items: center; |
| padding: var(--space-4); |
| background: var(--bg-surface); |
| border: 1px solid var(--border-default); |
| border-radius: var(--radius-lg); |
| } |
|
|
| .filters-bar select, .filters-bar input { width: auto; min-width: 150px; padding: var(--space-2) var(--space-3); font-size: var(--text-xs); } |
| .filters-bar .btn { font-size: var(--text-xs); } |
|
|
| |
| .job-detail h2 { font-size: var(--text-2xl); margin-bottom: var(--space-1); } |
| .job-detail .meta { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-4); } |
| .job-detail .meta span { display: flex; align-items: center; gap: var(--space-1); } |
| .job-detail .description { |
| font-size: var(--text-sm); |
| line-height: var(--leading-relaxed); |
| color: var(--color-neutral-700); |
| white-space: pre-wrap; |
| max-height: 500px; |
| overflow-y: auto; |
| padding: var(--space-4); |
| background: var(--bg-app); |
| border-radius: var(--radius-md); |
| border: 1px solid var(--border-default); |
| } |
|
|
| .url-input-group { display: flex; gap: var(--space-2); } |
| .url-input-group input { flex: 1; } |
|
|
| .back-link { |
| font-size: 13px; |
| color: var(--color-primary-500); |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| margin-bottom: var(--space-4); |
| font-weight: 500; |
| transition: gap var(--transition-fast); |
| } |
|
|
| .back-link:hover { gap: 6px; } |
|
|
| .extracted-preview { |
| padding: var(--space-4); |
| background: var(--bg-app); |
| border-radius: var(--radius-md); |
| border: 1px solid var(--border-default); |
| margin-bottom: var(--space-3); |
| font-size: var(--text-sm); |
| } |
|
|
| .extracted-preview .field { margin-bottom: var(--space-2); } |
| .extracted-preview .field-label { font-weight: 600; color: var(--text-default); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; } |
| .extracted-preview .field-value { color: var(--text-default); margin-top: 2px; } |
|
|
| .pagination { display: flex; gap: var(--space-1); justify-content: center; margin-top: var(--space-6); } |
| .pagination button { font-size: var(--text-xs); } |
|
|
| |
| .tailor-result { |
| padding: var(--space-5); |
| background: var(--color-primary-50); |
| border-radius: var(--radius-xl); |
| border: 1px solid var(--color-primary-200); |
| margin-top: var(--space-4); |
| animation: fadeUp 0.3s ease-out both; |
| } |
|
|
| .tailor-result .result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-primary-100); } |
| .tailor-result .match-score { font-size: var(--text-2xl); font-weight: 800; color: var(--color-primary-500); letter-spacing: -0.03em; } |
| .tailor-result .provider-label { font-size: 11px; color: var(--text-subtle); background: var(--color-primary-100); padding: 2px 10px; border-radius: var(--radius-full); } |
| .tailor-result .result-section { margin-bottom: var(--space-4); } |
| .tailor-result .result-section-title { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-2); display: flex; align-items: center; gap: 6px; } |
| .tailor-result .result-section-title::before { content: ''; width: 3px; height: 14px; background: var(--color-primary-400); border-radius: 2px; display: inline-block; } |
| .tailor-result .result-section-body { font-size: var(--text-sm); color: var(--text-default); line-height: var(--leading-relaxed); } |
| .tailor-result .result-section-body--cover { background: rgba(255,255,255,0.5); padding: var(--space-3); border-radius: var(--radius-md); border: 1px solid var(--color-primary-100); } |
|
|
| .quality-scores { margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--border-default); } |
|
|
| .quality-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-3); } |
|
|
| .quality-item { |
| border: 1px solid; |
| border-radius: var(--radius-lg); |
| padding: var(--space-3) var(--space-4); |
| display: flex; |
| flex-direction: column; |
| gap: var(--space-2); |
| transition: transform var(--transition-fast); |
| } |
|
|
| .quality-item:hover { transform: translateY(-1px); } |
|
|
| .quality-header { display: flex; align-items: center; justify-content: space-between; } |
|
|
| .quality-label { font-size: var(--text-xs); font-weight: 600; color: var(--text-default); } |
|
|
| .quality-badge { |
| font-size: 10px; |
| font-weight: 700; |
| padding: 2px 8px; |
| border-radius: var(--radius-full); |
| letter-spacing: 0.04em; |
| } |
|
|
| .quality-bar-track { height: 4px; background: var(--border-default); border-radius: 2px; overflow: hidden; } |
| .quality-bar-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease; } |
|
|
| .quality-value { font-size: 11px; color: var(--text-subtle); line-height: var(--leading-normal); } |
|
|
| .quality-check { display: none; } |
|
|
| .keyword-tags { display: flex; flex-wrap: wrap; gap: var(--space-1); } |
| .keyword-tag { |
| font-size: 11px; |
| padding: 2px 10px; |
| border-radius: var(--radius-full); |
| background: var(--bg-surface); |
| border: 1px solid var(--color-primary-200); |
| color: var(--color-primary-600); |
| font-weight: 500; |
| } |
|
|
| .category-breakdown { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-2); } |
|
|
| .category-chip { |
| display: flex; |
| align-items: center; |
| gap: var(--space-2); |
| padding: var(--space-2) var(--space-3); |
| border-radius: var(--radius-md); |
| transition: all var(--transition-fast); |
| cursor: pointer; |
| position: relative; |
| } |
|
|
| .category-chip:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); } |
|
|
| .category-chip .chip-bar { |
| position: absolute; |
| left: 0; |
| top: 0; |
| bottom: 0; |
| border-radius: var(--radius-md); |
| opacity: 0.08; |
| transition: width var(--transition-slow); |
| } |
|
|
| .category-chip .chip-count { font-size: var(--text-base); font-weight: 700; min-width: 28px; position: relative; z-index: 1; } |
| .category-chip .chip-label { font-size: var(--text-xs); color: var(--text-muted); position: relative; z-index: 1; } |
|
|
| .divider { height: 1px; background: var(--border-default); margin: var(--space-4) 0; } |
|
|
| |
| .cv-form-section { |
| background: var(--bg-surface); |
| border: 1px solid var(--border-default); |
| border-radius: var(--radius-lg); |
| padding: var(--space-5); |
| margin-bottom: var(--space-4); |
| } |
|
|
| .cv-form-section h3 { |
| font-size: var(--text-sm); |
| font-weight: 600; |
| margin-bottom: var(--space-4); |
| display: flex; |
| align-items: center; |
| gap: var(--space-2); |
| color: var(--text-default); |
| } |
|
|
| .cv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); } |
| .cv-form-row-full { grid-column: 1 / -1; } |
|
|
| .entry-card { |
| background: var(--bg-app); |
| border: 1px solid var(--border-default); |
| border-radius: var(--radius-md); |
| padding: var(--space-4); |
| margin-bottom: var(--space-3); |
| position: relative; |
| } |
|
|
| .entry-card .remove-entry { |
| position: absolute; |
| top: var(--space-2); |
| right: var(--space-2); |
| background: none; |
| border: none; |
| color: var(--text-subtle); |
| cursor: pointer; |
| font-size: 16px; |
| padding: var(--space-1); |
| border-radius: var(--radius-sm); |
| transition: all var(--transition-fast); |
| } |
|
|
| .entry-card .remove-entry:hover { color: var(--color-danger-500); background: rgba(239,68,68,0.08); } |
|
|
| .add-entry-btn { |
| display: flex; |
| align-items: center; |
| gap: var(--space-2); |
| padding: var(--space-2) var(--space-3); |
| border-radius: var(--radius-md); |
| border: 1px dashed var(--border-default); |
| background: transparent; |
| color: var(--text-muted); |
| font-size: var(--text-xs); |
| font-weight: 500; |
| cursor: pointer; |
| transition: all var(--transition-fast); |
| width: 100%; |
| justify-content: center; |
| font-family: var(--font-sans); |
| } |
|
|
| .add-entry-btn:hover { border-color: var(--color-primary-300); color: var(--color-primary-500); background: var(--color-primary-50); } |
|
|
| .validation-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: var(--space-1); |
| font-size: 11px; |
| padding: 2px 8px; |
| border-radius: var(--radius-full); |
| font-weight: 500; |
| } |
|
|
| .validation-badge.present { background: var(--color-primary-50); color: var(--color-primary-500); } |
| .validation-badge.missing { background: rgba(245,158,11,0.1); color: var(--color-warning-600); } |
|
|
| .skeleton { |
| background: linear-gradient(90deg, var(--bg-surface-hover) 25%, var(--border-default) 50%, var(--bg-surface-hover) 75%); |
| background-size: 200% 100%; |
| animation: pulse 1.5s ease-in-out infinite; |
| border-radius: var(--radius-sm); |
| } |
|
|
| .mobile-nav-toggle { |
| display: none; |
| background: none; |
| border: none; |
| color: var(--text-default); |
| font-size: 20px; |
| cursor: pointer; |
| padding: var(--space-2); |
| } |
|
|
| |
| @media (max-width: 1024px) { |
| .category-breakdown { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } |
| } |
|
|
| @media (max-width: 768px) { |
| .sidebar { transform: translateX(-100%); } |
| .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-2xl); } |
| .main-content { margin-left: 0; } |
| .mobile-nav-toggle { display: flex; } |
| .cv-editor { grid-template-columns: 1fr; } |
| .cv-form-row { grid-template-columns: 1fr; } |
| .stats-grid { grid-template-columns: repeat(2, 1fr); } |
| .page-content { padding: var(--space-4); } |
| .page-header { flex-direction: column; gap: var(--space-3); } |
| .page-header h2 { font-size: var(--text-2xl); } |
| .filters-bar { flex-direction: column; } |
| .filters-bar select, .filters-bar input { width: 100%; } |
| .category-breakdown { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } |
| .top-bar { padding: var(--space-2) var(--space-3); gap: var(--space-2); } |
| .top-bar-search { max-width: 180px; } |
| .quality-grid { grid-template-columns: 1fr; } |
| .modal { width: 95%; max-height: 90vh; border-radius: var(--radius-lg); } |
| .job-detail .description { max-height: 300px; } |
| .url-input-group { flex-direction: column; } |
| } |
|
|
| @media (max-width: 600px) { |
| .top-bar-search { display: none; } |
| .top-bar-actions { gap: var(--space-1); } |
| .top-bar-actions .btn { padding: var(--space-1) var(--space-2); font-size: var(--text-xs); } |
| .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); } |
| .stat-card { padding: var(--space-3); } |
| .stat-card .stat-value { font-size: var(--text-xl); } |
| .stat-card .stat-icon { width: 28px; height: 28px; font-size: 13px; margin-bottom: var(--space-2); } |
| .card { padding: var(--space-4); } |
| .page-content { padding: var(--space-3); } |
| .page-header { margin-bottom: var(--space-4); } |
| } |
|
|
| @media (max-width: 480px) { |
| .stats-grid { grid-template-columns: 1fr; gap: var(--space-2); } |
| .auth-card { padding: var(--space-5); margin: var(--space-3); } |
| .auth-card h1 { font-size: var(--text-xl); } |
| .job-item { flex-direction: column; align-items: flex-start; gap: var(--space-2); } |
| .job-item .job-actions { margin-left: 0; width: 100%; justify-content: flex-end; } |
| .category-breakdown { grid-template-columns: 1fr 1fr; } |
| .page-header h2 { font-size: var(--text-xl); } |
| .page-header .subtitle { font-size: var(--text-xs); } |
| .top-bar { padding: var(--space-2); gap: var(--space-1); } |
| .top-bar-actions .btn { font-size: 11px; padding: var(--space-1) var(--space-2); } |
| .modal { padding: var(--space-4); } |
| .modal h2 { font-size: var(--text-base); } |
| .btn { min-height: 36px; } |
| .key-input { flex-direction: column; align-items: stretch; } |
| .key-input label { flex: none; } |
| .tailor-result .result-header { flex-direction: column; gap: var(--space-2); align-items: flex-start; } |
| .entry-card { padding: var(--space-3); } |
| .cv-form-section { padding: var(--space-3); } |
| } |
|
|