/* ══════════════════════════════════════════════════ SentiMeter — style.css Professional Dual-Theme Design System ══════════════════════════════════════════════════ */ /* ── Google Font ── */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); /* ── Reset ── */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 14px; } /* ══════════════════════════════════════════════════ THEME TOKENS — DARK (default) ══════════════════════════════════════════════════ */ :root { /* Surfaces */ --bg: #09090b; --bg-raised: #0f1015; --bg-card: #14151b; --bg-card2: #1a1c25; --bg-input: #1a1c25; /* Borders */ --border: rgba(255, 255, 255, 0.08); --border-s: rgba(255, 255, 255, 0.04); --border-focus: rgba(108, 143, 255, 0.5); /* Text */ --tx1: #f1f3f9; --tx2: #92a0b8; --tx3: #4a5568; --tx-inv: #09090b; /* Accent */ --acc: #6c8fff; --acc-h: #567af5; --acc-d: rgba(108, 143, 255, 0.1); --acc-d2: rgba(108, 143, 255, 0.18); /* Sentiment */ --pos: #34d399; --pos-d: rgba(52, 211, 153, 0.1); --neg: #f87171; --neg-d: rgba(248, 113, 113, 0.1); --neu: #fbbf24; --neu-d: rgba(251, 191, 36, 0.1); /* Extra palette */ --pur: #a78bfa; --pur-d: rgba(167, 139, 250, 0.1); --cya: #38bdf8; --cya-d: rgba(56, 189, 248, 0.1); --pin: #f472b6; --pin-d: rgba(244, 114, 182, 0.1); --ora: #fb923c; --ora-d: rgba(251, 146, 60, 0.1); /* Sidebar */ --sidebar-w: 232px; --sidebar-bg: #0c0d13; --sidebar-border: rgba(255, 255, 255, 0.06); --nav-active-bg: rgba(108, 143, 255, 0.12); --nav-active-tx: #6c8fff; --nav-hover-bg: rgba(255, 255, 255, 0.04); /* Topbar */ --topbar-bg: rgba(9, 9, 11, 0.82); /* Shadow */ --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4); --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.035); --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03); --shadow-glow: 0 0 0 3px rgba(108, 143, 255, 0.15); /* Radius */ --r1: 6px; --r2: 10px; --r3: 14px; --r4: 20px; /* Font */ --font: 'Inter', system-ui, -apple-system, sans-serif; /* Transitions */ --t-fast: 120ms ease; --t-normal: 200ms ease; --t-slow: 350ms ease; /* Scrollbar */ --sb-track: transparent; --sb-thumb: rgba(255, 255, 255, 0.09); --sb-thumb-h: rgba(255, 255, 255, 0.18); } /* ══════════════════════════════════════════════════ THEME TOKENS — LIGHT ══════════════════════════════════════════════════ */ [data-theme="light"] { --bg: #f8f9fc; --bg-raised: #ffffff; --bg-card: #ffffff; --bg-card2: #f1f4fa; --bg-input: #f1f4fa; --border: rgba(0, 0, 0, 0.08); --border-s: rgba(0, 0, 0, 0.05); --border-focus: rgba(79, 116, 255, 0.5); --tx1: #0f1117; --tx2: #4a5568; --tx3: #9aa3b2; --tx-inv: #ffffff; --acc: #4f74ff; --acc-h: #3b5df5; --acc-d: rgba(79, 116, 255, 0.08); --acc-d2: rgba(79, 116, 255, 0.15); --pos: #059669; --pos-d: rgba(5, 150, 105, 0.08); --neg: #dc2626; --neg-d: rgba(220, 38, 38, 0.08); --neu: #d97706; --neu-d: rgba(217, 119, 6, 0.08); --pur: #7c3aed; --pur-d: rgba(124, 58, 237, 0.08); --cya: #0284c7; --cya-d: rgba(2, 132, 199, 0.08); --pin: #db2777; --pin-d: rgba(219, 39, 119, 0.08); --ora: #ea580c; --ora-d: rgba(234, 88, 12, 0.08); --sidebar-w: 232px; --sidebar-bg: #ffffff; --sidebar-border: rgba(0, 0, 0, 0.08); --nav-active-bg: rgba(79, 116, 255, 0.08); --nav-active-tx: #4f74ff; --nav-hover-bg: rgba(0, 0, 0, 0.04); --topbar-bg: rgba(248, 249, 252, 0.88); --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06); --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04); --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05); --shadow-glow: 0 0 0 3px rgba(79, 116, 255, 0.15); --sb-track: transparent; --sb-thumb: rgba(0, 0, 0, 0.09); --sb-thumb-h: rgba(0, 0, 0, 0.18); } /* ══════════════════════════════════════════════════ BASE ══════════════════════════════════════════════════ */ body { font-family: var(--font); background: var(--bg); color: var(--tx1); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; transition: background var(--t-slow), color var(--t-slow); min-height: 100vh; } ::selection { background: var(--acc-d2); color: var(--acc); } a { color: var(--acc); text-decoration: none; } a:hover { color: var(--acc-h); } code { font-size: 11.5px; background: var(--bg-card2); padding: 2px 7px; border-radius: var(--r1); color: var(--acc); font-family: 'JetBrains Mono', 'Fira Code', monospace; border: 1px solid var(--border-s); } /* ── Scrollbar ── */ ::-webkit-scrollbar { width: 5px; height: 5px; } ::-webkit-scrollbar-track { background: var(--sb-track); } ::-webkit-scrollbar-thumb { background: var(--sb-thumb); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--sb-thumb-h); } /* ══════════════════════════════════════════════════ LAYOUT ══════════════════════════════════════════════════ */ .layout { display: flex; min-height: 100vh; } /* ── SIDEBAR ── */ #sidebar { width: var(--sidebar-w); height: 100%; height: 100dvh; background: var(--sidebar-bg); border-right: 1px solid var(--sidebar-border); position: fixed; top: 0; left: 0; bottom: 0; display: flex; flex-direction: column; padding: 0 10px; z-index: 300; transition: background var(--t-slow), border-color var(--t-slow), transform var(--t-slow); } .sidebar-brand { display: flex; align-items: center; height: 56px; padding: 0 16px; gap: 12px; border-bottom: 1px solid var(--sidebar-border); overflow: hidden; flex-shrink: 0; } .brand-mark { width: 30px; height: 30px; background-color: #6c8fff; -webkit-mask: url('../img/logo.svg') no-repeat center; mask: url('../img/logo.svg') no-repeat center; -webkit-mask-size: contain; mask-size: contain; flex-shrink: 0; transition: background-color var(--t-fast); } .nav-item.active .brand-mark { background-color: var(--acc); } .brand-text-wrap { display: flex; flex-direction: column; white-space: nowrap; transition: opacity var(--t-fast); } .brand-name { font-size: 15px; font-weight: 700; letter-spacing: -0.4px; color: var(--tx1); } .brand-sub { font-size: 10px; color: var(--tx3); letter-spacing: 0.6px; text-transform: uppercase; font-weight: 500; margin-top: 1px; line-height: 1; } .sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; padding-top: 4px; overflow-y: auto; overflow-x: hidden; } .nav-section-label { font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.7px; color: var(--tx3); padding: 12px 12px 4px; white-space: nowrap; transition: opacity var(--t-fast); } .nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r2); color: var(--tx2); text-decoration: none; font-size: 13px; font-weight: 500; transition: background var(--t-fast), color var(--t-fast); cursor: pointer; user-select: none; white-space: nowrap; overflow: hidden; } .nav-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; opacity: 0.7; border-radius: 4px; border: 1px solid transparent; text-align: center; font-weight: 700; } .nav-item.active .nav-icon { opacity: 1; color: var(--acc); background: var(--bg-card); border-color: var(--border-s); } .nav-item:hover:not(.locked) { background: var(--nav-hover-bg); color: var(--tx1); } .nav-item.active { background: var(--nav-active-bg); color: var(--nav-active-tx); font-weight: 600; } .nav-item.locked { color: var(--tx3); cursor: not-allowed; opacity: 0.45; } .nav-lock { font-size: 11px; margin-left: auto; opacity: 0.6; } /* ── SIDEBAR TOGGLE BTN ── */ .sidebar-toggle-btn { transition: transform var(--t-normal) !important; } body.sidebar-collapsed .sidebar-toggle-btn { transform: rotate(0deg); } /* ── SIDEBAR OVERLAY ── */ .sidebar-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 250; opacity: 0; visibility: hidden; transition: all var(--t-normal); } body.sidebar-mobile-open .sidebar-overlay { opacity: 1; visibility: visible; } /* ── SIDEBAR COLLAPSED STATE ── */ body.sidebar-collapsed #sidebar { width: 72px; padding: 0 8px; } body.sidebar-collapsed .main { margin-left: 72px; } body.sidebar-collapsed .brand-text-wrap, body.sidebar-collapsed .nav-section-label, body.sidebar-collapsed .nav-label, body.sidebar-collapsed .nav-lock, body.sidebar-collapsed .theme-text, body.sidebar-collapsed .theme-toggle .toggle-track, body.sidebar-collapsed .data-badge .badge-text { opacity: 0; pointer-events: none; display: none; } body.sidebar-collapsed .sidebar-brand { justify-content: center; padding: 0; } body.sidebar-collapsed .nav-item { padding: 10px; justify-content: center; width: 40px; height: 40px; margin: 0 auto 4px; border-radius: 10px; } body.sidebar-collapsed .nav-icon { margin: 0; font-size: 18px; opacity: 0.8; } body.sidebar-collapsed .nav-item.active .nav-icon { background: transparent; border: none; opacity: 1; } body.sidebar-collapsed .theme-toggle { justify-content: center; padding: 0; width: 40px; height: 40px; margin: 0 auto; border-radius: 10px; border: 1px solid var(--border-s); } body.sidebar-collapsed .theme-toggle .nav-icon { opacity: 0.8; font-size: 18px; } body.sidebar-collapsed .data-badge { padding: 0; width: 32px; height: 32px; border-radius: 50%; margin: 12px auto 0; display: flex; align-items: center; justify-content: center; } .badge-icon { display: none; } body.sidebar-collapsed .badge-icon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: inherit; } .sidebar-footer { padding: 12px 0 16px; border-top: 1px solid var(--sidebar-border); display: flex; flex-direction: column; gap: 8px; } /* Theme toggle button */ .theme-toggle { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-radius: var(--r2); cursor: pointer; font-size: 12px; font-weight: 500; color: var(--tx2); background: transparent; border: 1px solid var(--border); font-family: var(--font); width: 100%; transition: all var(--t-fast); } .theme-toggle:hover { color: var(--tx1); border-color: var(--border-focus); background: var(--nav-hover-bg); } .toggle-track { width: 32px; height: 18px; border-radius: 100px; background: var(--bg-card2); border: 1px solid var(--border); position: relative; transition: background var(--t-normal); flex-shrink: 0; } .toggle-track.on { background: var(--acc); border-color: var(--acc); } .toggle-thumb { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: white; top: 2px; left: 2px; transition: transform var(--t-normal); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); } .toggle-track.on .toggle-thumb { transform: translateX(14px); } .data-badge { font-size: 10px; padding: 5px 10px; border-radius: 100px; background: var(--pos-d); color: var(--pos); text-align: center; font-weight: 600; letter-spacing: 0.3px; } .data-badge.no-data { background: var(--bg-card2); color: var(--tx3); } /* ── MAIN ── */ .main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; transition: margin-left var(--t-slow) ease; } /* ── TOPBAR ── */ .topbar { height: 56px; border-bottom: 1px solid var(--border-s); display: flex; align-items: center; padding: 0 28px; gap: 14px; position: sticky; top: 0; background: var(--topbar-bg); backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5); z-index: 100; transition: background var(--t-slow), border-color var(--t-slow); } .topbar-title { font-size: 14px; font-weight: 600; color: var(--tx1); flex: 1; letter-spacing: -0.2px; } .topbar-sub { font-size: 12px; color: var(--tx3); font-weight: 400; } /* ── PAGE BODY ── */ .page-body { padding: 28px 32px 48px; } /* ══════════════════════════════════════════════════ BUTTONS ══════════════════════════════════════════════════ */ .btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: var(--r2); border: none; font-size: 13px; font-weight: 600; font-family: var(--font); cursor: pointer; transition: all var(--t-fast); white-space: nowrap; line-height: 1; -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; user-select: none !important; } .btn::selection, .btn *::selection { background: transparent !important; color: inherit !important; } .btn:active { transform: scale(0.98); } .btn-primary { background: var(--acc); color: #fff !important; box-shadow: 0 1px 3px rgba(108, 143, 255, 0.4); } .btn-primary:active, .btn-primary:focus { color: #fff !important; } .btn-primary:hover { background: var(--acc-h); box-shadow: 0 3px 12px rgba(108, 143, 255, 0.35); transform: translateY(-1px); } .btn-outline { background: transparent; border: 1px solid var(--border); color: var(--tx2); } .btn-outline:hover { border-color: var(--acc); color: var(--acc); background: var(--acc-d); } .btn-ghost { background: transparent; border: 1px solid transparent; color: var(--tx3); } .btn-ghost:hover { color: var(--tx1); background: var(--nav-hover-bg); } .btn-sm { padding: 6px 13px; font-size: 12px; border-radius: var(--r1); } .btn-xs { padding: 4px 10px; font-size: 11px; border-radius: var(--r1); } /* ══════════════════════════════════════════════════ CARD ══════════════════════════════════════════════════ */ .card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r3); box-shadow: var(--shadow-md); transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow); overflow: hidden; /* Prevent content leakage */ } .card-body { padding: 20px 22px; } .card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; } .card-title { font-size: 13px; font-weight: 600; color: var(--tx1); letter-spacing: -0.1px; } .card-badge { font-size: 10px; padding: 3px 9px; border-radius: 100px; background: var(--bg-card2); color: var(--tx3); font-weight: 500; border: 1px solid var(--border-s); white-space: nowrap; } /* ══════════════════════════════════════════════════ KPI GRID ══════════════════════════════════════════════════ */ .kpi-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; margin-bottom: 20px; } .kpi { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r3); padding: 18px 18px 16px; position: relative; overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-slow); } .kpi::after { content: ''; position: absolute; inset: 0; border-radius: var(--r3); opacity: 0; transition: opacity var(--t-fast); box-shadow: var(--shadow-glow); pointer-events: none; } .kpi:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } .kpi:hover::after { opacity: 1; } /* Accent lines dihilangkan atas permintaan pengguna */ .kpi-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.65px; color: var(--tx3); margin-bottom: 10px; } .kpi-value { font-size: 28px; font-weight: 800; letter-spacing: -1px; line-height: 1; color: var(--tx1); } .kpi-sub { font-size: 11px; color: var(--tx3); margin-top: 5px; } .kpi-delta { font-size: 11.5px; font-weight: 600; margin-top: 5px; } .kpi-delta.up { color: var(--pos); } .kpi-delta.down { color: var(--neg); } .kpi-delta.mid { color: var(--neu); } /* ══════════════════════════════════════════════════ SECTION HEADER ══════════════════════════════════════════════════ */ .sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; } .sec-title { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; color: var(--tx1); } .sec-sub { font-size: 12px; color: var(--tx3); margin-top: 3px; font-weight: 400; } .actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; } /* ── Divider ── */ .divider { border: none; border-top: 1px solid var(--border-s); margin: 22px 0; } /* ══════════════════════════════════════════════════ BADGES ══════════════════════════════════════════════════ */ .badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; white-space: nowrap; letter-spacing: 0.2px; } .badge-pos { background: var(--pos-d); color: var(--pos); } .badge-neg { background: var(--neg-d); color: var(--neg); } .badge-neu { background: var(--neu-d); color: var(--neu); } .badge-acc { background: var(--acc-d); color: var(--acc); } /* ══════════════════════════════════════════════════ CHART GRID ══════════════════════════════════════════════════ */ .chart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; } .chart-grid > * { min-width: 0; } .chart-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; } .chart-full { grid-column: 1 / -1; } .chart-wrap { position: relative; height: 260px; } .chart-wrap-sm { position: relative; height: 200px; } .chart-wrap-lg { position: relative; height: 320px; } .chart-wrap-xl { position: relative; height: 380px; } /* ── Legend ── */ .legend-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 12px; } .legend-item { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--tx2); } .legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; } /* ══════════════════════════════════════════════════ UPLOAD PAGE ══════════════════════════════════════════════════ */ .upload-page-body { display: flex !important; flex-direction: column; justify-content: center; align-items: center; min-height: calc(100vh - 56px); /* subtract topbar */ padding-top: 20px !important; padding-bottom: 40px !important; } .upload-hero { width: 100%; max-width: 520px; margin: 0 auto; text-align: center; } .upload-headline { margin-bottom: 32px; } .upload-headline h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.8px; color: var(--tx1); margin: 0 0 10px; line-height: 1.2; } .upload-headline p { font-size: 14px; color: var(--tx2); line-height: 1.6; margin: 0; } /* Upload zone */ .upload-zone { border: 1.5px dashed var(--border-focus); border-radius: 20px; background: var(--bg-card); transition: all var(--t-normal); cursor: pointer; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02); } .upload-zone:hover, .upload-zone.drag { border-color: var(--acc); background: var(--nav-hover-bg); box-shadow: 0 8px 32px rgba(108, 143, 255, 0.06); transform: translateY(-2px); } .upload-zone input[type=file] { display: none; } .upload-inner { padding: 56px 24px; display: flex; flex-direction: column; align-items: center; gap: 0; } .upload-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--acc-d); color: var(--acc); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .upload-title { font-size: 17px; font-weight: 700; color: var(--tx1); margin: 0 0 4px 0; } .upload-sub { font-size: 13.5px; color: var(--tx2); margin: 0 0 20px 0; } .btn-upload-trigger { margin-bottom: 24px; } .upload-hint { font-size: 12px; color: var(--tx3); margin: 0; } /* File preview */ .file-preview { margin-top: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r3); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: var(--shadow-md); } .file-info { display: flex; flex-direction: column; gap: 3px; } .file-name { font-size: 14px; font-weight: 600; color: var(--tx1); } .file-meta { font-size: 11px; color: var(--tx3); } .file-actions { display: flex; gap: 8px; } /* Progress */ .progress-wrap { margin-top: 24px; } .progress-header { display: flex; justify-content: space-between; font-size: 12px; color: var(--tx2); margin-bottom: 9px; } .progress-track { height: 5px; border-radius: 100px; background: var(--bg-card2); overflow: hidden; } .progress-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--acc), var(--pur)); transition: width 0.3s ease; } .progress-step { font-size: 11px; color: var(--tx3); margin-top: 8px; min-height: 16px; font-style: italic; } /* ══════════════════════════════════════════════════ DASHBOARD ══════════════════════════════════════════════════ */ .gauge-wrap { display: flex; justify-content: center; margin: 4px 0 0; } .tweet-card { background: var(--bg-card2); border-radius: var(--r2); padding: 12px 14px; margin-bottom: 8px; border-left: 3px solid var(--border); transition: border-color var(--t-fast), transform var(--t-fast); } .tweet-card:hover { transform: translateX(2px); } .tweet-card.pos { border-left-color: var(--pos); } .tweet-card.neg { border-left-color: var(--neg); } .tweet-text { font-size: 12.5px; color: var(--tx2); line-height: 1.5; margin-bottom: 7px; } .tweet-meta { font-size: 10.5px; color: var(--tx3); display: flex; gap: 14px; flex-wrap: wrap; } .leaderboard-row { display: flex; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-s); font-size: 12.5px; } .leaderboard-row:last-child { border-bottom: none; } .lb-rank { color: var(--tx3); width: 22px; font-size: 11px; font-weight: 600; flex-shrink: 0; } .lb-name { color: var(--tx1); font-weight: 500; flex: 1; padding: 0 10px; } .lb-val { color: var(--tx3); font-size: 11.5px; white-space: nowrap; } .insight-list { display: flex; flex-direction: column; gap: 9px; } .insight-item { display: flex; gap: 12px; padding: 11px 14px; background: var(--bg-card2); border-radius: var(--r2); border: 1px solid var(--border-s); align-items: flex-start; transition: border-color var(--t-fast); } .insight-item:hover { border-color: var(--border); } .insight-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; } .insight-text { font-size: 12.5px; color: var(--tx2); line-height: 1.55; } /* ══════════════════════════════════════════════════ TABLE & DATA PAGE OVERHAUL ══════════════════════════════════════════════════ */ /* ── Custom Number Input Wrapper ── */ .cni-wrap { position: relative; display: inline-flex; align-items: center; } .cni-wrap input[type=number] { padding: 8px 32px 8px 12px; border-radius: var(--r2); border: 1px solid var(--border); background: var(--bg-input); color: var(--tx1); font-size: 13px; font-family: var(--font); font-weight: 600; outline: none; transition: all var(--t-fast); height: 38px; -webkit-appearance: none; -moz-appearance: textfield; appearance: textfield; } .cni-wrap input[type=number]:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-d); background: var(--bg-card2); } .cni-wrap input[type=number]::-webkit-inner-spin-button, .cni-wrap input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; appearance: none; margin: 0; } .cni-arrows { position: absolute; right: 6px; display: flex; flex-direction: column; gap: 1px; opacity: 0.4; transition: opacity var(--t-fast); } .cni-wrap:hover .cni-arrows, .cni-wrap:focus-within .cni-arrows { opacity: 1; } .cni-btn { display: flex; align-items: center; justify-content: center; width: 20px; height: 14px; background: transparent; border: none; color: var(--tx3); cursor: pointer; border-radius: 4px; transition: all var(--t-fast); padding: 0; } .cni-btn:hover { background: var(--nav-hover-bg); color: var(--tx1); } .cni-btn:active { background: var(--acc-d); color: var(--acc); } .cni-btn svg { width: 11px; height: 11px; } .tl-filter-bar { display: flex; align-items: center; gap: 16px; padding: 14px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r3); margin-bottom: 24px; flex-wrap: wrap; /* Already wraps, but needs children to behave correctly */ box-shadow: var(--shadow-sm); } .tl-filter-tabs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; } .tl-filter-tabs .tl-tab { white-space: nowrap; } .filter-group { display: flex; align-items: center; gap: 12px; } .filter-label { font-size: 11px; font-weight: 800; color: var(--tx3); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; } /* ── Select / Dropdown (shared) ── */ .tl-filter-bar select, .tl-sort-sel, .page-size-sel { -webkit-appearance: none; appearance: none; padding: 8px 36px 8px 12px; border-radius: var(--r2); border: 1px solid var(--border); background-color: var(--bg-input); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2392a0b8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px 14px; color: var(--tx1); font-size: 12.5px; font-weight: 600; height: 40px; min-width: 140px; transition: all var(--t-fast); cursor: pointer; } .tl-filter-bar select:focus, .tl-sort-sel:focus, .page-size-sel:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-d); outline: none; background-color: var(--bg-card2); } .filter-search-wrap { position: relative; flex: 2; min-width: 280px; } .filter-search-wrap input { width: 100%; padding-left: 42px !important; border-radius: var(--r2); border: 1px solid var(--border); background: var(--bg-input); color: var(--tx1); font-size: 13.5px; height: 40px; transition: all var(--t-fast); } .filter-search-wrap input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-d); background: var(--bg-card2); } .tl-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--tx3); pointer-events: none; opacity: 0.6; } .mini-inputs { display: flex !important; gap: 12px; } .mini-inputs .cni-wrap input { width: 170px; height: 40px; } .btn-mini { padding: 6px 14px; font-size: 11px; height: 36px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; } /* Column Visibility */ .col-visibility-wrap { margin-bottom: 24px; padding: 0 4px; } .col-toggle-label { font-size: 10.5px; color: var(--tx3); margin-bottom: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; } .col-toggle { display: flex; gap: 8px; flex-wrap: wrap; } .col-pill { padding: 5px 14px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-card2); font-size: 11px; font-weight: 600; color: var(--tx3); cursor: pointer; transition: all var(--t-fast); user-select: none; } .col-pill:hover { border-color: var(--border-focus); color: var(--tx2); } .col-pill.on { background: var(--acc-d); border-color: var(--acc-d); color: var(--acc); } /* Table Card Area */ .table-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r3); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 32px; } .table-wrap { overflow-x: auto; } .data-table { width: 100%; border-collapse: collapse; } .data-table thead tr { background: var(--bg-card2); } .data-table th { padding: 14px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--tx3); text-align: left; white-space: nowrap; user-select: none; border-bottom: 1px solid var(--border); cursor: pointer; transition: all var(--t-fast); } .data-table th:hover { color: var(--tx1); background: rgba(108, 143, 255, 0.05); } .data-table th.active-sort { color: var(--acc); background: var(--acc-d); } .data-table th.sort-asc::after { content: ' ↑'; color: var(--acc); } .data-table th.sort-desc::after { content: ' ↓'; color: var(--acc); } .data-table td { padding: 12px 16px; font-size: 12.5px; color: var(--tx2); border-bottom: 1px solid var(--border-s); vertical-align: middle; } .data-table tbody tr:hover { background: rgba(108, 143, 255, 0.02); } .data-table tbody tr:last-child td { border-bottom: none; } .td-no { color: var(--tx3); font-weight: 600; width: 40px; font-variant-numeric: tabular-nums; } .td-trunc { max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .td-trunc-sm { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* Conf bar */ .conf-row { display: flex; align-items: center; gap: 7px; } .conf-num { font-size: 11.5px; min-width: 40px; font-variant-numeric: tabular-nums; } .conf-track { width: 56px; height: 4px; border-radius: 100px; background: var(--bg-card2); overflow: hidden; } .conf-fill { height: 100%; border-radius: 100px; transition: width 0.4s ease; } .conf-pos { background: var(--pos); } .conf-neg { background: var(--neg); } .conf-neu { background: var(--neu); } /* Pagination */ .pagination, .tl-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; /* Slightly more gap */ margin-top: 24px; flex-wrap: wrap; } .tl-pagination-stack { display: flex; flex-direction: column; align-items: center; margin-top: 40px; gap: 20px; } .pg-btn { display: inline-flex; justify-content: center; align-items: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 10px; /* More modern rounding */ border: 1px solid transparent; background: transparent; color: var(--tx2); font-size: 14px; font-family: var(--font); font-weight: 600; cursor: pointer; transition: all var(--t-fast); user-select: none; } .pg-btn:hover:not(:disabled):not(.dots) { background: var(--bg-card); border-color: var(--border); color: var(--tx1); box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .pg-btn.active { background: var(--acc); border-color: var(--acc); color: #fff; box-shadow: 0 8px 20px rgba(108, 143, 255, 0.35); /* More premium shadow */ transform: translateY(-1px); } .pg-btn:disabled, .pg-btn.dots { opacity: 0.3; cursor: default; background: transparent; border-color: transparent; } .tl-pagination-info { font-size: 13px; color: var(--tx3); font-weight: 500; letter-spacing: -0.01em; } .tl-page-size-row { display: flex; align-items: center; gap: 12px; margin-top: 4px; } .tl-page-size-label { font-size: 12.5px; color: var(--tx3); font-weight: 500; } .tl-page-size-sel { width: 80px; } .table-info, .tl-info { text-align: center; font-size: 12px; color: var(--tx3); margin-top: 14px; } /* ══════════════════════════════════════════════════ EMPTY STATES ══════════════════════════════════════════════════ */ .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 20px; text-align: center; border-radius: var(--r2); background: var(--bg-card2); border: 1px dashed var(--border); min-height: 120px; margin: 10px 0; } .empty-state svg { width: 32px; height: 32px; color: var(--tx3); margin-bottom: 12px; opacity: 0.6; } .empty-state-title { font-size: 14px; font-weight: 600; color: var(--tx2); margin-bottom: 4px; } .empty-state-desc { font-size: 12px; color: var(--tx3); } /* ══════════════════════════════════════════════════ CLEANING LAB ══════════════════════════════════════════════════ */ .pipeline-step { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-s); } .pipeline-step:last-child { border-bottom: none; } .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--acc-d); color: var(--acc); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--acc-d2); } .step-info { flex: 1; } .step-label { font-size: 13px; font-weight: 600; color: var(--tx1); margin-bottom: 2px; } .step-desc { font-size: 11.5px; color: var(--tx3); } .step-toggle { width: 36px; height: 20px; border-radius: 100px; background: var(--bg-card2); border: 1px solid var(--border); position: relative; cursor: pointer; transition: background var(--t-normal), border-color var(--t-normal); flex-shrink: 0; } .step-toggle.on { background: var(--acc); border-color: var(--acc); } .step-toggle::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: white; top: 2px; left: 2px; transition: transform var(--t-normal); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25); } .step-toggle.on::after { transform: translateX(16px); } .demo-area { margin-bottom: 16px; } .demo-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.55px; font-weight: 600; color: var(--tx3); margin-bottom: 8px; } .demo-textarea { width: 100%; background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--r2); color: var(--tx1); font-family: var(--font); font-size: 13px; padding: 12px 14px; outline: none; resize: vertical; min-height: 80px; transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-slow); } .demo-textarea:focus { border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-d); } .step-pipeline { display: flex; flex-direction: column; gap: 5px; } .step-line { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; padding: 8px 12px; border-radius: var(--r1); background: var(--bg-card2); border: 1px solid var(--border-s); transition: background var(--t-fast); } .step-line-num { color: var(--tx3); width: 18px; flex-shrink: 0; font-variant-numeric: tabular-nums; } .step-line-name { color: var(--acc); width: 150px; flex-shrink: 0; font-weight: 500; } .step-line-text { color: var(--tx2); flex: 1; word-break: break-word; } .step-line.changed { background: var(--acc-d); border-color: var(--acc-d2); } .step-diff { color: var(--tx3); font-size: 10.5px; margin-left: auto; white-space: nowrap; padding-left: 10px; align-self: flex-start; /* Keep at top if row gets tall */ } .stat-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; background: var(--bg-card2); border: 1px solid var(--border); font-size: 12px; color: var(--tx2); } .stat-pill strong { color: var(--tx1); font-weight: 700; } /* ══════════════════════════════════════════════════ MISC ══════════════════════════════════════════════════ */ .empty-state { padding: 64px 20px; text-align: center; color: var(--tx3); } .empty-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--tx2); } .empty-desc { font-size: 13px; } /* ── Animations ── */ @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } } .kpi { animation: fadeUp 0.35s ease both; } .kpi:nth-child(1) { animation-delay: .04s } .kpi:nth-child(2) { animation-delay: .07s } .kpi:nth-child(3) { animation-delay: .10s } .kpi:nth-child(4) { animation-delay: .13s } .kpi:nth-child(5) { animation-delay: .16s } .kpi:nth-child(6) { animation-delay: .19s } .kpi:nth-child(7) { animation-delay: .22s } .kpi:nth-child(8) { animation-delay: .25s } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .card { animation: fadeIn 0.3s ease both; } /* ── Transition for theme switch ── */ body, .card, .kpi, #sidebar, .topbar, .filter-bar select, .filter-bar input, .data-table th, .data-table td, .pg-btn, .badge, .btn, .nav-item, .tweet-card, .leaderboard-row, .insight-item, .step-line, .upload-zone, .theme-toggle { transition-property: background, color, border-color, box-shadow; transition-duration: var(--t-slow); transition-timing-function: ease; } /* ══════════════════════════════════════════════════ RESPONSIVE ══════════════════════════════════════════════════ */ @media (max-width: 1400px) { .kpi-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 1100px) { .chart-grid-3 { grid-template-columns: 1fr 1fr; } } @media (max-width: 860px) { #sidebar { transform: translateX(-100%); box-shadow: none; transition: transform var(--t-slow) cubic-bezier(0.16, 1, 0.3, 1); } body.sidebar-mobile-open #sidebar { transform: translateX(0); box-shadow: 20px 0 60px rgba(0, 0, 0, 0.3); } .main { margin-left: 0; } /* Desktop toggle button hide on mobile */ .sidebar-toggle-btn { display: none !important; } .topbar { padding: 0 16px; gap: 8px; } .mobile-menu-btn { display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--tx2); padding: 8px; cursor: pointer; border-radius: var(--r1); margin-right: 4px; } .mobile-menu-btn:hover { background: var(--nav-hover-bg); color: var(--tx1); } .chart-grid, .chart-grid-3 { grid-template-columns: minmax(0, 1fr); gap: 16px; width: 100%; } .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .page-body { padding: 16px 12px 32px; } .card-body { padding: 16px; } .expand-content { grid-template-columns: 1fr; } .filter-bar, .tl-filter-bar { gap: 8px; flex-wrap: wrap; /* allow wrapping on small screens */ } /* Specific fix for Tweet List filters overflow */ .tl-filter-bar { padding: 12px 14px; gap: 12px; } .tl-filter-tabs { width: 100%; /* Force tabs to own row if needed, or wrap inside */ justify-content: flex-start; } .tl-search-wrap { width: 100%; min-width: 100%; flex: none; margin-bottom: 4px; } .tl-sort-wrap { width: 100%; flex: none; } .tl-sort-sel { width: 100%; } .data-page-filters { display: flex; flex-direction: column; align-items: stretch; gap: 12px; } .data-page-filters .filter-group { width: 100%; max-width: none; justify-content: space-between; } .data-page-filters .filter-group select { flex: 1; /* Make select box take remaining space neatly */ max-width: 65%; } .data-page-filters .filter-search-wrap, .data-page-filters .mini-inputs { width: 100%; min-width: 100%; max-width: none; } .mini-inputs { display: grid !important; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; } .mini-inputs .cni-wrap { width: 100%; } .mini-inputs .cni-wrap input { width: 100% !important; /* Force override for mobile */ } /* Reset button full width */ #btnReset { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 4px; height: 40px; } .table-card { border-radius: var(--r2); overflow: hidden; } /* Table Horizontal Scrolling Support */ .table-wrap, .analytics-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; margin-bottom: 0; } .data-table th, .data-table td, .analytics-table th, .analytics-table td { white-space: nowrap; /* Prevent ugly wrapping inside tables */ } .topbar-title { font-size: 13px; } /* ── Cleaning Lab Specific Mobile Overrides ── */ .step-line { flex-wrap: wrap; /* allow text and status to wrap */ gap: 6px; padding: 10px 12px; } .step-line-name { width: 100%; /* Force step name to take its own line */ font-size: 13px; } .step-line-text { width: 100%; margin-left: 0; } .step-diff { margin-left: 0; /* Keep diff next to text or wrapped */ padding-left: 0; } .topbar-sub { display: none; } /* ── Upload Page Mobile Refinements ── */ .upload-headline { margin-bottom: 24px; text-align: center; } .upload-headline h1 { font-size: 24px; margin-bottom: 8px; } .upload-headline p { font-size: 13px; line-height: 1.6; padding: 0 4px; } .upload-inner { padding: 32px 16px; } .upload-title { font-size: 15px; } .upload-sub { font-size: 12.5px; margin-bottom: 16px; } .file-preview { flex-direction: column; padding: 20px; gap: 20px; align-items: stretch; text-align: center; } .file-info { align-items: center; gap: 5px; } .file-name { font-size: 13.5px; } .file-actions { flex-direction: column; gap: 10px; width: 100%; } .file-actions .btn { width: 100%; justify-content: center; } .progress-wrap { margin-top: 32px; } /* ── Dashboard Mobile Refinements ── */ .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; } .sec-head .actions { width: 100%; } .sec-head .btn { width: 100%; justify-content: center; } .tweet-card { padding: 10px 12px; } .tweet-text { font-size: 12px; margin-bottom: 5px; } .insight-item { padding: 10px 12px; gap: 10px; } .insight-text { font-size: 12px; } .gauge-wrap { margin-bottom: 0; } .leaderboard-row { font-size: 11.5px; padding: 8px 0; } .lb-name { padding: 0 6px; } /* ── Analytics Mobile Refinements ── */ .analytics-table { font-size: 11.5px; } .analytics-table th, .analytics-table td { padding: 8px 10px; } .at-hashtag { padding: 1px 6px; font-size: 10.5px; } .word-tag-cloud { min-height: auto; gap: 4px; padding: 4px 0; } .card-badge { font-size: 9px; padding: 1px 6px; } .chart-wrap-sm { height: 180px; } } @media (max-width: 480px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } .kpi { padding: 14px 12px 12px; } .kpi-label { font-size: 9.5px; margin-bottom: 6px; } .kpi-value { font-size: 20px; } .hero-title { font-size: 28px; } .btn { padding: 8px 14px; font-size: 12.5px; } /* Fix for Analytics Table Long Topics */ .at-topic-text { max-width: 130px; /* Prevent text from crashing into columns */ } .tl-page-size-row { width: 100%; justify-content: center; margin-top: 12px; } .tl-pagination-stack { flex-direction: column; align-items: center; gap: 12px; } } /* Hide mobile controls on desktop */ @media (min-width: 861px) { .mobile-menu-btn { display: none !important; } } /* ══════════════════════════════════════════════════ CUSTOM SELECT / DROPDOWN COMPONENT ══════════════════════════════════════════════════ */ /* Wrapper replaces the native