/* Responsive layout gebaseerd op Zurb Foundation (ca. 2018)
 * Oorspronkelijke bron: Foundation framework (ZURB)
 * Eigen uitbreidingen: unFrame(), scrollTopBtn, etc.
 */

/* basic buttons */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.buttons .active {
  background-color: #E6EFC2;
  border-color: #C6D880;
  color: #529214;
}

.buttons button.active {
  background-color: #E6EFC2;
  border-color: #C6D880;
  color: #529214;
}

.buttons button,
.buttons a {
  background-color: inherit;
  border: 1px solid white;
  font-size: inherit;
  font-weight: bold;
  color: #555;
  padding: 5px 10px;
  cursor: pointer;
  text-decoration: none;
  line-height: 130%;
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.buttons button:hover,
.buttons a:hover {
  background-color: #f0f0f0;
  border-color: #11BF35;
}

.buttons button:active,
.buttons a:active {
  background-color: #cdf7cd;
  border-color: #555;
  color: #000;
}

.link {
  color: #666;
  cursor: pointer;
  font-weight: bold;
}

.link:hover {
  color: #000;
  text-decoration: none;
}

/* WEBINST */
.webinst {
  padding: 0 0px 1px;
  font: bold 12px Verdana, sans-serif;
  width: 400px;
}

.webinst li {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid lightgray;
  text-align: left;

}

.webinst li {
  display: block;
  padding: 0.25em 0.5em 0.25em 0.75em;
  border-left: 1em solid #cdf7cd;
  text-decoration: none;
}

button.webinst,
.buttons a.webinst {
  color: #529214;
}

.webinst a.webinst:hover,
button.webinst:hover {
  background-color: #E6EFC2;
  border: 1px solid #C6D880;
  color: #529214;
}

.buttons a.webinst:active {
  background-color: #529214;
  border: 1px solid #529214;
  color: #fff;
}

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  /* Verberg standaard */
  z-index: 1000;
}