
.qdc-chat-actions{
  display:flex;
  gap:10px;
  padding:10px 14px 0 14px;
  justify-content:flex-end;
}
.qdc-action-btn{
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color:#fff;
  padding:8px 12px;
  border-radius:10px;
  font-size:12px;
  cursor:pointer;
  line-height:1;
}
.qdc-action-btn:hover{ filter:brightness(1.08); }
.qdc-action-secondary{
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
}
.qdc-action-btn:disabled{ opacity:.6; cursor:not-allowed; }

.qdc-feedback-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
}
.qdc-feedback-modal{
  width:min(420px, 100%);
  background:#0b1220;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  color:#fff;
}
.qdc-feedback-title{ font-size:16px; font-weight:600; margin-bottom:10px; }
.qdc-stars{ display:flex; gap:6px; margin-bottom:12px; }
.qdc-star{
  font-size:20px;
  background:transparent;
  border:none;
  padding:4px 6px;
  cursor:pointer;
  opacity:.45;
}
.qdc-star.is-on{ opacity:1; }
.qdc-feedback-text{
  width:100%;
  min-height:90px;
  resize:vertical;
  border-radius:12px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color:#fff;
  outline:none;
}
.qdc-feedback-actions{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
}
.qdc-feedback-skip, .qdc-feedback-submit{
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:#fff;
  cursor:pointer;
}
.qdc-feedback-submit:disabled{ opacity:.55; cursor:not-allowed; }
