#myTabContent .fade {
    display: none;
}

#myTabContent .fade.active {
    display:block;
}

/* Custom Range Slider Styles */
.range-slider-container {
    padding: 20px 10px;
    text-align: center;
}

.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    margin: 15px 0;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00B8F2;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.custom-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00B8F2;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.slider-current {
    background: #00B8F2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.slider-unit {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
}