/* GIWS ConnectPro Main Styles */
.giws-floating-bar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.giws-floating-bar button, .giws-floating-bar a {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.giws-floating-bar button:hover, .giws-floating-bar a:hover {
  background: #128c7e;
}
@media (max-width: 600px) {
  .giws-floating-bar {
    bottom: 15px;
    right: 10px;
    gap: 8px;
  }
  .giws-floating-bar button, .giws-floating-bar a {
    font-size: 16px;
    padding: 10px 14px;
  }
} 