/* Alleen tekstlinks aanpassen, NIET in knoppen */
a:not(.btn) {
    color: #e3027f !important;
    text-decoration: none; /* Optioneel: verwijdert onderstreping */
}

/* Hover-effect voor tekstlinks */
a:not(.btn):hover {
    color: #c0026f !important;
    text-decoration: underline; /* Optioneel: onderstreping bij hover */
}

/* Zorg dat alle kolommen standaard geen marges hebben */
.row, .col, .col-12, .col-md-6 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* Optioneel: Alleen marges verwijderen in specifieke secties */
.custom-no-margin .row, 
.custom-no-margin .col {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}