.ba-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
}

.ba-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ba-slider-image-before {
    width: 50%;
    z-index: 2;
}

.ba-slider-image-after {
    width: 100%;
    z-index: 1;
}

.ba-slider-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3;
    pointer-events: none;
}

.ba-slider-label-before {
    left: 20px;
}

.ba-slider-label-after {
    right: 20px;
}

.ba-slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-slider-handle-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #333;
}

.ba-slider-handle-arrows svg {
    width: 16px;
    height: 16px;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}