.eb-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.eb-slider {
    position: relative;
    width: 100%;
}

.eb-slide {
    position: absolute;
    top: 0;
    width: 100%;
    transition: left 0.5s ease, opacity 0.5s ease; /* Optional: for CSS transitions */
}

.eb-slide img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.eb-slider-controls {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
}

.eb-prev, .eb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.eb-prev { left: 2.5%; }
.eb-next { right: 2.5%; }

.eb-dots {
    display: inline-block;
    direction: ltr;
}

.eb-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 4px;
    background: transparent;
    cursor: pointer;
}

.eb-dot.active {
    background: #fff;
    border: 2px black solid;
}

.eb-play-pause {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (max-width: 767px) {
    .eb-prev { left: 1%; }
    .eb-next { right: 1%; }
}

.image-overlay {
    display: none !important;
}