/* Keep minimal custom CSS for things Tailwind can't handle */
:root {
    --primary: #3B82F6;
    --primary-light: #60A5FA;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 3px;
}

.code-block pre {
    font-family: 'Fira Code', monospace;
    line-height: 1.7;
}