#headerPreview {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

#headerPreview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Red remove button in top-right corner */
#headerPreview .remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c; /* vivid red */
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 18px;
  cursor: pointer;
  line-height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Hide remove icon when printing */
@media print {
  #headerPreview .remove-btn {
    display: none;
  }
}


