/*
 * Amelia 9.5 / Element Plus compatibility.
 * On some Windows/Chrome combinations the native scrollbar of the select wrapper
 * is rendered together with Element Plus' own scrollbar, producing the pair of
 * small arrow/track bars visible beside short employee lists.
 *
 * Hide only the browser-native scrollbar. The element remains scrollable and
 * Element Plus' own .el-scrollbar__bar continues to work when the list is long.
 */
.am-select-popper .el-scrollbar__wrap,
.amelia-v2-booking .el-select-dropdown .el-scrollbar__wrap {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.am-select-popper .el-scrollbar__wrap::-webkit-scrollbar,
.amelia-v2-booking .el-select-dropdown .el-scrollbar__wrap::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}
