/* ปรับแต่ง Scrollbar สำหรับกล่อง Live Search */
#liveSearchResults::-webkit-scrollbar,
#liveSearchTopResults::-webkit-scrollbar {
    width: 6px; 
}

#liveSearchResults::-webkit-scrollbar-track,
#liveSearchTopResults::-webkit-scrollbar-track {
    background: #18181c; 
    border-radius: 10px;
}

#liveSearchResults::-webkit-scrollbar-thumb,
#liveSearchTopResults::-webkit-scrollbar-thumb {
    background: #33333b; 
    border-radius: 10px;
}

#liveSearchResults::-webkit-scrollbar-thumb:hover,
#liveSearchTopResults::-webkit-scrollbar-thumb:hover {
    background: #4a4a55; 
}

/* สำหรับ Firefox */
#liveSearchResults,
#liveSearchTopResults {
    scrollbar-width: thin;
    scrollbar-color: #33333b #18181c;
}