body {
    font-family: 'Inter', sans-serif;
}

#monaco-editor {
    height: 100%;
    width: 100%;
}

/* Scrollbar personalizado estilo Dark Mode */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0d1117;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #484f58;
}

pre {
    font-family: 'Fira Code', monospace;
    line-height: 1.5;
}