.donor-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.donor-modal.show {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.donor-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.donor-modal.show .donor-modal-content {
  transform: scale(1);
}

.donor-modal-header {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 10000;
}

.donor-modal-close,
.donor-modal-next,
.donor-modal-zoom {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  font-weight: normal;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 8px;
  transition: color 0.3s ease;
}

.donor-modal-close:hover,
.donor-modal-next:hover,
.donor-modal-zoom:hover {
  color: rgba(255, 255, 255, 1);
}

.donor-modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.donor-modal-body img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.donor-modal-body img.zoomed {
  transform: scale(2);
  cursor: move;
  user-select: none;
}
