/*Text Editor CSS Styles*/
.editor-container {
    width: 80%;
    max-width: 800px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toolbar {
    display: flex;
    padding: 10px;
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.toolbar button, .toolbar select, .toolbar input[type="color"] {
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

.toolbar button:hover, .toolbar select:hover, .toolbar input[type="color"]:hover {
    background: #ddd;
}

.editor {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    color: #333;
}
