/**
 * Global Text Selection Fix - OPTIMIZED
 * Lightweight fix for text selection and scroll issues
 */

/* CRITICAL: Remove scroll-padding-top that causes auto-scroll */
html {
    scroll-padding: 0 !important;
}

/* Enable text selection on body and text elements only */
body {
    user-select: auto;
}

/* Text elements - allow selection */
p, h1, h2, h3, h4, h5, h6, span, div, li, section, article, footer {
    user-select: text !important;
}

/* Buttons - non-selectable */
button, .btn, input[type="button"], input[type="submit"], 
.slick-prev, .slick-next, .slick-dots {
    user-select: none !important;
}
    
/* Carousel content - selectable */
.slick-slide {
    user-select: text !important;
}

.comboswap-front__row--vgroup[data-cs-vg="2"] .comboswap-front__card-image {
  max-width: 88px !important;
}

.comboswap-front__row--vgroup[data-cs-vg="2"] .comboswap-front__card-image img {
  width: 100% !important;
  height: auto !important;
}
