/* Universal back link styles */
.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #6c4eff;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  /* ensure the back-link sits above page chrome and micro-site headers */
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s;
}

.back-link:hover {
  background: #5a3fd1;
}