html, body {
    margin: 0;
    padding: 0;
}

.server-banner {
    height: 150px;
}

.non-decorated-link {
    text-decoration: none;
}

.non-decorated-link:hover {
    text-decoration: none;
}

.non-decorated-link-dark {
    text-decoration: none;
}

.non-decorated-link-dark:hover {
    text-decoration: none;
}

.bg-black {
    background-color: #000;
}

.bg-img-cover {
    background-origin: border-box;
    background-size: cover;
    background-position: center;
}

.card-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* of wit, afhankelijk van je overlay */
    opacity: 0.6; /* transparantie van overlay */
    z-index: 0;
}

.card-body.bg-img-cover:hover .card-content-overlay {
    opacity: 0.2; /* dimmer bij hover */
}

.card-body.bg-img-cover > *:not(.card-content-overlay) {
    position: relative;
    z-index: 1;
}

.bg-gradient-image {
  background-size: cover;        /* Schaal om de hele modal te vullen */
  background-position: center;   /* Centreert de afbeelding */
  background-repeat: no-repeat;  /* Geen herhaling */
}
