/* Section container */
.marriage-record {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Headings */
.marriage-record h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.marriage-record h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #4a4a4a;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}

/* Paragraphs */
.marriage-record p {
  margin: 0.5rem 0;
}

/* Lists */
.marriage-record ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.marriage-record li {
  margin-bottom: 0.3rem;
}

/* Table styling */
.register-summary table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.register-summary th,
.register-summary td {
  border: 1px solid #ccc;
  padding: 0.6rem;
  text-align: left;
}

.register-summary th {
  background-color: #eee;
  font-weight: 600;
}

.register-summary td {
  background-color: #fafafa;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .marriage-record {
    padding: 1rem;
  }

  .register-summary table,
  .register-summary th,
  .register-summary td {
    font-size: 0.85rem;
  }
}