#floating-panel {
  position: absolute;
  top: 60px;
  left: 10px;
  z-index: 100;
  display: flex;
  gap: 5px;
}

#floating-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  text-decoration: none;
  font-size: 20px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#floating-panel a:hover {
  background: #fff;
}
