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