/* style.css – alleen aanvullende styles op Bootstrap */

/* Terugknop */
.back-button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.back-button:hover {
  background-color: #0056b3;
}

/* Optioneel: fix voor <pre> debug output */
#raw-json {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.9rem;
  color: #212529;
  border: 1px solid #dee2e6;
}

/* Zorg dat inschrijfknoppen netjes zijn in context */
.inschrijf-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

.inschrijf-button:hover {
  background-color: #218838;
}

/* Primaire achtergrondkleur */
.bg-primary-custom {
  background-color: #003366 !important;
}

/* Primaire tekstkleur */
.text-primary-custom {
  color: #003366 !important;
}

/* Accentkleur voor knoppen of links */
.bg-accent {
  background-color: #0056b3 !important;
  color: #ffffff !important;
}