/* Editor Toolbar Styling */
.editor-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding: 5px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.editor-toolbar button {
    border: none;
    background: #fff;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.editor-toolbar button:hover {
    background: #e0e0e0;
}

/* Editor Content Styling */
.editor-content {
    min-height: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    white-space: pre-wrap;
}

.editor-content:empty:before {
    content: "Start writing your content here...";
    color: #aaa;
    font-style: italic;
}

.editor-content:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}
