/* Floating Action Button (FAB) */
.mnthen-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #ff6f61; /* Vibrant coral color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000; /* Ensure it stays above other content */
}

.mnthen-fab:hover {
  background-color: #ff4a3a; /* Darker shade for hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.mnthen-fab i {
  font-size: 28px;
}

/* Tooltip for the FAB */
.mnthen-fab-tooltip {
  position: absolute;
  right: 70px; /* Position to the left of the button */
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
}

.mnthen-fab:hover .mnthen-fab-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles for Mobile Devices */
@media (max-width: 768px) {
  .mnthen-fab {
    width: 50px; /* Smaller width on mobile */
    height: 50px; /* Smaller height on mobile */
    bottom: 15px; /* Adjust position for better spacing */
    right: 15px;
  }

  .mnthen-fab i {
    font-size: 24px; /* Smaller icon size on mobile */
  }

  /* Hide tooltip on mobile devices */
  .mnthen-fab-tooltip {
    display: none; /* Completely hide the tooltip */
  }
}
