#feedback-plugin-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.feedback-plugin-step {
    display: none;
}

.feedback-plugin-step.active {
    display: block;
}

.rating-bar {
    display: flex;
    gap: 10px;
}

.rating-bar label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.rating-bar input[type="checkbox"] {
    appearance: none;
    width: 40px;
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
}

#feedback-plugin-form .feedback-plugin-step .rating-bar input[type="checkbox"]:checked {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}
.elementor-kit-23909 input:not([type="button"]):not([type="submit"]),
.elementor-kit-23909 textarea,
.elementor-kit-23909 .elementor-field-textual {
    background-color: transparent !important; /* or use 'initial' */
}


.rating-bar input[type="checkbox"]::before {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.next-step{
    padding: 10px;
    background: #8D5301;
    float: right;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.feedback-plugin-step-2-container #feedback-plugin-submit{
    padding: 10px;
    background: #8D5301;
    justify-self: flex-end;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;

}
.feedback-plugin-step-2-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#feedback-plugin-previous {
    justify-self: flex-start;
}
#feedback-plugin-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #999;
}

#feedback-plugin-prev {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}

#feedback-plugin-prev:hover {
    background: #0056b3;
}
.step-buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#specific-feedback {
    height: 100px;
    width: 95%;
    margin-bottom: 10px;
}
/* Add this to your feedback-plugin.css file */
.badge {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.badge.selected {
    background-color: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

/* New styles for close button and options */
#feedback-plugin-close {
    background: none;
    border: none;
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#feedback-plugin-close-options {
    position: absolute;
    top: 40px;
    right: 10px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1001;
}

#feedback-plugin-close-options button {
    display: block;
    width: 100%;
    padding: 5px 10px;
    border: none;
    background: #fff;
    cursor: pointer;
}

#feedback-plugin-close-options button:hover {
    background: #f5f5f5;
}

/* Show options when the container is not hidden */
#feedback-plugin-close-options:not(.hidden) {
    display: block;
}