#scb-sticky-chat-button-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#scb-sticky-chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding: 0;
  border: none;
  cursor: pointer;
}

#scb-sticky-chat-button:hover {
  transform: scale(1.1);
}

#scb-sticky-chat-button svg {
  width: 36px;
  height: 36px;
  display: block;
}

@media (max-width: 768px) {
  #scb-sticky-chat-button-wrapper {
    bottom: 10px;
    right: 10px;
  }

  #scb-sticky-chat-button {
    width: 50px;
    height: 50px;
  }

  #scb-sticky-chat-button svg {
    width: 30px;
    height: 30px;
  }
}