/* Shared feedback/support UI styles used by create-feedback and customer dialogs */
.feedback-dialog .e-dialog {
  max-width: 980px;
}

.feedback-header-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e2a3a;
}

.feedback-content-container {
  padding: 20px;
}

.feedback-card {
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
}

.feedback-card-body {
  padding: 16px;
}

.feedback-section {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feedback-section strong {
  font-size: 14px;
  color: #334155;
}

.feedback-textarea {
  width: 100%;
  min-height: 140px;
  margin-top: 10px;
}

.feedback-textbox {
  width: 100%;
  margin-top: 10px;
}

.curis-support-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #f3f8ff, #f8fbff);
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.curis-support-hero.compact {
  padding: 12px 14px;
}

.support-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-photo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.support-brand h2 {
  margin: 0;
  font-size: 22px;
}

.support-brand p {
  margin: 0;
  color: #64748b;
}

.support-actions {
  display: flex;
  gap: 8px;
}

.support-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.support-product-card {
  text-align: left;
  border: 1px solid #dbe4ef;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 12px;
  transition: all .2s ease;
}

.support-product-card .icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-product-card h6 {
  margin: 0;
  font-weight: 700;
}

.support-product-card p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 13px;
}

.support-product-card.selected {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
  background: #f8fbff;
}

.support-selection-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.support-selection-summary .label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.support-selection-summary .system {
  color: #64748b;
  margin-left: auto;
}

@media (max-width: 992px) {
  .support-product-grid {
    grid-template-columns: 1fr;
  }

  .curis-support-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-selection-summary {
    flex-wrap: wrap;
  }

  .support-selection-summary .system {
    margin-left: 0;
  }
}
