/* 高亮笔记 lists - 法本, 千江月, 大藏经: a click on the passage opens its note
   under it. Each page tunes the accent with --hl-accent. */
[data-hl-quote] {
  cursor: pointer;
}

[data-hl-quote][aria-expanded="true"] {
  text-decoration: underline;
  text-decoration-color: var(--hl-accent, #be7123);
  text-underline-offset: 4px;
}

[data-hl-quote]:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--hl-accent, #be7123);
  outline-offset: 2px;
}

.hl-edit {
  flex: 1 1 100%;
  margin: 8px 0 0;
}

.hl-edit__box {
  background-color: #fffdf7;
  border: 1px solid #e3d6b8;
  border-radius: 8px;
  box-sizing: border-box;
  color: #3c3628;
  display: block;
  font: inherit;
  font-size: 0.92em;
  line-height: 1.7;
  min-height: 6em;
  padding: 8px 12px;
  resize: vertical;
  width: 100%;
}

.hl-edit__box:focus {
  border-color: var(--hl-accent, #be7123);
  box-shadow: 0 0 0 3px rgba(190, 113, 35, 0.15);
  outline: none;
}

.hl-edit__acts {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.hl-edit__save {
  background-color: var(--hl-accent, #be7123);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 0.85em;
  padding: 4px 16px;
}

.hl-edit__save:hover {
  filter: brightness(0.92);
}

.hl-edit__save:disabled {
  cursor: default;
  opacity: 0.6;
}

.hl-edit__cancel {
  background: none;
  border: 1px solid #e3d6b8;
  border-radius: 999px;
  color: #6a6250;
  cursor: pointer;
  font-size: 0.85em;
  padding: 3px 14px;
}

.hl-edit__cancel:hover {
  background-color: #faf5e8;
}

.hl-edit__status {
  color: #9a9483;
  font-size: 0.78em;
}
