/* Budget Slider Styles */
.budget-slider-container {
    width: 100%;
    padding: 10px 10px 5px 10px;
    margin: 5px 0 0 0;
}

/* Reduce spacing after budget input-group */
.input-group:has(.budget-slider-container) {
    margin-bottom: 0.5rem;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, 
        #00ff9d 0%, 
        #00ffcb 33%, 
        #FF3D00 66%, 
        #ff6b35 100%
    );
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin-bottom: 12px;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 3px solid #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    transition: all 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.8);
}

.budget-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 3px solid #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    transition: all 0.3s ease;
}

.budget-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.8);
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0 5px;
}

.budget-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}

.budget-label.active {
    color: #00ff9d;
    font-weight: bold;
    background: rgba(0, 255, 157, 0.1);
    transform: scale(1.1);
}

.budget-display {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #00ff9d;
    padding: 10px;
    background: rgba(0, 255, 157, 0.05);
    border: 2px solid rgba(0, 255, 157, 0.2);
    border-radius: 8px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
}

.budget-display.budget {
    color: #00ff9d;
    border-color: rgba(0, 255, 157, 0.3);
}

.budget-display.moderate {
    color: #00ffcb;
    border-color: rgba(0, 255, 203, 0.3);
}

.budget-display.premium {
    color: #FF3D00;
    border-color: rgba(255, 61, 0, 0.3);
}

.budget-display.luxury {
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .budget-label {
        font-size: 10px;
        padding: 3px;
    }
    
    .budget-display {
        font-size: 16px;
        padding: 12px;
    }
    
    .budget-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .budget-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
}
