        /* Width and height of the scrollbar track */
        ::-webkit-scrollbar {
            width: 5px;
            height: 10px;
        }

        /* Background color of the scrollbar track */
        ::-webkit-scrollbar-track {
            background-color: #e2e8f0;
        }

        /* Color of the scrollbar handle */
        ::-webkit-scrollbar-thumb {
            background-color: #15803d;
        }

        /* Color of the scrollbar handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background-color: #16a34a;
        }

        .vti__dropdown-list {
            z-index: 50 !important;
            padding: 0;
            margin: 0;
            text-align: left;
            list-style: none;
            max-height: 200px;
            overflow-y: scroll;
            position: absolute;
            left: -1px;
            background-color: #fff;
            border: 1px solid #ccc;
            width: 390px
        }