/* HTML5 Range Slider Styling for Talent Showcase */

.hmg-ts-container .hmg-ts-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 30%;
    height: 8px;
    border-radius: 20px;
    background: #d1d5db;
    outline: none;
    margin: 20px 0;
    position: relative;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.hmg-ts-container .hmg-ts-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--e-global-color-accent);
    border: none;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hmg-ts-container .hmg-ts-range-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* Firefox */
.hmg-ts-container .hmg-ts-range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--e-global-color-accent);
    border: none;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    -moz-appearance: none;
}

.hmg-ts-container .hmg-ts-range-slider::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #d1d5db;
    border-radius: 20px;
    border: none;
}

.hmg-ts-container .hmg-ts-range-slider::-moz-range-progress {
    background: var(--e-global-color-accent);
    height: 8px;
    border-radius: 20px;
}

/* Internet Explorer */
.hmg-ts-container .hmg-ts-range-slider::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b82f6;
    border: 2px solid #ffffff;
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hmg-ts-container .hmg-ts-range-slider::-ms-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.hmg-ts-container .hmg-ts-range-slider::-ms-fill-lower {
    background: #3b82f6;
    border-radius: 3px;
}

.hmg-ts-container .hmg-ts-range-slider::-ms-fill-upper {
    background: #e5e7eb;
    border-radius: 3px;
}

/* Custom styling for proximity slider */
.hmg-ts-container .hmg-ts-proximity-slider {
    margin: 0;
    padding: 0;
	width: 400px;
}

.hmg-ts-container .hmg-ts-proximity-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.hmg-ts-container .hmg-ts-proximity-value span {
    font-weight: 500;
    color: #374151;
}