/* Custom styles for a polished look */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    /* Light gray background */
}

.editor-textarea {
    font-family: 'Roboto Mono', monospace;
    color: #111827;
    /* Dark text color for editor */
    caret-color: #3b82f6;
    /* Blue caret */
    line-height: 1.6;
}

/* Custom scrollbar for a modern feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}