/* command-palette.css [170] */
.cmdp-overlay {
  position: fixed; inset: 0; z-index: 3200; display: none;
  background: rgba(5,8,14,.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  align-items: flex-start; justify-content: center; padding-top: 12vh;
}
.cmdp-overlay.open { display: flex; }
.cmdp-box {
  width: 92%; max-width: 560px; background: #10151f; border: 1px solid #2a3550;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); overflow: hidden;
}
.cmdp-input {
  width: 100%; box-sizing: border-box; padding: 16px 20px; border: none;
  background: transparent; color: #e8edf5; font-size: 15px; outline: none;
  border-bottom: 1px solid #26304a;
}
.cmdp-list { list-style: none; margin: 0; padding: 6px; max-height: 340px; overflow-y: auto; }
.cmdp-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
}
.cmdp-item.sel, .cmdp-item:hover { background: rgba(91,127,166,.22); }
.cmdp-label { color: #fff; font-size: 13.5px; }
.cmdp-hint { color: #8b95a8; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.cmdp-foot { padding: 9px 16px; border-top: 1px solid #26304a; font-size: 11px; color: #6b7488; }
.cmdp-foot kbd { background: #1a2233; border-radius: 4px; padding: 1px 6px; font-family: monospace; margin: 0 1px; }
html[data-theme="light"] .cmdp-box { background: #fff; border-color: #d5dbe4; }
html[data-theme="light"] .cmdp-input { color: #1c2333; border-bottom-color: #e2e7ee; }
html[data-theme="light"] .cmdp-label { color: #1c2333; }
