.biodiv-image-slider-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.biodiv-image-slider {
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin-bottom: 30px;
    width: 100%;
}

.biodiv-image-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
    align-items: stretch;
    will-change: transform;
}

.biodiv-image-slider-item {
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.biodiv-image-slider-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.biodiv-image-slider-controls-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.biodiv-image-slider-controls {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
}

.biodiv-image-slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.biodiv-image-slider-arrow:hover,
.biodiv-image-slider-arrow:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.biodiv-image-slider-arrow:active {
    background: rgba(255, 255, 255, 0.15);
}

.biodiv-image-slider-arrow.disabled,
.biodiv-image-slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.biodiv-image-slider-prev {
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.biodiv-image-slider-next {
    border-radius: 0 25px 25px 0;
}

.biodiv-image-slider-arrow i {
    color: #fff;
    font-size: 18px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .biodiv-image-slider {
        margin-bottom: 25px;
    }

    .biodiv-image-slider-controls {
        margin-top: 15px;
    }

    .biodiv-image-slider-arrow {
        width: 45px;
        height: 45px;
    }

    .biodiv-image-slider-arrow i {
        font-size: 16px;
    }

    .biodiv-image-slider-prev {
        border-radius: 22.5px 0 0 22.5px;
    }

    .biodiv-image-slider-next {
        border-radius: 0 22.5px 22.5px 0;
    }
}

@media (max-width: 767px) {
    .biodiv-image-slider-controls-wrapper {
        margin-top: 20px;
    }

    .biodiv-image-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .biodiv-image-slider-arrow i {
        font-size: 14px;
    }

    .biodiv-image-slider-prev {
        border-radius: 20px 0 0 20px;
    }

    .biodiv-image-slider-next {
        border-radius: 0 20px 20px 0;
    }
}

@media (max-width: 576px) {
    .biodiv-image-slider-track {
        gap: 15px;
    }

    .biodiv-image-slider-controls-wrapper {
        margin-top: 15px;
    }

    .biodiv-image-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .biodiv-image-slider-arrow i {
        font-size: 13px;
    }

    .biodiv-image-slider-prev {
        border-radius: 18px 0 0 18px;
    }

    .biodiv-image-slider-next {
        border-radius: 0 18px 18px 0;
    }
}

@media (max-width: 400px) {
    .biodiv-image-slider-arrow {
        width: 34px;
        height: 34px;
    }

    .biodiv-image-slider-arrow i {
        font-size: 12px;
    }

    .biodiv-image-slider-prev {
        border-radius: 17px 0 0 17px;
    }

    .biodiv-image-slider-next {
        border-radius: 0 17px 17px 0;
    }
}

