.addtoany-minimal-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  gap: 6px;

  /* Skrito na začetku */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.addtoany-minimal-fixed.visible {
  opacity: 1;
  pointer-events: auto;
}


.share-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.share-button svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.share-button:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.share-button.facebook  { background-color: #3b5998; }
.share-button.twitter   { background-color: #000000; }
.share-button.pinterest { background-color: #e60023; }
.share-button.whatsapp  { background-color: #25D366; }
.share-button.email     { background-color: #7f7f7f; }
