.single-input-search-bar {
	width: 100%;
}

textarea {
	font-family: inherit;
}

/* Range slider styling */
input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: #e5e7eb;
	outline: none;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgb(59, 130, 246);
	cursor: pointer;
	transition: background 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
	background: rgb(37, 99, 235);
}

input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgb(59, 130, 246);
	cursor: pointer;
	border: none;
	transition: background 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
	background: rgb(37, 99, 235);
}
