body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f4f4f4;
}

.rte-wrapper {
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rte-toolbar {
  border-bottom: 1px solid #ddd;
  padding: 6px;
  background: #fafafa;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.rte-toolbar button,
.rte-toolbar select,
.rte-toolbar input[type="color"] {
  border: none;
  background: none;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 4px;
}

.rte-toolbar button:hover,
.rte-toolbar select:hover {
  background: #eaeaea;
}

.rte-editor {
  min-height: 200px;
  padding: 10px;
  border-radius: 0 0 8px 8px;
  outline: none;
}

textarea.rich-editor {
  display: none;
}

select {
  background: #fff;
  border: 1px solid #ccc;
}
