/* Page wrapper */
.bulletin-page {
  max-width: 1100px;
  margin: 0rem auto;
  padding: 1rem;
}

/* Header area above the PDF card */
.bulletin-header {
  max-width: 980px;
  margin: 0 auto 1.5rem;
}

.bulletin-header p {
  margin: 0;
  color: var(--bulletin-text-sub);
  font-size: 0.95rem;
}

/* Sabbath date chip */
.bulletin-dateTag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e1e1ee;
  background: #fafafe;
  color: #333;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Download button row */
.bulletin-actions {
  margin-top: 0.85rem;
}

.bulletin-btnPrimary {
  background-color: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  border: 1px solid #111;
}

/* Empty message if no bulletin */
.bulletin-emptyMessage {
  max-width: 980px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--bulletin-border);
  background: #fff;
  font-size: 0.95rem;
  color: var(--bulletin-text-sub);
}

/* PDF preview section */
.bulletin-preview {
  max-width: 980px;
  margin: 1.5rem auto 0;
}

/* The actual card that feels like a “photo viewer” */
.bulletin-pdfContainer {
  border-radius: 14px;
  border: 1px solid #eee;
  background: #111;
  padding: 12px 8px 20px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each PDF page canvas */
.pdfPageCanvas {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 8px;
  background: #fff;
  border-radius: 8px;
}

/* “Loading / scroll” hints */
.bulletin-hint {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #ddd;
}

.bulletin-hint-bottom {
  color: #555;
  margin-top: 0.75rem;
}

.bulletin-page h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #800000;
  margin-bottom: 0.3rem;
  margin-top: 0;
}

.bulletin-subtitle {
  text-align: center;
  margin: 0 0 2rem;
  color: #555;
  font-size: 1.05rem;
}

/* Mobile tweaks – let the page scroll naturally */
@media (max-width: 768px) {
  .bulletin-page {
    padding: 2rem 1rem;
  }

  .bulletin-header h1 {
    font-size: 1.8rem;
  }
}

