.fab-container {
  z-index: 999999999;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.fab-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.fab-button:hover {
  transform: scale(1.1);
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 70px;
  right: 8%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.fab-options.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-option {
  padding: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.08, 0.67, 0.5, 1), opacity 0.3s ease;
}

.fab-option:hover {
  color: white !important;
}

.fab-options.show .fab-option, .fab-options.show .fab-title {
  transform: scale(1);
  opacity: 1;
}

.fab-options--container {
  text-decoration: none !important;
  transition: transform 0.25s cubic-bezier(0.08, 0.67, 0.5, 1), opacity 0.3s ease;
  right: 0;
  position: absolute;
  display: flex;
  gap: 5px;
}

.fab-options--container:hover {
  transform: translateY(5px);
}

.fab-title {
  margin: auto;
  white-space: nowrap;
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  color: white;
  padding: 0.5rem 0.785rem;
  border-radius: 999px;
  pointer-events: none;
  transition: transform 0.1s cubic-bezier(0.08, 0.67, 0.5, 1), opacity 0.3s ease;
  transform: scale(0);
  opacity: 0;
}