.pswp__custom-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px !important;
}

.pswp__button--share,
.pswp__button--download {
  background-color: rgba(0, 0, 0, 1) !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  float: right;
  height: 44px;
  margin: 0;
  opacity: 0.75;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: 0;
  transition: opacity 0.2s;
  width: 44px;
}

.pswp__button--share:hover,
.pswp__button--download:hover {
  opacity: 1;
}

.pswp__button--share {
  background-image: url(../images/share.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.pswp__button--download {
  background-image: url(../images/download.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

/* Fallback pro případy, kdy nejsou ikony k dispozici */
.pswp__button--share:not([style*="background-image"])::before {
  content: "↗";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
}

.pswp__button--download:not([style*="background-image"])::before {
  content: "↓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
}