/* ToolHub - Global Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Selection color */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* Prose links */
.prose a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose a:hover {
    text-decoration-color: #3B82F6;
}
