/* Custom styles that can't be easily achieved with Tailwind */
pre {
    background-color: #1e293b;
    border-radius: 0.375rem;
    padding: 1rem;
    overflow-x: auto;
}

/* Smooth scrolling */
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;
}