/**
 * Banner when URL/session theme preview differs from site default.
 * FILE_PATH: public/assets/css/theme_preview_banner.css
 */
.theme-preview-banner {
  position: relative;
  z-index: 40;
  background: color-mix(in srgb, var(--accent, #c6f36d) 18%, var(--panel, #fff));
  color: var(--ink, #12222b);
  border-bottom: 1px solid var(--line, rgba(18, 34, 43, 0.12));
}
.theme-preview-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.theme-preview-banner-text {
  margin: 0;
  flex: 1 1 16rem;
  line-height: 1.45;
  font-size: 0.95rem;
}
.theme-preview-banner-text code {
  font-size: 0.88em;
}
.theme-preview-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
@media (max-width: 640px) {
  .theme-preview-banner-actions {
    width: 100%;
  }
  .theme-preview-banner-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
