/* CUSTOMER_ALPHA_FEEDBACK_COLLECTOR_V51 */
.customer-alpha-feedback-v51 {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.customer-alpha-feedback-v51 h2 {
  margin: 0 0 8px;
}

.customer-alpha-feedback-v51 p {
  color: #475569;
}

.customer-alpha-feedback-v51 .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.customer-alpha-feedback-v51 label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #334155;
}

.customer-alpha-feedback-v51 input,
.customer-alpha-feedback-v51 select,
.customer-alpha-feedback-v51 textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: #0f172a;
}

.customer-alpha-feedback-v51 textarea {
  min-height: 96px;
  resize: vertical;
}

.customer-alpha-feedback-v51 .wide {
  grid-column: 1 / -1;
}

.customer-alpha-feedback-v51 button {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #4f46e5;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.customer-alpha-feedback-v51 .status {
  margin-top: 12px;
  min-height: 24px;
  color: #334155;
  font-weight: 700;
}

.customer-alpha-feedback-v51 .status[data-status="ok"] {
  color: #166534;
}

.customer-alpha-feedback-v51 .status[data-status="error"] {
  color: #991b1b;
}

@media (max-width: 740px) {
  .customer-alpha-feedback-v51 .grid {
    grid-template-columns: 1fr;
  }
}
