.share-btn {
  position: fixed;
  bottom: 60px; /* dvignjen nad spodnji temni del */
  right: 20px;
  z-index: 1000;
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.share-btn i {
  color: #ffffff;
  font-size: 32px;
}

.share-btn:hover {
  transform: scale(1.1);
  background-color: #0056b3;
}
