.pf-container {
    font-family: inherit;
    padding: 10px 0;
}
.pf-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.pf-slider-wrapper {
    position: relative;
    height: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.pf-slider-inner {
    position: relative;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
}
.pf-track {
    position: absolute;
    height: 100%;
    background: #333;
    border-radius: 2px;
    z-index: 1;
}
.pf-range {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: none;
    z-index: 2;
    background: transparent;
}
.pf-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    margin-top: 0;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}
.pf-range::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}
.pf-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pf-input-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    background: #fff;
}
.pf-currency {
    color: #666;
    margin-right: 5px;
    font-size: 14px;
}
.pf-num {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
    background: transparent;
    -moz-appearance: textfield;
}
.pf-num::-webkit-outer-spin-button,
.pf-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
