.feedback-widget {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px;
    gap: 24px;
    width: 764px;
    background: rgba(180, 180, 208, 0.16);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    font-family: 'Nunito Sans';
    font-size: 14px;
    font-weight: 700;
    color: #6969A0;
}


.feedback-buttons {
    /* btn/Secondary/light */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;

    width: 79px;
    height: 36px;

    border-radius: 64px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}

.dark-page .feedback-btn {
    color: var(--Gray-Not-White)
}

.feedback-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.feedback-details.hidden {
    display: none;
}


.btn-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #333351;
    border-radius: 64px;
    font-size: 14px;
    font-weight: 500;
    color: #333351;
    cursor: pointer;


}

.dark-page .btn-send {
    color: var(--Gray-Not-White);
    border-color: var(--Gray-Not-White);
}

.tell-more-textarea::placeholder {
    /* text input

   Top label, text field, input, form
   */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px;
    gap: 4px;

    width: 545px;
    height: 57px;


    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;


}

.feedback-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    gap: 24px;
    width: 764px;
    height: auto;
    background: rgba(180, 180, 208, 0.16);
    border: 1px solid rgba(180, 180, 208, 0.32);
    border-radius: 8px;
}

.feedback-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.feedback-tell-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6969A0;
    background: none;
    border: none;
    cursor: pointer;
}

.dark-page .feedback-tell-more {
    color: var(--Gray-Not-White);


}

.feedback-section {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(180, 180, 208, 0.16);
    border-radius: 8px;
    border: 1px solid rgba(180, 180, 208, 0.32);
}


#yesButton,
#noButton{
    color: var(--Gray-Gray-850);
}
.dark-page #yesButton,
.dark-page #noButton{
    color: var(--Gray-Not-White);
}
