/* Copyright (c) 2025-2026 Spwig contributors. Licensed under AGPL-3.0. */

.pb-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.pb-text--placeholder {
  background-color: var(--theme-color-background-secondary, #f9fafb);
  border: 2px dashed var(--theme-color-border, #e5e7eb);
  border-radius: var(--theme-radius-lg, 0.75rem);
  padding: var(--theme-space-4, 1rem);
  text-align: center;
  color: var(--theme-color-text-muted, #9ca3af);
  font-style: italic;
}

@media print {
  .pb-text {
    color: black !important;
    background: transparent !important;
  }
  .pb-text--placeholder {
    display: none;
  }
}
