.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background-color: #25D366;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-buttons a.map-btn {
  background-color: #D62828;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons img {
  width: 28px;
  height: 28px;
}