/* Slash command palette — typeahead list inside the modal. The input
   is borderless and filters the list below; the active row is
   highlighted with the same gray as the canvas row hover so the visual
   language matches. Mirrors the rules currently embedded in styles.css
   for the canvas — kept in this separate file during the test-page
   phase so existing pages are unaffected. */
.slash-option {
  cursor: pointer;
  border-bottom: 1px solid #f1f3f5;
}
.slash-option:last-child {
  border-bottom: none;
}
.slash-option.active {
  background-color: #e9ecef;
}
