/* rich-toolbar.css — tampilan toolbar edit Nawasena SC */

.rich-toolbar {
  position: absolute;
  z-index: 9999;
  display: none;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(216, 179, 100, 0.45);
  border-radius: 8px;
  background: #1b1a16;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.rich-toolbar.is-open { display: flex; }

.rich-toolbar button {
  min-width: 30px;
  height: 28px;
  padding: 0 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e8e6e1;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.rich-toolbar button:hover { background: rgba(216, 179, 100, 0.18); }
.rich-toolbar button:focus-visible { outline: 2px solid #d8b364; outline-offset: 1px; }
.rich-toolbar button.is-active { background: #d8b364; color: #1a1405; }
