/* Styl suwaka */
input[type='range'] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: #ddd; /* Szary pasek tła */
}

/* Styl suwaka (thumb) */
input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	background: #49aba9; /* Kolor kropki suwaka */
	border-radius: 50%;
	cursor: pointer;
}

/* Styl suwaka (thumb) dla Firefox */
input[type='range']::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #49aba9; /* Kolor kropki suwaka */
	border-radius: 50%;
	cursor: pointer;
}

/* Styl suwaka (thumb) dla Edge */
input[type='range']::-ms-thumb {
	width: 20px;
	height: 20px;
	background: #49aba9; /* Kolor kropki suwaka */
	border-radius: 50%;
	cursor: pointer;
}
