.bp-action-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.bp-link-button {
  display: inline-block;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #516a80;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  min-width: 160px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.bp-link-button:hover {
  background-color: #fb8b01;
  color: #fff;
}
.bp-link-button.active {
  background-color: #516a80;
  color: #fff;
}
