/* Copyright 2025 Renofy Ltd. All rights reserved. */
/* Preview banner styling for example/preview pages */

.preview-banner {
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: var(--z-index-header);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.preview-banner a {
  color: white;
  text-decoration: underline;
  margin-left: 0.5rem;
}

@media print {
  .preview-banner {
    display: none;
  }
}
