/* Pell wrapper */
.pell {
  width: 100%;
  border: 1px solid #555;
  background: #121212;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 6px;
  color: #ccc;
}

/* Toolbar container */
.pell-actionbar {
  display: flex;
  flex-wrap: wrap;
  background-color: #333;
  border-bottom: 1px solid #555;
  padding: 4px;
}
  .pell-button.color-picker-btn {
    position: relative;
  }

  .color-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
/* Toolbar buttons */
.pell-button {
  background-color: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin: 2px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 16px;
  text-shadow: none; 
}

.pell-button:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.pell-button-selected {
  background-color: #3a3a3a;
  color: #fff;
}

/* Content editable area */
.pell-content {
  height: 200px;
  background-color: #1e1e1e;
  color: #eee;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
  outline: none;
  font-size: 15px;
  line-height: 1.6;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}