.report-button {
  background-color: #3068a3;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  margin: 4px 3px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  transition: background-color 0.3s;
  text-align: center;
  width: 160px;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  /* Or use 'flex-start' if preferred */
  margin-top: 12px;
  /* consistent width */
}


.report-button:hover {
  background-color: #012750;
  color: white;
}


.report-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.report-row h4 {
  width: 240px;
  margin-right: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.report-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}


.note-summary-inline {
  background: #f0f4ff;
  border-left: 4px solid #4677f5;
  padding: 12px;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.popup-balloon {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 12px;
  z-index: 1000;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-y: auto;
  max-height: 300px;
  max-width: 450px;
  min-width: 320px;
}

.section {
  margin: 24px 0;
}