.wwdb-slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.wwdb-slideshow-track {
    position: relative;
    width: 100%;
}

.wwdb-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.wwdb-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.wwdb-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigatiepijlen */
.wwdb-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 12px 16px;
    z-index: 10;
    transition: background 0.2s;
}

.wwdb-slide-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.wwdb-slide-prev { left: 0; }
.wwdb-slide-next { right: 0; }

/* Puntjes */
.wwdb-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.wwdb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.wwdb-dot.is-active {
    background: #fff;
}
