<style>
/* === Chat Bubble Styling === */
#tzv-bubble {
  display: flex !important;
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background-color: #a1845f !important;
  cursor: pointer !important;
  z-index: 999999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  animation: pulse 2s ease-in-out infinite; /* Optional subtle pulse */
}

#tzv-bubble:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 15px rgba(161,132,95,0.6), 0 0 10px rgba(255,255,255,0.2);
  background-color: #b28b5f !important;
}

#tzv-bubble img {
  width: 60% !important;
  height: 60% !important;
}


/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 5px 12px rgba(161,132,95,0.4); }
  100% { transform: scale(1); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
}

/* Chat window container */
#tzv-window {
  position: fixed !important;
  bottom: 80px !important;
  right: 20px !important;
  width: 300px !important;
  max-height: 400px !important;
  border: 2px solid #a1845f !important;
  border-radius: 10px !important;
  background: #faf7f3 !important;
  display: none !important;
  flex-direction: column !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
  font-family: sans-serif !important;
  font-size: 14px !important;
  z-index: 1000000 !important;
  overflow: hidden !important;
}

#tzv-messages {
  padding: 8px !important;
  overflow-y: auto !important;
  flex: 1 1 auto !important;
}

#tzv-input {
  width: calc(100% - 10px) !important;
  margin: 5px !important;
  padding: 5px !important;
  border-radius: 5px !important;
  border: 1px solid #ccc !important;
  box-sizing: border-box !important;
}

#tzv-window button {
  width: calc(100% - 10px) !important;
  margin: 5px !important;
  padding: 5px !important;
  border: none !important;
  background: #a1845f !important;
  color: white !important;
  cursor: pointer !important;
  border-radius: 5px !important;
  box-sizing: border-box !important;
}

/* Responsive for small screens */
@media (max-width: 500px) {
  #tzv-bubble {
    width: 40px !important;
    height: 40px !important;
    bottom: 15px !important;
    right: 15px !important;
  }

  #tzv-window {
    width: 250px !important;
    bottom: 70px !important;
    right: 15px !important;
  }
}
</style>
