/* Custom Scrollbar for Textarea */
textarea::-webkit-scrollbar {
	width: 8px;
}
textarea::-webkit-scrollbar-track {
	background: #1e293b;
	border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb {
	background: #475569;
	border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb:hover {
	background: #64748b;
}