/* فقاعة دردشة مخصصة لهوية EVET */

.woot-widget-bubble {
  position: fixed !important;
  right: 20px !important;
  bottom: 90px !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 10px !important; /* حواف ناعمة بدل الدائري */
  background: #4b8b7c !important; /* أخضر زمردي */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
}

/* تأثير عند المرور */
.woot-widget-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* أيقونة الدردشة */
.woot-widget-bubble svg {
  width: 26px !important;
  height: 26px !important;
  fill: #d5b464 !important; /* ذهبي راقٍ */
}