.feedback-widget {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

.feedback-toggle {
    background-color: #DB9507;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 10px 0 10px 0;
}

.feedback-toggle:hover {
    background-color: #C08006;
}

.feedback-form {
    display: none;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feedback-form.active {
    display: block;
}

.feedback-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

/* Updated: Specific styling for the submit button */
.feedback-form button[onclick="submitFeedback()"] {
    background-color: #DB9507;
    color: #1F3038;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Updated: Hover effect for the submit button */
.feedback-form button[onclick="submitFeedback()"]:hover {
    background-color: #C08006;
}

/* Updated: Removed background color and added specific styling for close button */
.feedback-close-btn {
    float: right;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 5px;
    color: #1F3038; /* Added to match the text color */
}

/* New: Hover effect for close button */
.feedback-close-btn:hover {
    color: #DB9507;
}