.hotkey-modal {
  animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotkey-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.hotkey-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f5f5f5;
  border-radius: 6px;
}

[data-theme="dark"] .hotkey-item {
  background: #2d2d2d;
}

.hotkey-key {
  margin-right: 1rem;
}

.hotkey-key kbd {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-family: monospace;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .hotkey-key kbd {
  background: #363636;
  border-color: #4a4a4a;
  color: #fff;
}

.hotkey-action {
  font-size: 0.875rem;
  color: #363636;
}

[data-theme="dark"] .hotkey-action {
  color: #fff;
}
