.wcb-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: Arial, sans-serif;
}

.wcb-toggle-button {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.wcb-toggle-button img {
  width: 28px;
  height: 28px;
}

.wcb-options {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.wcb-options a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  transition: background-color 0.2s;
}

.wcb-options a:last-child {
  border-bottom: none;
}

.wcb-options a:hover {
  background-color: #f5f5f5;
}
