.df-wrap {
  padding: 2.5rem 0 1rem;
  font-family: 'Public Sans', Arial, sans-serif;
}
.df-wrap--centered .df-card {
  margin-left: auto;
  margin-right: auto;
}
.df-card {
  background: #F7F3EF;
  border-left: 4px solid #007060;
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  max-width: 720px;
}
.df-headline {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: #007060;
  margin: 0 0 10px;
  line-height: 1.35;
}
.df-headline em {
  font-style: italic;
}
.df-body {
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.df-type-label {
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 12px;
  color: #4A4A4A;
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
}
.df-type-row {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.df-type-btn {
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #D0D0D0;
  background: white;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.5;
}
.df-type-btn:hover {
  border-color: #20A090;
  color: #007060;
}
.df-type-btn.active {
  border-color: #007060;
  background: #007060;
  color: white;
}
.df-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #D0D0D0;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 14px;
  color: #4A4A4A;
  background: white;
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
  transition: border-color 0.15s ease;
  outline: none;
}
.df-textarea:focus {
  border-color: #20A090;
}
.df-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.df-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #4A4A4A;
  opacity: 0.6;
  letter-spacing: 0.01em;
}
.df-submit {
  background-color: #20A090 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-family: 'Public Sans', Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease !important;
}
.df-submit:hover {
  background-color: #007060 !important;
  color: #ffffff !important;
}
.df-submit:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}
.df-error {
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 12px;
  color: #E76F51;
  margin-top: 6px;
  display: none;
}
.df-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 14px;
  color: #007060;
  margin-top: 14px;
}
.df-success-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E9C46A;
  flex-shrink: 0;
}
.df-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: df-spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
@keyframes df-spin {
  to { transform: rotate(360deg); }
}
