.ac-comparison-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.ac-comparison-img-static,
.ac-comparison-img-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ac-comparison-img-static {
    width: 100%;
}

.ac-comparison-img-dynamic {
    border-right: 1px solid transparent;
}

.ac-comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #A8923E;
    width: 2px;
    margin-left: -1px;
    cursor: ew-resize;
    z-index: 10;
}

.ac-comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #A8923E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.ac-comparison-handle-arrows {
    display: flex;
    color: #fff;
}
.ac-comparison-handle-arrows svg {
    width: 16px;
    height: 16px;
}

.ac-comparison-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    z-index: 5;
    pointer-events: none;
}

.ac-label-before {
    left: 20px;
}

.ac-label-after {
    right: 20px;
}