    /* changing the scrollbar */
	::-webkit-scrollbar {
		width: 10px;
	  }
	  
	/* Track */
	::-webkit-scrollbar-track {
		background: #f1f1f1;
		/*box-shadow: inset 0 0 5px; /*grey;*/
		border-radius: 10px;
	}
	  
	/* Handle */
	::-webkit-scrollbar-thumb {
		background: oklch(var(--p));
		border-radius: 4px;
	}
	  
	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
		background: oklch(var(--s));
	}