/* BodyScroPosi - Body scroll position styling */
/* Ensures smooth scrolling behavior for scroll containers */

.body-scro-cont{scroll-behavior:smooth}
.body-scro-cont.no-smooth{scroll-behavior:auto}

/* Enhanced scrollbar styling for scroll position containers */
.body-scro-cont{scrollbar-width:none;-ms-overflow-style:none} 
.body-scro-cont::-webkit-scrollbar{display:none}

/* Scroll indicator for position awareness */
.body-scro-indi{position:fixed;right:1rem;top:50%;transform:translateY(-50%);width:4px;height:100px;background:var(--bg-thir);border-radius:2px;opacity:0;transition:opacity 0.3s;pointer-events:none}
.body-scro-indi.show{opacity:0.5}
.body-scro-indi::after{content:'';position:absolute;top:0;left:0;width:100%;background:var(--bran-firs);border-radius:inherit;transition:height 0.2s}