.qd-report-issue-wrap {
  width: 100%;
}

.qd-report-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.qd-report-toggle:hover {
  color: rgba(17, 24, 39, 0.95);
}

.qd-report-toggle:focus {
  outline: none;
}

.qd-report-toggle-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qd-report-toggle-icon {
  font-size: 12px;
  line-height: 1;
}

.qd-report-form {
  margin-top: 12px;
  padding: 14px 0 0;
  width: 100%;
}

.qd-report-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qd-report-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.qd-report-option input[type="radio"] {
  margin-top: 2px;
  flex: 0 0 auto;
}

.qd-report-message-wrap {
  margin-top: 12px;
}

.qd-report-textarea {
  width: 100%;
  min-height: 84px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
  resize: vertical;
  box-sizing: border-box;
}

.qd-report-textarea:focus {
  outline: none;
  border-color: rgba(1, 121, 146, 0.45);
  box-shadow: 0 0 0 3px rgba(1, 121, 146, 0.10);
}

.qd-report-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.qd-report-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.qd-report-submit:hover {
  opacity: 0.92;
}

.qd-report-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.qd-report-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.qd-report-cancel:hover {
  background: #f9fafb;
  border-color: rgba(17, 24, 39, 0.22);
}

.qd-report-response {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.qd-report-success {
  color: #166534;
}

.qd-report-error {
  color: #b91c1c;
}

@media (max-width: 767px) {
  .qd-report-toggle {
    font-size: 13px;
  }

  .qd-report-option {
    font-size: 13px;
  }

  .qd-report-textarea {
    font-size: 13px;
  }

  .qd-report-submit,
  .qd-report-cancel {
    width: 100%;
  }
}