/* Chat Widget */
.chat-widget {
  /* position: fixed;
  bottom: 30px;
  left: 30px; */
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  padding-left: 5.4rem;
  margin-bottom: 3rem;

}

/* Circular green icon with white symbol */
.chat-icon {
  width: 48px;
  height: 48px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  /* box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4); */
  cursor: pointer;
  transition: transform 0.3s ease;
}



.chat-icon:hover {
  transform: scale(1.05);
}

/* White button with black text */
.chat-button {
  background-color: #ffffff;
  color: #142a36;
  border: none;
  padding: 0px 10px;
  padding-top: 10px;
  padding-bottom: 5px;
  border-radius: 30px;
  font-size: 14px;
  /* font-weight: 600; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Acumin Pro Bold';
}

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
