/* Algemene stijl voor voorwaardenpagina */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #2e223a, #1b2d1b);
  color: #f0f0f0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.header {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header h1 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

/* Start Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(#3c643c, #503b64);
}

::-webkit-scrollbar-thumb {
  background: #1d1d1d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#2e223a, #1b2d1b);
}
/* End Custom Scrollbar */

#topBtn {
  display: block;
  position: fixed;
  width: 55px;
  bottom: 80px;
  right: 25px;
  font-size: 39px;
  border: 2px;
  border-style: solid;
  border-color: rgba(59, 156, 72, 0.39) transparent;
  outline: none;
  background: linear-gradient(135deg, #48355c, #2b4e2b);
  color: #695a02;
  text-shadow: 2px 2px 5px #408640;
  cursor: pointer;
  padding: 7px;
  border-radius: 5px;
}

#topBtn:hover {
  background: linear-gradient(135deg, #664b83, #478147);
  text-shadow: 2px 2px 5px #232323;
  color: #ddbc00;
  text-shadow: 2px 2px 5px #2b6b2b;
  border: 2px;
  border-style: solid;
  border-color: rgba(92, 228, 110, 0.39) transparent;
}

.updated {
  color: #ccc;
}

section h2 {
  color: #a4ffa4;
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

section ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

section ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #00ffcc;
}

footer {
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #ccc;
}


.back-home {
  text-align: center;
  margin-top: 40px;
}

.home-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #e5c100;
}
