/* Custom Scrollbar for a cleaner look in single-view */ ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #cbd5e1; /* Gray-300 */ border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #94a3b8; /* Gray-400 */ } /* Dark mode scrollbar */ .dark ::-webkit-scrollbar-thumb { background: #374151; /* Gray-700 */ } .dark ::-webkit-scrollbar-thumb:hover { background: #4b5563; /* Gray-600 */ } /* Base styles cleanup */ body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; } /* Remove default focus rings for cleaner UI */ button:focus, [contenteditable]:focus { outline: none; }