.slider-submit-container {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-submit {
    width: 100%;
    height: 50px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, rgba(138, 43, 226, 0.3) 0%, rgba(138, 43, 226, 0.1) 0%);
    outline: none;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0;
    padding: 0;
}

.slider-submit::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #6a1bb2);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.5);
    margin-top: 0;
    border: none;
}

.slider-submit::-moz-range-thumb {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #6a1bb2);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.5);
}

.slider-submit::-moz-range-track {
    background: transparent;
    border: none;
    height: 50px;
}

.slider-submit::-webkit-slider-runnable-track {
    background: transparent;
    border: none;
    height: 50px;
}

.slider-submit.completed {
    background: linear-gradient(to right, rgba(138, 43, 226, 0.5) 100%, rgba(138, 43, 226, 0.5) 100%);
}
