#footerPreview {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

#footerPreview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

#footerPreview .remove-footer-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media print {
  #footerPreview .remove-footer-btn {
    display: none;
  }
}

