
/*This CSS is used for Floating Button */
/* Style for the floating button container */
.floating-button-container {
    position: relative;
}

/* Style for the floating button */
.floating-button {
  display: none;
  position: relative;
  bottom: 15px;
  right: -90px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 10%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 11px;
  line-height: 1px;
}

/* Style for the container on mouseover */
.floating-button-container:hover .floating-button {
  display: block;
}