.command-palette-item {
  padding: 12px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.1s;
}

.command-palette-item:hover,
.command-palette-item.active {
  background: #f8f9fa;
  border-left-color: #0d6efd;
}

.command-palette-item .command-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #e7f3ff;
  color: #0d6efd;
  margin-right: 12px;
}

.command-palette-item.command-action .command-icon {
  background: #fff3cd;
  color: #997404;
}

.command-palette-item.command-recent .command-icon {
  background: #d1ecf1;
  color: #0c5460;
}

.command-palette-category {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.command-palette-category:first-child {
  border-top: none;
}

kbd {
  padding: 2px 6px;
  font-size: 0.75rem;
  background: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 3px;
  font-family: monospace;
}
