/* General Wrapper */
.head-wrapper {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto;
    display: block;
}

svg {
    width: 100%;
    height: auto;
}

.blue {
    fill: #f9bc87 !important;
    background: #f9bc87 !important;
}

.red {
    fill: #f9bc87 !important;
}

/* Range Slider Styles */
.range-sldr {
    margin: 20px 0;
    padding: 0 20px;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #d3d3d3;
    outline: none;
    border-radius: 5px;
}

/* Slider Thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #53c4ca;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input[type="range"]:hover::-webkit-slider-thumb {
    background: #41b5b5; /* Darker shade on hover */
}

.range-slider-left-text,
.range-slider-right-text {
    font-weight: bold;
    font-size: 16px;
}

.range-slider-left-text {
    float: left;
}

.range-slider-right-text {
    float: right;
}

/* Buttons */
.graft-btn,
.hair-btn {
    background: #53c4ca;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    width: auto;
    margin-top: 10px;
}

.hair-btn {
    background: #b389bb;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .range-sldr {
        text-align: center;
    }

    .range-slider-left-text,
    .range-slider-right-text {
        float: none;
        display: inline-block;
        margin: 5px;
    }

    .graft-btn,
    .hair-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .mobile_text span {
        font-size: 14px;
    }
}