.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 9999;
}

.floating-btn {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #006400;
  color: white;

  font-size: 24px;
  text-decoration: none;

  box-shadow: 0 8px 24px rgba(0,0,0,0.25);

  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.08);
  background: #4aa764;
  color: white;
}
