 /* Overlay */
.qc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 16px;
}

/* Modal */
.qc-modal {
  background: #ffffff;
  max-width: 720px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

/* Header */
.qc-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.qc-header h2 {
  margin: 0;
  color: #2e7d32;
  font-size: 22px;
}

.qc-header p {
  margin-top: 6px;
  font-size: 14px;
  color: #555;
}

/* Body */
.qc-body {
  padding: 20px 24px;
  overflow-y: auto;
  font-size: 14px;
  color: #333;
}

.qc-body details {
  margin-top: 12px;
}

.qc-body summary {
  cursor: pointer;
  font-weight: 600;
  color: #ff8f00;
}

.qc-body p {
  margin-top: 8px;
  line-height: 1.6;
}

/* Footer text */
.qc-footer-text {
  margin-top: 16px;
  font-size: 13px;
  color: #555;
}

.qc-footer-text a {
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
}

/* Actions */
.qc-actions {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  text-align: right;
}

#qc-accept-btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

#qc-accept-btn:hover {
  background: #256428;
}