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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

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

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

/* Editor styles */
.editor-container {
    transition: all 0.2s ease;
}

.editor-container:focus-within {
    box-shadow: 0 0 0 2px #3b82f6;
}