/* Custom scrollbar for textareas */
textarea::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
textarea::-webkit-scrollbar-track {
	background: #f1f5f9; 
	border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb {
	background: #cbd5e1; 
	border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb:hover {
	background: #94a3b8; 
}
.caret-down {
	border-style: solid;
	border-color: #f1f5f9;
	border-color: inherit;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}