/* 1) Konteyneri en sağa yasla */
#mwcb-container {
  position: fixed;
  bottom: 15px;
  left: 0;           /* sağ kenara sıfır */
  margin-left: 15px; /* ek boşluk istersen */
  z-index: 9999;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

/* 2) Göründüğünde tıklanabilir olsun */
#mwcb-container.mwcb-show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* 6) Buton içi ikonu boyutlandır */
.mwcb-button img {
  width: 28px;
  height: 28px;
}

/* 3) Buton yuvarlak */
.mwcb-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 4) Hover’da sol tarafa çıkacak etiket */
/*    - order: -1 ile önce geliyor, margin-right ile butona yapışık duruyor. */
/*    - translateX(-10px) ile başlangıçta biraz solda gizli. */
.mwcb-label {
  margin-left: 12px;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  font-size: 14px;
}

/* 5) Hover’da etiket ortaya çıksın */
#mwcb-container:hover .mwcb-label {
  opacity: 1;
  transform: translateX(0);
}
