/* Slider Container Styles */
.slider-container {
	padding: 0 10px;
	margin-bottom: 20px;
}

/* noUiSlider Base Styles */
.noUi-target {
	background: #f5f5f5;
	border: none;
	box-shadow: none;
	border-radius: 4px;
	height: 8px;
}

/* Slider Handles */
.noUi-handle {
	border: none;
	background: #007bff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
	cursor: pointer;
	width: 20px !important;
	height: 20px !important;
	right: -10px !important;
}

.noUi-handle:before,
.noUi-handle:after {
	display: none;
}

/* Slider Connect (the colored part between handles) */
.noUi-connect {
	background: #007bff;
}

/* Slider Values Display */
.slider-values {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
}

.min-value,
.max-value {
	font-weight: 500;
}

/* Hover States */
.noUi-handle:hover {
	background: #0056b3;
}

/* Active States */
.noUi-handle:active {
	background: #004085;
}

/* Focus States */
.noUi-handle:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Disabled State */
.noUi-state-disabled .noUi-handle {
	background: #ccc;
	box-shadow: none;
}

/* Touch Device Optimizations */
@media (hover: none) {
	.noUi-handle {
		width: 24px !important;
		height: 24px !important;
		right: -12px !important;
	}
}
