.campaign-report-page {
  background: #f7f9fc;
  color: #1f2937;
  min-height: 100vh;
  padding: 24px;
}

.campaign-report-container {
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d9e2ef;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.08);
  overflow: hidden;
}

.campaign-report-header {
  padding: 22px 24px;
  border-bottom: 1px solid #d9e2ef;
  background: #f7f9fc;
}

.campaign-report-brand {
  color: #0a1f44;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.campaign-report-title {
  margin: 10px 0 6px;
  color: #0a1f44;
  font-size: 1.45rem;
  font-weight: 700;
}

.campaign-report-subtitle {
  margin: 4px 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.campaign-report-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.campaign-report-content {
  padding: 24px;
}

.campaign-report-section {
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

.campaign-report-section:last-child {
  border-bottom: none;
}

.campaign-report-section-title {
  color: #0a1f44;
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.campaign-report-body {
  margin: 8px 0;
  color: #1f2937;
  line-height: 1.6;
  white-space: pre-wrap;
}

.campaign-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.campaign-report-kv {
  background: #f7f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px;
}

.campaign-report-kv-label {
  color: #0a1f44;
  font-weight: 600;
  font-size: 0.84rem;
}

.campaign-report-kv-value {
  margin-top: 5px;
  color: #1f2937;
}

.campaign-report-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d9e2ef;
}

.campaign-report-table th,
.campaign-report-table td {
  border: 1px solid #d9e2ef;
  padding: 8px;
  text-align: left;
  font-size: 0.9rem;
}

.campaign-report-table th {
  background: #0a1f44;
  color: #ffffff;
}

.campaign-report-table tr:nth-child(even) td {
  background: #f7f9fc;
}

.campaign-report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.campaign-report-tag {
  background: #eaf3ff;
  color: #0a1f44;
  border: 1px solid #c7dbff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.82rem;
}

.campaign-report-alert {
  border: 1px solid #f5c2c7;
  background: #fff1f2;
  color: #8b1d2c;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

@media print {
  .sidebar,
  .campaign-report-actions,
  .statusline,
  .statusbar,
  .app-header-actions {
    display: none !important;
  }
  .campaign-report-page {
    padding: 0;
    background: #fff;
  }
  .campaign-report-container {
    border: none;
    box-shadow: none;
  }
}
