/* Helper to show placeholder text in a contenteditable div */
#editor:empty:before {
    content: "Paste your full LinkedIn post here...";
    color: #9CA3AF; 
    pointer-events: none;
    font-style: italic;
}

/* Custom scrollbar for webkit browsers */
#editor::-webkit-scrollbar {
    width: 8px;
}
#editor::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
#editor::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
#editor::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}