/* Image Upscaler Comparison Slider Styles */
.img-compare-container { 
    position: relative; 
    overflow: hidden; 
    border-radius: 0.75rem; 
    user-select: none; 
    touch-action: pan-y; 
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}
.before-img, .after-img { 
    display: block; 
    width: 100%; 
    height: auto; 
    max-height: 520px; 
    object-fit: contain; 
    background: transparent; 
}
.after-img-wrapper { 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 50%; 
    overflow: hidden; 
    border-right: 2px solid #8b5cf6; 
    background: transparent; 
}
.after-img-wrapper .after-img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: auto; 
    max-width: none; 
}
.img-slider-handle { 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: 50%; 
    width: 36px; 
    margin-left: -18px; 
    cursor: ew-resize; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 20; 
}
.img-slider-thumb { 
    width: 34px; 
    height: 34px; 
    border-radius: 50%; 
    background: #8b5cf6; 
    border: 3px solid #ffffff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #ffffff; 
    transition: transform 0.15s ease; 
}
