| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap'); |
|
|
|
|
| :root { |
| --font-ui: 'Inter', system-ui, sans-serif; |
| --font-mono: 'JetBrains Mono', 'Fira Code', monospace; |
|
|
| --bg-base: #070c18; |
| --bg-surface: rgba(15, 23, 42, 0.75); |
| --bg-elevated: rgba(22, 33, 58, 0.8); |
| --bg-hover: rgba(255, 255, 255, 0.04); |
| --bg-active: rgba(99, 102, 241, 0.12); |
|
|
| --border-subtle: rgba(148, 163, 184, 0.08); |
| --border-dim: rgba(148, 163, 184, 0.14); |
| --border-focus: rgba(99, 102, 241, 0.6); |
|
|
| --text-primary: #f1f5f9; |
| --text-secondary:#94a3b8; |
| --text-muted: #64748b; |
| --text-accent: #818cf8; |
|
|
| --indigo: #6366f1; |
| --indigo-light: #818cf8; |
| --violet: #8b5cf6; |
| --cyan: #06b6d4; |
| --green: #10b981; |
| --red: #ef4444; |
| --orange: #f59e0b; |
|
|
| --gradient-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%); |
| --gradient-btn: linear-gradient(135deg, #6366f1, #8b5cf6); |
| --gradient-glow: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.08)); |
|
|
| --radius-sm: 6px; |
| --radius-md: 12px; |
| --radius-lg: 18px; |
| --radius-xl: 24px; |
| --radius-pill: 9999px; |
|
|
| --shadow-card: 0 1px 3px rgba(0,0,0,0.3), 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04); |
| --shadow-glow: 0 0 30px rgba(99,102,241,0.2); |
| --shadow-btn: 0 8px 24px -4px rgba(99,102,241,0.5); |
|
|
| --blur: blur(20px); |
| --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); |
| } |
|
|
|
|
| *, *::before, *::after { |
| box-sizing: border-box; |
| margin: 0; |
| padding: 0; |
| } |
|
|
| html { scroll-behavior: smooth; } |
|
|
| body { |
| font-family: var(--font-ui); |
| background: var(--bg-base); |
| color: var(--text-primary); |
| min-height: 100vh; |
| overflow-x: hidden; |
| -webkit-font-smoothing: antialiased; |
| -moz-osx-font-smoothing: grayscale; |
| line-height: 1.5; |
| } |
|
|
| body::before { |
| content: ''; |
| position: fixed; |
| inset: 0; |
| background: |
| radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99,102,241,0.12) 0%, transparent 60%), |
| radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139,92,246,0.08) 0%, transparent 50%), |
| radial-gradient(ellipse 40% 60% at 90% 20%, rgba(6,182,212,0.06) 0%, transparent 40%); |
| pointer-events: none; |
| z-index: 0; |
| } |
|
|
| #root { position: relative; z-index: 1; } |
|
|
| a { color: inherit; text-decoration: none; } |
| button { font-family: var(--font-ui); } |
| input, textarea, select { font-family: var(--font-ui); } |
|
|
|
|
| ::-webkit-scrollbar { width: 5px; height: 5px; } |
| ::-webkit-scrollbar-track { background: transparent; } |
| ::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.15); border-radius: 99px; } |
| ::-webkit-scrollbar-thumb:hover { background: rgba(148,163,184,0.3); } |
|
|
|
|
| .page-loader { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| min-height: 100vh; |
| gap: 16px; |
| color: var(--text-muted); |
| font-size: 0.875rem; |
| letter-spacing: 0.1em; |
| } |
| .page-loader-spinner { |
| width: 36px; |
| height: 36px; |
| border: 2px solid var(--border-subtle); |
| border-top-color: var(--indigo); |
| border-radius: 50%; |
| animation: spin 0.8s linear infinite; |
| } |
|
|
|
|
| .auth-scene { |
| min-height: 100vh; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| padding: 1.5rem; |
| } |
|
|
| .auth-shell { |
| width: 100%; |
| max-width: 460px; |
| display: flex; |
| flex-direction: column; |
| gap: 1.5rem; |
| animation: fadeUp 0.4s ease both; |
| } |
|
|
| .auth-brand { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| justify-content: center; |
| } |
|
|
| .auth-brand-mark { |
| width: 36px; |
| height: 36px; |
| background: var(--gradient-brand); |
| border-radius: 10px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: 900; |
| font-size: 0.9rem; |
| color: white; |
| flex-shrink: 0; |
| } |
|
|
| .auth-brand-name { |
| font-size: 1.1rem; |
| font-weight: 800; |
| letter-spacing: 0.08em; |
| color: var(--text-primary); |
| } |
|
|
| .auth-card { |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-xl); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| box-shadow: var(--shadow-card); |
| overflow: hidden; |
| } |
|
|
| .auth-card-inner { |
| padding: 2.5rem; |
| } |
|
|
| .auth-card-header { |
| margin-bottom: 2rem; |
| } |
|
|
| .auth-card-title { |
| font-size: 1.75rem; |
| font-weight: 800; |
| letter-spacing: -0.03em; |
| color: var(--text-primary); |
| line-height: 1.2; |
| } |
|
|
| .auth-card-subtitle { |
| margin-top: 0.4rem; |
| font-size: 0.9rem; |
| color: var(--text-secondary); |
| line-height: 1.5; |
| } |
|
|
| .auth-back { |
| position: fixed; |
| top: 1.25rem; |
| left: 1.25rem; |
| z-index: 100; |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| padding: 8px 14px; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-pill); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| color: var(--text-secondary); |
| font-size: 0.8rem; |
| font-weight: 600; |
| cursor: pointer; |
| transition: var(--transition); |
| } |
| .auth-back:hover { |
| color: var(--text-primary); |
| border-color: var(--border-focus); |
| background: var(--bg-elevated); |
| } |
|
|
|
|
| .form-stack { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| } |
|
|
| .field { |
| display: flex; |
| flex-direction: column; |
| gap: 0.375rem; |
| } |
|
|
| .field-label { |
| font-size: 0.75rem; |
| font-weight: 600; |
| letter-spacing: 0.06em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| } |
|
|
| .field-input { |
| width: 100%; |
| background: rgba(7, 12, 24, 0.6); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-md); |
| padding: 0.75rem 1rem; |
| font-size: 0.95rem; |
| color: var(--text-primary); |
| outline: none; |
| transition: var(--transition); |
| } |
|
|
| .field-input::placeholder { color: var(--text-muted); } |
|
|
| .field-input:hover { border-color: rgba(148, 163, 184, 0.22); } |
|
|
| .field-input:focus { |
| border-color: var(--indigo); |
| box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15); |
| background: rgba(7, 12, 24, 0.8); |
| } |
|
|
| .field-input.error { |
| border-color: var(--red); |
| box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1); |
| } |
|
|
| textarea.field-input { |
| resize: none; |
| min-height: 90px; |
| line-height: 1.6; |
| } |
|
|
| .field-row { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 0.75rem; |
| } |
|
|
| @media (max-width: 460px) { |
| .field-row { grid-template-columns: 1fr; } |
| } |
|
|
|
|
| .btn { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| gap: 8px; |
| border: none; |
| border-radius: var(--radius-md); |
| font-size: 0.875rem; |
| font-weight: 600; |
| cursor: pointer; |
| transition: var(--transition); |
| text-decoration: none; |
| white-space: nowrap; |
| letter-spacing: 0.02em; |
| } |
|
|
| .btn:disabled { |
| opacity: 0.5; |
| cursor: not-allowed; |
| transform: none !important; |
| } |
|
|
| .btn-primary { |
| width: 100%; |
| padding: 0.825rem 1.5rem; |
| background: var(--gradient-btn); |
| color: white; |
| box-shadow: var(--shadow-btn); |
| font-size: 0.9rem; |
| font-weight: 700; |
| border-radius: var(--radius-md); |
| letter-spacing: 0.04em; |
| } |
|
|
| .btn-primary:hover:not(:disabled) { |
| transform: translateY(-1px); |
| box-shadow: 0 12px 32px -4px rgba(99,102,241,0.6); |
| filter: brightness(1.08); |
| } |
|
|
| .btn-primary:active:not(:disabled) { transform: translateY(0); } |
|
|
| .btn-secondary { |
| padding: 0.6rem 1.25rem; |
| background: var(--bg-hover); |
| color: var(--text-secondary); |
| border: 1px solid var(--border-dim); |
| } |
|
|
| .btn-secondary:hover:not(:disabled) { |
| background: rgba(255,255,255,0.07); |
| color: var(--text-primary); |
| border-color: var(--border-dim); |
| } |
|
|
| .btn-danger { |
| padding: 0.6rem 1.25rem; |
| background: rgba(239,68,68,0.15); |
| color: var(--red); |
| border: 1px solid rgba(239,68,68,0.25); |
| } |
| .btn-danger:hover:not(:disabled) { background: rgba(239,68,68,0.25); } |
|
|
| .btn-ghost { |
| padding: 0.5rem 0.75rem; |
| background: transparent; |
| color: var(--text-secondary); |
| border: none; |
| } |
| .btn-ghost:hover { color: var(--text-primary); background: var(--bg-hover); } |
|
|
| .btn-icon { |
| width: 32px; |
| height: 32px; |
| padding: 0; |
| background: var(--bg-hover); |
| color: var(--text-secondary); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-sm); |
| flex-shrink: 0; |
| } |
| .btn-icon:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); } |
|
|
| .btn-sm { padding: 0.4rem 0.875rem; font-size: 0.8rem; } |
| .btn-xs { padding: 0.3rem 0.625rem; font-size: 0.75rem; border-radius: var(--radius-sm); } |
|
|
|
|
| .form-error { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| padding: 0.625rem 0.875rem; |
| background: rgba(239, 68, 68, 0.08); |
| border: 1px solid rgba(239, 68, 68, 0.2); |
| border-radius: var(--radius-md); |
| color: #fca5a5; |
| font-size: 0.85rem; |
| line-height: 1.4; |
| } |
|
|
| .form-success { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| padding: 0.625rem 0.875rem; |
| background: rgba(16, 185, 129, 0.08); |
| border: 1px solid rgba(16, 185, 129, 0.2); |
| border-radius: var(--radius-md); |
| color: #6ee7b7; |
| font-size: 0.85rem; |
| line-height: 1.4; |
| } |
|
|
| .auth-footer-links { |
| text-align: center; |
| padding: 1.25rem 2.5rem 2rem; |
| border-top: 1px solid var(--border-subtle); |
| color: var(--text-muted); |
| font-size: 0.875rem; |
| } |
|
|
| .auth-footer-links a { |
| color: var(--text-accent); |
| font-weight: 600; |
| transition: var(--transition); |
| } |
| .auth-footer-links a:hover { color: var(--indigo-light); text-decoration: underline; } |
|
|
| .divider-text { |
| display: flex; |
| align-items: center; |
| gap: 0.75rem; |
| color: var(--text-muted); |
| font-size: 0.8rem; |
| margin: 0.5rem 0; |
| } |
| .divider-text::before, .divider-text::after { |
| content: ''; |
| flex: 1; |
| height: 1px; |
| background: var(--border-subtle); |
| } |
|
|
|
|
| .alert-stack { |
| position: fixed; |
| top: 1.25rem; |
| right: 1.25rem; |
| z-index: 9999; |
| display: flex; |
| flex-direction: column; |
| gap: 0.625rem; |
| pointer-events: none; |
| max-width: 340px; |
| } |
|
|
| .alert-toast { |
| display: flex; |
| align-items: flex-start; |
| gap: 10px; |
| padding: 0.875rem 1rem; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-lg); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| box-shadow: 0 8px 24px rgba(0,0,0,0.4); |
| pointer-events: all; |
| animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both; |
| position: relative; |
| overflow: hidden; |
| } |
|
|
| .alert-toast::before { |
| content: ''; |
| position: absolute; |
| left: 0; top: 0; bottom: 0; |
| width: 3px; |
| border-radius: 3px 0 0 3px; |
| } |
|
|
| .alert-toast.success::before { background: var(--green); } |
| .alert-toast.error::before { background: var(--red); } |
| .alert-toast.warning::before { background: var(--orange); } |
| .alert-toast.info::before { background: var(--cyan); } |
|
|
| .alert-dot { |
| width: 8px; |
| height: 8px; |
| border-radius: 50%; |
| flex-shrink: 0; |
| margin-top: 5px; |
| } |
|
|
| .alert-toast.success .alert-dot { background: var(--green); } |
| .alert-toast.error .alert-dot { background: var(--red); } |
| .alert-toast.warning .alert-dot { background: var(--orange); } |
| .alert-toast.info .alert-dot { background: var(--cyan); } |
|
|
| .alert-body { flex: 1; min-width: 0; } |
| .alert-title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); } |
| .alert-msg { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; } |
|
|
| .alert-close-btn { |
| background: none; |
| border: none; |
| color: var(--text-muted); |
| cursor: pointer; |
| padding: 2px 4px; |
| border-radius: var(--radius-sm); |
| transition: var(--transition); |
| flex-shrink: 0; |
| font-size: 0.85rem; |
| line-height: 1; |
| margin-top: 1px; |
| } |
| .alert-close-btn:hover { color: var(--text-primary); background: var(--bg-hover); } |
|
|
|
|
| .modal-backdrop { |
| position: fixed; |
| inset: 0; |
| background: rgba(0, 0, 0, 0.6); |
| backdrop-filter: blur(6px); |
| -webkit-backdrop-filter: blur(6px); |
| z-index: 5000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| padding: 1rem; |
| animation: fadeIn 0.15s ease both; |
| } |
|
|
| .modal-box { |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-xl); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| box-shadow: var(--shadow-card); |
| width: 100%; |
| animation: fadeUp 0.2s ease both; |
| overflow: hidden; |
| } |
|
|
| .modal-header { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 1.25rem 1.5rem; |
| border-bottom: 1px solid var(--border-subtle); |
| } |
|
|
| .modal-title { |
| font-size: 0.95rem; |
| font-weight: 700; |
| color: var(--text-primary); |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
|
|
| .modal-body { |
| padding: 1.5rem; |
| max-height: 65vh; |
| overflow-y: auto; |
| } |
|
|
| .modal-footer { |
| display: flex; |
| justify-content: flex-end; |
| gap: 0.625rem; |
| padding: 1rem 1.5rem; |
| border-top: 1px solid var(--border-subtle); |
| } |
|
|
| .dialog-field { |
| width: 100%; |
| background: rgba(7, 12, 24, 0.6); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-md); |
| padding: 0.75rem 1rem; |
| font-size: 0.9rem; |
| color: var(--text-primary); |
| outline: none; |
| transition: var(--transition); |
| font-family: var(--font-mono); |
| } |
| .dialog-field:focus { |
| border-color: var(--indigo); |
| box-shadow: 0 0 0 3px rgba(99,102,241,0.15); |
| } |
| .dialog-field:disabled { |
| opacity: 0.5; |
| cursor: not-allowed; |
| background: rgba(7,12,24,0.3); |
| } |
|
|
|
|
| .dash-layout { |
| min-height: 100vh; |
| display: flex; |
| flex-direction: column; |
| } |
|
|
|
|
| .dash-header { |
| position: sticky; |
| top: 0; |
| z-index: 200; |
| height: 58px; |
| display: flex; |
| align-items: center; |
| padding: 0 1.5rem; |
| gap: 1rem; |
| background: rgba(7, 12, 24, 0.85); |
| border-bottom: 1px solid var(--border-subtle); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| } |
|
|
| .dash-header-brand { |
| display: flex; |
| align-items: center; |
| gap: 9px; |
| flex-shrink: 0; |
| } |
|
|
| .dash-header-logo { |
| width: 30px; |
| height: 30px; |
| background: var(--gradient-brand); |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 0.8rem; |
| font-weight: 900; |
| color: white; |
| } |
|
|
| .dash-header-name { |
| font-size: 0.9rem; |
| font-weight: 800; |
| letter-spacing: 0.06em; |
| color: var(--text-primary); |
| } |
|
|
| .dash-header-spacer { flex: 1; } |
|
|
| .dash-header-stats { |
| display: flex; |
| align-items: center; |
| gap: 0.5rem; |
| } |
|
|
| .stat-chip { |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| padding: 4px 10px; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-pill); |
| font-size: 0.72rem; |
| font-weight: 600; |
| color: var(--text-secondary); |
| font-family: var(--font-mono); |
| } |
|
|
| .stat-chip-val { color: var(--text-primary); } |
| .stat-chip-dot { |
| width: 5px; |
| height: 5px; |
| border-radius: 50%; |
| background: var(--green); |
| animation: pulse-dot 2s infinite; |
| } |
|
|
| .dash-header-user { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| padding: 5px 10px 5px 5px; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-pill); |
| cursor: pointer; |
| transition: var(--transition); |
| } |
| .dash-header-user:hover { border-color: var(--border-dim); background: var(--bg-elevated); } |
|
|
| .user-avatar { |
| width: 28px; |
| height: 28px; |
| border-radius: 8px; |
| object-fit: cover; |
| background: var(--bg-elevated); |
| flex-shrink: 0; |
| } |
|
|
| .user-avatar-fallback { |
| width: 28px; |
| height: 28px; |
| border-radius: 8px; |
| background: var(--gradient-btn); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 0.7rem; |
| font-weight: 800; |
| color: white; |
| flex-shrink: 0; |
| } |
|
|
| .user-name-label { |
| font-size: 0.8rem; |
| font-weight: 600; |
| color: var(--text-primary); |
| max-width: 120px; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| } |
|
|
| .logout-btn { |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| padding: 5px 12px; |
| background: rgba(239, 68, 68, 0.1); |
| border: 1px solid rgba(239, 68, 68, 0.2); |
| border-radius: var(--radius-sm); |
| color: #fca5a5; |
| font-size: 0.78rem; |
| font-weight: 600; |
| cursor: pointer; |
| transition: var(--transition); |
| } |
| .logout-btn:hover { background: rgba(239, 68, 68, 0.2); color: var(--red); } |
|
|
|
|
| .dash-main { |
| flex: 1; |
| padding: 2.5rem 2rem; |
| max-width: 1100px; |
| width: 100%; |
| margin: 0 auto; |
| } |
|
|
| .dash-welcome { |
| margin-bottom: 2.5rem; |
| } |
|
|
| .dash-welcome-eyebrow { |
| font-size: 0.72rem; |
| font-weight: 700; |
| letter-spacing: 0.12em; |
| text-transform: uppercase; |
| color: var(--indigo-light); |
| margin-bottom: 0.5rem; |
| } |
|
|
| .dash-welcome-title { |
| font-size: clamp(1.6rem, 4vw, 2.4rem); |
| font-weight: 900; |
| letter-spacing: -0.04em; |
| line-height: 1.1; |
| color: var(--text-primary); |
| } |
|
|
| .dash-welcome-title span { |
| background: var(--gradient-brand); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| } |
|
|
| .dash-welcome-sub { |
| margin-top: 0.5rem; |
| font-size: 0.925rem; |
| color: var(--text-secondary); |
| } |
|
|
|
|
| .dash-section { margin-bottom: 2rem; } |
|
|
| .dash-section-header { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| margin-bottom: 1rem; |
| } |
|
|
| .dash-section-title { |
| font-size: 0.8rem; |
| font-weight: 700; |
| letter-spacing: 0.1em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| } |
|
|
|
|
| .quick-action-card { |
| display: flex; |
| align-items: center; |
| gap: 1rem; |
| padding: 1.25rem 1.5rem; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-lg); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| cursor: pointer; |
| transition: var(--transition); |
| box-shadow: var(--shadow-card); |
| } |
| .quick-action-card:hover { |
| border-color: rgba(99, 102, 241, 0.3); |
| background: var(--bg-elevated); |
| box-shadow: var(--shadow-card), var(--shadow-glow); |
| transform: translateY(-1px); |
| } |
|
|
| .quick-action-icon { |
| width: 46px; |
| height: 46px; |
| border-radius: var(--radius-md); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 1.3rem; |
| flex-shrink: 0; |
| } |
| .quick-action-icon.indigo { background: rgba(99,102,241,0.15); } |
| .quick-action-icon.violet { background: rgba(139,92,246,0.15); } |
| .quick-action-icon.cyan { background: rgba(6,182,212,0.15); } |
| .quick-action-icon.green { background: rgba(16,185,129,0.15); } |
|
|
| .quick-action-info { flex: 1; min-width: 0; } |
|
|
| .quick-action-title { |
| font-size: 0.925rem; |
| font-weight: 700; |
| color: var(--text-primary); |
| } |
|
|
| .quick-action-desc { |
| font-size: 0.8rem; |
| color: var(--text-muted); |
| margin-top: 2px; |
| } |
|
|
| .quick-action-badge { |
| padding: 3px 8px; |
| background: var(--bg-active); |
| border: 1px solid rgba(99,102,241,0.2); |
| border-radius: var(--radius-pill); |
| font-size: 0.72rem; |
| font-weight: 700; |
| color: var(--indigo-light); |
| font-family: var(--font-mono); |
| } |
|
|
|
|
| .stats-row { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 1rem; |
| margin-bottom: 2rem; |
| } |
|
|
| .stat-card { |
| padding: 1.25rem; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-lg); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| } |
|
|
| .stat-card-label { |
| font-size: 0.7rem; |
| font-weight: 700; |
| letter-spacing: 0.1em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| margin-bottom: 0.5rem; |
| } |
|
|
| .stat-card-value { |
| font-size: 1.5rem; |
| font-weight: 800; |
| color: var(--text-primary); |
| font-family: var(--font-mono); |
| letter-spacing: -0.02em; |
| } |
|
|
| .stat-card-sub { |
| font-size: 0.72rem; |
| color: var(--text-muted); |
| margin-top: 3px; |
| font-family: var(--font-mono); |
| } |
|
|
|
|
| .fm-window { max-width: 860px; } |
|
|
| .fm-tabs { |
| display: flex; |
| gap: 4px; |
| padding: 0 1.5rem; |
| border-bottom: 1px solid var(--border-subtle); |
| background: rgba(7,12,24,0.3); |
| } |
|
|
| .fm-tab { |
| padding: 0.875rem 1rem; |
| font-size: 0.82rem; |
| font-weight: 600; |
| color: var(--text-muted); |
| background: none; |
| border: none; |
| border-bottom: 2px solid transparent; |
| margin-bottom: -1px; |
| cursor: pointer; |
| transition: var(--transition); |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| } |
| .fm-tab:hover { color: var(--text-secondary); } |
| .fm-tab.active { |
| color: var(--text-primary); |
| border-bottom-color: var(--indigo); |
| } |
|
|
| .fm-tab-count { |
| padding: 2px 6px; |
| background: var(--bg-hover); |
| border-radius: var(--radius-pill); |
| font-size: 0.7rem; |
| font-family: var(--font-mono); |
| } |
| .fm-tab.active .fm-tab-count { |
| background: var(--bg-active); |
| color: var(--indigo-light); |
| } |
|
|
| .fm-toolbar { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 1rem 1.5rem; |
| border-bottom: 1px solid var(--border-subtle); |
| gap: 0.75rem; |
| } |
|
|
| .fm-count { |
| font-size: 0.8rem; |
| color: var(--text-muted); |
| font-family: var(--font-mono); |
| } |
|
|
| .fm-body { |
| padding: 1rem 1.5rem; |
| min-height: 240px; |
| max-height: 420px; |
| overflow-y: auto; |
| } |
|
|
| .fm-empty { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| padding: 3rem; |
| color: var(--text-muted); |
| font-size: 0.875rem; |
| gap: 0.75rem; |
| text-align: center; |
| } |
|
|
| .fm-empty-icon { |
| font-size: 2.5rem; |
| opacity: 0.3; |
| } |
|
|
| .fm-list { display: flex; flex-direction: column; gap: 0.5rem; } |
|
|
| .fm-item { |
| display: flex; |
| align-items: center; |
| gap: 0.875rem; |
| padding: 0.875rem 1rem; |
| background: var(--bg-hover); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-md); |
| transition: var(--transition); |
| } |
| .fm-item:hover { background: rgba(255,255,255,0.05); border-color: var(--border-dim); } |
|
|
| .fm-item-icon { |
| font-size: 1.5rem; |
| flex-shrink: 0; |
| width: 38px; |
| height: 38px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| background: rgba(255,255,255,0.04); |
| border-radius: var(--radius-sm); |
| } |
|
|
| .fm-item-info { flex: 1; min-width: 0; } |
|
|
| .fm-item-name { |
| font-size: 0.9rem; |
| font-weight: 600; |
| color: var(--text-primary); |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| } |
|
|
| .fm-item-meta { |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| margin-top: 2px; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| } |
|
|
| .fm-item-actions { display: flex; gap: 0.375rem; flex-shrink: 0; } |
|
|
|
|
| .create-form { display: flex; flex-direction: column; gap: 1rem; } |
|
|
| .create-label { |
| display: block; |
| font-size: 0.75rem; |
| font-weight: 600; |
| letter-spacing: 0.06em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| margin-bottom: 0.375rem; |
| } |
|
|
| .create-select { |
| width: 100%; |
| background: rgba(7, 12, 24, 0.6); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-md); |
| padding: 0.75rem 1rem; |
| font-size: 0.9rem; |
| color: var(--text-primary); |
| outline: none; |
| cursor: pointer; |
| transition: var(--transition); |
| appearance: none; |
| background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); |
| background-repeat: no-repeat; |
| background-position: right 12px center; |
| padding-right: 36px; |
| } |
| .create-select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); } |
| .create-select option { background: #0f172a; color: var(--text-primary); } |
|
|
|
|
| .account-wrapper { |
| width: 100%; |
| max-width: 860px; |
| } |
|
|
| .account-cover { |
| height: 180px; |
| border-radius: var(--radius-xl) var(--radius-xl) 0 0; |
| overflow: hidden; |
| position: relative; |
| background: linear-gradient(135deg, #1e1b4b, #0f172a, #0c1445); |
| } |
|
|
| .account-cover img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| opacity: 0.6; |
| } |
|
|
| .account-cover-overlay { |
| position: absolute; |
| inset: 0; |
| background: linear-gradient(to bottom, transparent 40%, rgba(7,12,24,0.7)); |
| } |
|
|
| .account-cover-edit { |
| position: absolute; |
| bottom: 12px; |
| right: 12px; |
| padding: 6px 12px; |
| background: rgba(0,0,0,0.6); |
| border: 1px solid rgba(255,255,255,0.15); |
| border-radius: var(--radius-sm); |
| color: var(--text-secondary); |
| font-size: 0.75rem; |
| font-weight: 600; |
| cursor: pointer; |
| backdrop-filter: blur(8px); |
| transition: var(--transition); |
| } |
| .account-cover-edit:hover { background: rgba(0,0,0,0.8); color: var(--text-primary); } |
|
|
| .account-body { |
| background: var(--bg-surface); |
| border: 1px solid var(--border-dim); |
| border-top: none; |
| border-radius: 0 0 var(--radius-xl) var(--radius-xl); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| padding: 0 1.75rem 1.75rem; |
| } |
|
|
| .account-profile-row { |
| display: flex; |
| align-items: flex-end; |
| justify-content: space-between; |
| flex-wrap: wrap; |
| gap: 1rem; |
| margin-bottom: 2rem; |
| } |
|
|
| .account-avatar-wrap { |
| position: relative; |
| margin-top: -52px; |
| } |
|
|
| .account-avatar { |
| width: 96px; |
| height: 96px; |
| border-radius: 20px; |
| border: 4px solid var(--bg-base); |
| background: var(--bg-elevated); |
| object-fit: cover; |
| display: block; |
| } |
|
|
| .account-avatar-fallback { |
| width: 96px; |
| height: 96px; |
| border-radius: 20px; |
| border: 4px solid var(--bg-base); |
| background: var(--gradient-btn); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 2rem; |
| font-weight: 900; |
| color: white; |
| } |
|
|
| .account-avatar-edit { |
| position: absolute; |
| bottom: -6px; |
| right: -6px; |
| width: 28px; |
| height: 28px; |
| background: var(--indigo); |
| border: 2px solid var(--bg-base); |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| cursor: pointer; |
| transition: var(--transition); |
| } |
| .account-avatar-edit:hover { background: var(--violet); } |
|
|
| .account-fields-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); |
| gap: 1rem; |
| } |
|
|
| .account-field { display: flex; flex-direction: column; gap: 0.375rem; } |
|
|
| .account-field-label { |
| font-size: 0.7rem; |
| font-weight: 700; |
| letter-spacing: 0.08em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| } |
|
|
| .account-field-value { |
| width: 100%; |
| background: rgba(7, 12, 24, 0.5); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-md); |
| padding: 0.625rem 0.875rem; |
| font-size: 0.875rem; |
| color: var(--text-primary); |
| font-family: var(--font-ui); |
| outline: none; |
| transition: var(--transition); |
| } |
| .account-field-value:focus { |
| border-color: var(--indigo); |
| box-shadow: 0 0 0 3px rgba(99,102,241,0.1); |
| } |
| .account-field-value:disabled { |
| opacity: 0.55; |
| cursor: default; |
| } |
|
|
| textarea.account-field-value { |
| resize: none; |
| min-height: 80px; |
| line-height: 1.5; |
| } |
|
|
| .account-field-span { grid-column: 1 / -1; } |
|
|
| .account-locked-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| font-size: 0.65rem; |
| font-weight: 700; |
| letter-spacing: 0.08em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| background: rgba(255,255,255,0.04); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-pill); |
| padding: 2px 7px; |
| } |
|
|
|
|
| .exo-loader-screen { |
| position: fixed; |
| inset: 0; |
| background: var(--bg-base); |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| z-index: 99999; |
| gap: 1.5rem; |
| } |
|
|
| .loader-rings { |
| position: relative; |
| width: 80px; |
| height: 80px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
|
|
| .loader-ring { |
| position: absolute; |
| border-radius: 50%; |
| border: 2px solid transparent; |
| } |
|
|
| .loader-ring-1 { |
| width: 80px; height: 80px; |
| border-top-color: var(--indigo); |
| border-bottom-color: rgba(99,102,241,0.2); |
| animation: spin 1.2s linear infinite; |
| } |
|
|
| .loader-ring-2 { |
| width: 56px; height: 56px; |
| border-right-color: var(--violet); |
| border-left-color: rgba(139,92,246,0.2); |
| animation: spin 0.9s linear infinite reverse; |
| } |
|
|
| .loader-ring-3 { |
| width: 32px; height: 32px; |
| border-top-color: var(--cyan); |
| border-bottom-color: rgba(6,182,212,0.2); |
| animation: spin 1.5s linear infinite; |
| } |
|
|
| .loader-dot { |
| width: 6px; |
| height: 6px; |
| border-radius: 50%; |
| background: white; |
| animation: pulse-core 1s alternate infinite; |
| } |
|
|
| .loader-label { |
| font-size: 0.7rem; |
| font-weight: 700; |
| letter-spacing: 0.2em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| } |
|
|
|
|
| @keyframes spin { to { transform: rotate(360deg); } } |
| @keyframes spin-rev { to { transform: rotate(-360deg); } } |
|
|
| @keyframes fadeIn { |
| from { opacity: 0; } |
| to { opacity: 1; } |
| } |
|
|
| @keyframes fadeUp { |
| from { opacity: 0; transform: translateY(16px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| @keyframes slideInRight { |
| from { opacity: 0; transform: translateX(24px); } |
| to { opacity: 1; transform: translateX(0); } |
| } |
|
|
| @keyframes pulse-dot { |
| 0%, 100% { opacity: 1; } |
| 50% { opacity: 0.4; } |
| } |
|
|
| @keyframes pulse-core { |
| from { opacity: 0.6; transform: scale(0.8); } |
| to { opacity: 1; transform: scale(1.2); } |
| } |
|
|
| @keyframes shimmer { |
| 0% { transform: translateX(-100%); } |
| 100% { transform: translateX(200%); } |
| } |
|
|
|
|
| .home-scene { |
| min-height: 100vh; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| padding: 2rem 1.5rem; |
| text-align: center; |
| position: relative; |
| overflow: hidden; |
| } |
|
|
| .home-glow { |
| position: absolute; |
| border-radius: 50%; |
| filter: blur(80px); |
| opacity: 0.35; |
| pointer-events: none; |
| } |
|
|
| .home-glow-1 { |
| width: 600px; height: 600px; |
| background: radial-gradient(circle, rgba(99,102,241,0.5), transparent 70%); |
| top: -200px; left: -200px; |
| animation: floatGlow1 8s ease-in-out infinite; |
| } |
|
|
| .home-glow-2 { |
| width: 500px; height: 500px; |
| background: radial-gradient(circle, rgba(139,92,246,0.4), transparent 70%); |
| bottom: -150px; right: -100px; |
| animation: floatGlow2 10s ease-in-out infinite; |
| } |
|
|
| .home-glow-3 { |
| width: 350px; height: 350px; |
| background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%); |
| top: 30%; right: 15%; |
| animation: floatGlow3 7s ease-in-out infinite; |
| } |
|
|
| @keyframes floatGlow1 { |
| 0%, 100% { transform: translate(0, 0); } |
| 50% { transform: translate(30px, 40px); } |
| } |
| @keyframes floatGlow2 { |
| 0%, 100% { transform: translate(0, 0); } |
| 50% { transform: translate(-20px, -30px); } |
| } |
| @keyframes floatGlow3 { |
| 0%, 100% { transform: translate(0, 0); } |
| 50% { transform: translate(20px, -20px); } |
| } |
|
|
| .home-content { |
| position: relative; |
| z-index: 1; |
| max-width: 560px; |
| width: 100%; |
| animation: fadeUp 0.6s ease both; |
| } |
|
|
| .home-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| padding: 5px 12px; |
| background: rgba(99,102,241,0.1); |
| border: 1px solid rgba(99,102,241,0.25); |
| border-radius: var(--radius-pill); |
| font-size: 0.72rem; |
| font-weight: 700; |
| letter-spacing: 0.08em; |
| text-transform: uppercase; |
| color: var(--indigo-light); |
| margin-bottom: 1.5rem; |
| } |
|
|
| .home-badge-dot { |
| width: 6px; height: 6px; |
| border-radius: 50%; |
| background: var(--indigo-light); |
| animation: pulse-dot 2s infinite; |
| } |
|
|
| .home-title { |
| font-size: clamp(3rem, 10vw, 5.5rem); |
| font-weight: 900; |
| letter-spacing: -0.06em; |
| line-height: 0.9; |
| background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 40%, #c7d2fe 70%, #a5b4fc 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| background-clip: text; |
| margin-bottom: 1rem; |
| } |
|
|
| .home-subtitle { |
| font-size: 1.05rem; |
| color: var(--text-secondary); |
| line-height: 1.65; |
| max-width: 420px; |
| margin: 0 auto 2.5rem; |
| } |
|
|
| .home-cta-group { |
| display: flex; |
| gap: 0.75rem; |
| justify-content: center; |
| flex-wrap: wrap; |
| margin-bottom: 3.5rem; |
| } |
|
|
| .btn-home-primary { |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| padding: 0.875rem 2rem; |
| background: var(--gradient-btn); |
| color: white; |
| border: none; |
| border-radius: var(--radius-pill); |
| font-size: 0.925rem; |
| font-weight: 700; |
| cursor: pointer; |
| transition: var(--transition); |
| box-shadow: 0 8px 30px -6px rgba(99,102,241,0.6); |
| letter-spacing: 0.02em; |
| } |
| .btn-home-primary:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 14px 36px -6px rgba(99,102,241,0.7); |
| filter: brightness(1.08); |
| } |
|
|
| .btn-home-secondary { |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| padding: 0.875rem 2rem; |
| background: var(--bg-surface); |
| color: var(--text-primary); |
| border: 1px solid var(--border-dim); |
| border-radius: var(--radius-pill); |
| font-size: 0.925rem; |
| font-weight: 600; |
| cursor: pointer; |
| transition: var(--transition); |
| backdrop-filter: var(--blur); |
| } |
| .btn-home-secondary:hover { |
| background: var(--bg-elevated); |
| border-color: rgba(99,102,241,0.3); |
| transform: translateY(-1px); |
| } |
|
|
| .home-features { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 0.75rem; |
| width: 100%; |
| } |
|
|
| .home-feature-item { |
| padding: 0.875rem; |
| background: var(--bg-surface); |
| border: 1px solid var(--border-subtle); |
| border-radius: var(--radius-md); |
| backdrop-filter: var(--blur); |
| -webkit-backdrop-filter: var(--blur); |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| gap: 0.375rem; |
| text-align: center; |
| } |
|
|
| .home-feature-icon { |
| font-size: 1.4rem; |
| margin-bottom: 2px; |
| } |
|
|
| .home-feature-label { |
| font-size: 0.75rem; |
| font-weight: 600; |
| color: var(--text-secondary); |
| } |
|
|
| .home-version { |
| position: fixed; |
| bottom: 1.25rem; |
| left: 50%; |
| transform: translateX(-50%); |
| font-size: 0.7rem; |
| letter-spacing: 0.15em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| opacity: 0.5; |
| font-family: var(--font-mono); |
| } |
|
|
|
|
| @media (max-width: 768px) { |
| .dash-header-stats { display: none; } |
| .dash-main { padding: 1.5rem 1rem; } |
| .dash-welcome-title { font-size: 1.8rem; } |
| .stats-row { grid-template-columns: repeat(2, 1fr); } |
|
|
| .auth-card-inner { padding: 1.75rem 1.5rem; } |
| .auth-footer-links { padding: 1rem 1.5rem 1.5rem; } |
|
|
| .fm-window { border-radius: var(--radius-lg) !important; } |
|
|
| .account-fields-grid { grid-template-columns: 1fr; } |
|
|
| .home-features { grid-template-columns: repeat(2, 1fr); } |
|
|
| .alert-stack { max-width: calc(100vw - 2.5rem); } |
|
|
| .modal-backdrop { align-items: flex-end; padding: 0; } |
| .modal-box { border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important; } |
| .modal-body { max-height: 60vh; } |
| } |
|
|
| @media (max-width: 480px) { |
| .stats-row { grid-template-columns: 1fr 1fr; } |
| .home-features { grid-template-columns: repeat(2, 1fr); } |
| } |
|
|
|
|
| .loader-screen { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| height: 100vh; |
| gap: 12px; |
| font-size: 0.875rem; |
| font-weight: 600; |
| } |
|
|
| .custom-scrollbar::-webkit-scrollbar { width: 4px; } |
| .custom-scrollbar::-webkit-scrollbar-track { background: transparent; } |
| .custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.15); border-radius: 4px; } |
|
|
|
|
| #nprogress .bar { |
| background: var(--indigo) !important; |
| height: 2px !important; |
| } |
|
|