nav .ideas-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
nav .ideas-nav:hover {
  color: var(--ink);
}
#ideas-sheet {
  position: fixed;
  inset: auto 16px 16px auto;
  margin: 0;
  width: min(480px, calc(100% - 32px));
  max-height: 85dvh;
  overflow: auto;
  box-sizing: border-box;
  padding: 24px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
}
#ideas-sheet::backdrop {
  background: #000a;
}
#ideas-close {
  float: right;
}
#ideas-content form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#ideas-content textarea {
  min-height: 140px;
  resize: vertical;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  font: inherit;
}
#ideas-content :focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}
.review-idea {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.review-entry {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  margin: 16px 0;
}
@media (max-width: 720px) {
  #ideas-sheet {
    inset: auto 8px 8px;
    width: calc(100% - 16px);
  }
}
