/* --- Floating Chat Icon & Social Icons --- */
.chat-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 99999; /*ensures it stays on top of everything */
}

.chat-icon {
  cursor: pointer;
}

.chat-icon iframe {
  width: 180px;
  height: 180px;
  pointer-events: auto;
}

/* --- Social Icons --- */
.chat-social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
}

.chat-social-icons a {
  font-size: 30px;
  color: #25d366; /* WhatsApp green */
  transition: transform 0.3s ease, color 0.3s ease;
}

.chat-social-icons a:last-child {
  color: #e4405f; /* Instagram pink */
}

.chat-social-icons a:hover {
  transform: scale(1.2);
  color: #dfa667; /* your theme accent */
}

/* Ensure chat modal also appears above dashboard */
.chat-modal {
  z-index: 100000;
}
/* Floating Social Icons (Always Visible on Screen) */
.floating-social-icons {
  position: fixed;
  bottom: 100px; /* adjust to appear above chatbot */
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999; /* ensures it's above all content */
}

.floating-social-icons a {
  width: 50px;
  height: 50px;
  background: #25d366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-social-icons a:nth-child(2) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
