/* Scrollbar Styling */
.suggestions-list::-webkit-scrollbar {
	width: 6px;
}
.suggestions-list::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.suggestions-list::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

/* Toast Animation */
@keyframes slideUp {
	from {
		transform: translate(-50%, 100%);
		opacity: 0;
	}
	to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}
.toast-enter {
	animation: slideUp 0.3s ease-out forwards;
}
