#floating-button {
  position: fixed;
  bottom: 15%;
  left: 0;
  transform: translateY(50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  border-radius: 0 6px 6px 0;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: left 0.5s ease;
}

#floating-button a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

#floating-button .phone-icon {
  flex-shrink: 0;
  fill: white;
}

#toggle-button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  padding: 0 12px;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}

#floating-button.collapsed {
  left: -220px;
}

#floating-button.collapsed #toggle-button {
  transform: rotate(180deg);
}
