/* ========================================
   TARGETED FIX FOR GREEN LINE BUG
   Only addresses specific identified issues
   ======================================== */

/* 1. Fix for green line in header top section (confirmed source) */
.header-top-section .header-top-wrapper ul li:not(:last-child) {
    border-right: none !important;
}

/* 2. Fix for potential green line from scrollbar (if custom styled) */
/* This ensures the native scrollbar is used or it's hidden cleanly */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
}

/* 3. Ensure no stray borders on main containers without affecting layout */
body::before,
body::after,
html::before,
html::after {
    display: none !important;
}