/* Bestaand */
body { 
  padding-bottom: 40px; 
}
table td, table th { 
  vertical-align: middle; 
}

/* Nieuw – modern font + algemene styling */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Groene primary knoppen */
.btn-success,
.btn-primary {
  background-color: #008F37;
  border-color: #008F37;
  color: #fff;
  font-weight: 500;
  border-radius: 999px; /* pill style */
}

.btn-success:hover,
.btn-primary:hover {
  background-color: #00732d;
  border-color: #00732d;
}

/* Outline-variant in groen (bv. Terug-knop) */
.btn-outline-success {
  color: #008F37;
  border-color: #008F37;
  border-radius: 999px;
  font-weight: 500;
}

.btn-outline-success:hover {
  background-color: #008F37;
  color: #fff;
}

/* Navbar brand tekst iets moderner */
.navbar-brand {
  font-size: 1.05rem;
}

/* Mobile tweak */
@media (max-width: 576px) {
  .navbar-brand span {
    font-size: 0.98rem;
  }
}
.app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  z-index: 1030;
}
