.line-fab {
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: 60px;
  height: 60px;
  background-color: #06C755;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.line-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  background-color: #05A848;
}

.line-fab svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 767px) {
  .line-fab {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }

  .line-fab svg {
    width: 28px;
    height: 28px;
  }
}
