.cmd-palette {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  z-index: 1000;
}
.cmd-palette.hidden { display: none; }
.cmd-palette > input {
  width: 600px;
  max-width: 90%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  font-size: 1rem;
  background: var(--bg);
  color: var(--fg);
}
.cmd-list {
  width: 600px;
  max-width: 90%;
  max-height: 300px;
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  list-style: none;
}
.cmd-list li {
  padding: .6rem .85rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.cmd-list li:last-child { border-bottom: none; }
.cmd-list li:hover, .cmd-list li:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}