/* Custom styles for GitHub-like design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

/* Smooth transitions for dark mode */
* {
    transition-property: color, background-color, border-color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f6f8fa;
}

.dark ::-webkit-scrollbar-track {
    background: #24292f;
}

::-webkit-scrollbar-thumb {
    background: #d0d7de;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #424a53;
}

::-webkit-scrollbar-thumb:hover {
    background: #afb8c1;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #57606a;
}