.meister-whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.meister-whatsapp-button {
  background-color: #93635d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
/* border: 3px solid #93635d;*/
}

.meister-whatsapp-button i {
    font-family: FontAwesome;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.meister-whatsapp-button:hover {
  transform: scale(1.1);
}

.meister-whatsapp-button i {
  font-size: 32px;
  color: #e0d6c9;
  line-height: 1;
}

/* For accessibility - visually hidden text for screen readers */
.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Tooltip styling */
.meister-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 70px;
  bottom: 15px;
  background: #333;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.meister-whatsapp-container:hover .meister-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .meister-whatsapp-container {
    bottom: 15px;
    right: 15px;
  }
  .meister-tooltip {
    display: none; /* Tooltip auf Handy ausblenden */
  }
}
