/* noUiSlider Custom Styling — ClaudiaD Theme */
.noUi-target {
    border: none;
    border-radius: 4px;
    background: var(--theme-border-color, #e0e0e0);
    height: 6px;
    margin: 0.75rem 0.5rem;
    box-shadow: none;
}

.noUi-connect {
    background: var(--theme-palette-color-1, #7a5c8e);
    border-radius: 4px;
}

.noUi-handle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid var(--theme-palette-color-1, #7a5c8e) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important;
    cursor: grab;
    top: -8px !important;
    right: -10px !important;
}

.noUi-handle:active {
    cursor: grabbing;
    border-color: var(--theme-palette-color-2, #5a3c6e) !important;
}

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

.noUi-tooltip {
    display: none;
}

/* Hover-Tooltip via CSS */
.cdf-range-slider:hover .noUi-tooltip {
    display: block;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: #333;
    color: #fff;
    border: none;
}

/* Horizontal vs Vertical */
.cdf-layout-horizontal .cdf-filter-group {
    display: inline-block;
    vertical-align: top;
    width: auto;
    min-width: 200px;
    padding-right: 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--theme-border-color, #e0e0e0);
}