.propagatie-uitleg-h2-centered {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #007acc;
}

h1 {
    color: #007acc;
}

h2, h3 {
  margin-top: 50px;
  color: #007acc;
}

.propagatie-uitleg-blok {
  padding: 1em 1.5em;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  border-radius: 0.5em;
  margin-bottom: 2em;
}

.propagatie-uitleg-blok p.propagatie-uitleg-tekst {
  line-height: 1.6;
}

.propagatie-uitleg-tekst br + br {
  line-height: 2;
}

.propagatie-uitleg-tekst {
    font-size: 1.05rem;
    color: #222;
    line-height: 1.6;
}

.propagatie-uitleg-schema {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background-color: #eef6ff;
    border: 2px dashed #007acc;
    border-radius: 10px;
}

.propagatie-uitleg-box {
    background-color: #007acc;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    text-align: center;
}

.propagatie-uitleg-pijl {
    font-size: 2rem;
    color: #007acc;
    user-select: none;
}

.propagatie-uitleg-lijst {
    list-style: disc;
    margin-left: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.propagatie-inhoudsopgave {
    background-color: #e6f0ff;
    border: 2px solid #007acc;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%; /* Volledige breedte van container */
    box-sizing: border-box; /* Zorgt dat padding binnen de breedte valt */
}

.propagatie-inhoudsopgave h3 {
    margin-top: 0;
    color: #003366;
    font-size: 1.4rem;
    border-bottom: 1px solid #007acc;
    padding-bottom: 6px;
}

.propagatie-inhoudsopgave ul {
    list-style-type: disc;
    margin-left: 20px;
}

.propagatie-inhoudsopgave a {
    color: #005bb5;
    text-decoration: none;
}

.inhoudsopgave a:hover {
    text-decoration: underline;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  background-color: #e6f0ff;
  color: #333;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

#scrollTopBtn:hover {
  background-color: #d2e4ff;
}

