.feedback-tab {
    position: fixed;
    right: -65px;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    transition: right 0.3s ease;
    z-index: 1030;
    padding: 10px 20px;
    cursor: pointer;
}

.feedback-tab:hover {
    right: -60px;
}

.feedback-form {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    transition: right 0.3s ease;
    z-index: 1040;
    overflow-y: auto;
    background-color: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

.feedback-form.active {
    right: 0;
}

#close-feedback {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-range {
    width: 100%;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

#thankYouMessage {
    display: none;
}

#thankYouMessage.show {
    display: block;
}
