/* Custom styles that can't be achieved with Tailwind */
pre {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.5;
    tab-size: 4;
}

kbd {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

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

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

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

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

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