* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #000000;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

header {
  background: #000000;
  color: white;
  padding: 40px;
  text-align: center;
}

header.dark-header {
  background: #000000;
  padding: 30px 40px;
}

header h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

header p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.header-logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.progress-container {
  background: #f5f5f5;
  padding: 20px 40px;
  border-bottom: 2px solid #000000;
}

.progress-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #dc2626;
  border-radius: 0;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-text {
  margin-top: 8px;
  font-size: 0.813rem;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#quiz {
  padding: 40px;
}

.section-header {
  background: #000000;
  padding: 20px;
  margin: 30px -40px 20px -40px;
  border-top: none;
  border-bottom: none;
}

.section-header:first-child {
  margin-top: 0;
}

.section-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  margin: 8px 0 0 0;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.8);
}

.question {
  background: #ffffff;
  border-radius: 0;
  padding: 24px;
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.question:hover {
  border-color: #000000;
}

.question.answered {
  border-color: #000000;
  background: #f5f5f5;
}

.question-text {
  font-size: 0.938rem;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.6;
}

.question-number {
  display: inline-block;
  background: #000000;
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 0;
  margin-right: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.likert-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.likert-option {
  flex: 1;
  min-width: 100px;
}

.likert-option input {
  display: none;
}

.likert-option label {
  display: block;
  padding: 12px 8px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.813rem;
  color: #000000;
  background: white;
  transition: all 0.2s;
}

.likert-option label:hover {
  border-color: #000000;
  background: #f5f5f5;
}

.likert-option input:checked + label {
  background: #000000;
  color: white;
  border-color: #000000;
}

.forced-choice-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.forced-choice-option input {
  display: none;
}

.forced-choice-option label {
  display: block;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.938rem;
  color: #000000;
  background: white;
  transition: all 0.2s;
}

.forced-choice-option label:hover {
  border-color: #000000;
  background: #f5f5f5;
}

.forced-choice-option input:checked + label {
  background: #000000;
  color: white;
  border-color: #000000;
}

.submit-container {
  padding: 30px 40px;
  background: #f5f5f5;
  border-top: 2px solid #000000;
  text-align: center;
}

#submit {
  background: #000000;
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Open Sans', sans-serif;
}

#submit:hover {
  background: #333333;
  transform: translateY(-2px);
}

#submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

#results {
  display: none;
  padding: 40px;
}

#results.visible {
  display: block;
}

.results-header {
  text-align: center;
  margin-bottom: 40px;
}

.results-header h2 {
  font-size: 2rem;
  color: #000000;
  margin: 0 0 10px 0;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

.results-header p {
  color: #666666;
  margin: 0;
}

.results-section {
  margin-bottom: 40px;
}

.results-section h3 {
  font-size: 1.25rem;
  color: #000000;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #000000;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

.charts-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.chart-section {
  background: #ffffff;
  border-radius: 0;
  padding: 24px;
  border: 2px solid #e0e0e0;
}

.chart-section h3 {
  font-size: 1.25rem;
  color: #000000;
  margin: 0 0 5px 0;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-desc {
  font-size: 0.813rem;
  color: #666666;
  margin: 0 0 20px 0;
}

.chart-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.chart-definitions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.definition-item {
  margin-bottom: 16px;
}

.definition-item:last-child {
  margin-bottom: 0;
}

.definition-name {
  font-weight: 600;
  color: #334155;
  font-size: 0.938rem;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.definition-score {
  font-weight: 700;
  color: #667eea;
  font-size: 0.938rem;
}

.definition-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.values-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.value-badge.inactive {
  background: #e2e8f0;
  color: #94a3b8;
}

.value-badge .label {
  font-size: 0.938rem;
}

.score-item {
  margin-bottom: 16px;
}

.score-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

.score-name {
  color: #334155;
  font-weight: 500;
}

.score-value {
  color: #64748b;
}

.score-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.5s ease;
}

.score-fill.trait {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.score-fill.derailer {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.score-fill.need {
  background: linear-gradient(90deg, #10b981, #059669);
}

.score-fill.value {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.value-badge {
  background: #dc2626;
  color: white;
  padding: 12px 16px;
  border-radius: 0;
  text-align: center;
  font-weight: 500;
}

.value-badge .count {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.value-badge .label {
  font-size: 0.75rem;
  opacity: 0.9;
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  header {
    padding: 30px 20px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  #quiz {
    padding: 20px;
  }

  .section-header {
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 20px;
  }

  .likert-options {
    flex-direction: column;
  }

  .likert-option {
    min-width: 100%;
  }

  .submit-container {
    padding: 20px;
  }

  #results {
    padding: 20px;
  }
}

.user-form-container {
  padding: 40px;
  text-align: center;
}

.user-form-container h2 {
  margin: 0 0 10px 0;
  color: #000000;
  font-size: 1.75rem;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.user-form-container > p {
  color: #666666;
  margin: 0 0 30px 0;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  font-size: 1rem;
  transition: border-color 0.2s;
  font-family: 'Open Sans', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #000000;
}

.btn-primary {
  background: #000000;
  color: white;
  border: none;
  padding: 0 32px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1;
}

.btn-primary:hover {
  background: #333333;
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

.export-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

.action-buttons-row .export-btn {
  margin-top: 0;
  margin-bottom: 0;
}

.results-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 10px 0 5px 0;
}

.results-email {
  color: #64748b;
  margin: 0 0 5px 0;
}

.results-date {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.error-text {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 10px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #e2e8f0;
}

.admin-header h2 {
  margin: 0;
  color: #1e293b;
}

.assessments-list {
  padding: 20px 40px;
}

.assessment-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.assessment-card:hover {
  border-color: #667eea;
}

.assessment-info h3 {
  margin: 0 0 5px 0;
  color: #1e293b;
  font-size: 1.125rem;
}

.assessment-info p {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

.assessment-date {
  font-size: 0.813rem !important;
  color: #94a3b8 !important;
}

.no-results {
  text-align: center;
  color: #64748b;
  padding: 40px;
}

#assessment-detail {
  padding: 20px 40px;
}

#detail-content {
  margin-top: 20px;
}

.admin-header-actions {
  display: flex;
  gap: 10px;
}

.btn-danger {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 8px 16px;
  font-size: 0.813rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-danger:hover {
  background: #fecaca;
}

.assessment-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.archived-header {
  padding: 20px 40px 10px;
  border-top: 1px solid #e2e8f0;
  margin-top: 20px;
}

.archived-header h3 {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
}

.assessment-card.archived {
  opacity: 0.7;
  background: #f8fafc;
}

.results-subtitle {
  color: #667eea;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coaching-section {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0;
  border-left: 4px solid #dc2626;
}

.coaching-title {
  color: #dc2626;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coaching-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.coaching-item:last-child {
  margin-bottom: 0;
}

.coaching-item-title {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.coaching-item-subtitle {
  color: #64748b;
  font-size: 0.813rem;
  font-style: italic;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 6px;
}

.coaching-item-insight {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.coaching-block {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-left: 3px solid #94a3b8;
}

.coaching-block:last-child {
  margin-bottom: 0;
}

.coaching-block strong {
  color: #334155;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 8px;
}

.coaching-block ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-size: 0.813rem;
  line-height: 1.7;
}

.coaching-block li {
  margin-bottom: 6px;
}

.coaching-block li:last-child {
  margin-bottom: 0;
}

.coaching-block p {
  margin: 0;
  color: #475569;
  font-size: 0.813rem;
  line-height: 1.6;
}

.coaching-block.scripts-block {
  border-left-color: #667eea;
  background: #f0f4ff;
}

.coaching-block.lead-magnets-block {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.coaching-block.example-block {
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.coaching-directions {
  background: #fef3c7;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.813rem;
}

.coaching-directions strong {
  color: #92400e;
  display: block;
  margin-bottom: 8px;
}

.coaching-directions ul {
  margin: 0;
  padding-left: 20px;
  color: #78350f;
}

.coaching-directions li {
  margin-bottom: 4px;
}

.coaching-directions li:last-child {
  margin-bottom: 0;
}

.action-buttons-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-ai {
  background: #dc2626;
  color: white;
  border: none;
  padding: 0 32px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1;
}

.btn-ai:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-ai:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.ai-panel {
  background: #f5f5f5;
  border: 2px solid #000000;
  border-radius: 0;
  padding: 25px;
  margin-bottom: 30px;
}

.ai-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000000;
}

.ai-panel-header h3 {
  color: #000000;
  font-size: 1.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

.ai-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 15px;
}

.ai-loading p {
  color: #000000;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #dc2626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ai-error {
  text-align: center;
  padding: 30px;
  color: #dc2626;
}

.ai-error p {
  margin-bottom: 15px;
}

.ai-recommendations-container {
  background: white;
  border-radius: 0;
  padding: 20px;
}

.ai-disclaimer {
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.813rem;
  color: #666666;
}

.ai-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.ai-recommendation {
  background: #ffffff;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #dc2626;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #dc2626;
}

.ai-recommendation:last-child {
  margin-bottom: 0;
}

.ai-rec-title {
  color: #000000;
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

.ai-rec-section {
  margin-bottom: 15px;
}

.ai-rec-section:last-child {
  margin-bottom: 0;
}

.ai-rec-label {
  color: #334155;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 8px;
}

.ai-rec-section p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.ai-rec-section ul {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
}

.ai-rec-section li {
  margin-bottom: 6px;
}

.ai-rec-section li:last-child {
  margin-bottom: 0;
}

.ai-rec-section.coaching-questions {
  background: #f5f5f5;
  border-radius: 0;
  padding: 12px 15px;
  margin-top: 10px;
  border-left: 3px solid #dc2626;
}

.ai-rec-section.coaching-questions .ai-rec-label {
  color: #000000;
}

.ai-rec-section.coaching-questions ul {
  color: #333333;
}

.ai-recommendations-raw {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
}

.ai-recommendations-raw p {
  margin: 0 0 8px 0;
}

.ai-recommendations-raw .ai-rec-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 12px 0;
}

.ai-recommendations-raw .ai-rec-h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #334155;
  margin: 16px 0 10px 0;
}

.ai-recommendations-raw .ai-rec-h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin: 12px 0 8px 0;
}

.ai-recommendations-raw .ai-rec-list {
  margin: 8px 0 16px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.ai-recommendations-raw .ai-rec-list li {
  margin-bottom: 6px;
}

.archetype-summary-section {
  background: #000000;
  border: 2px solid #000000;
  border-radius: 0;
  padding: 30px;
  margin-top: 30px;
  text-align: center;
}

.archetype-summary-section h3 {
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 25px 0;
}

.archetype-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.archetype-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.archetype-label {
  color: #999999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.archetype-name {
  color: #dc2626;
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.zodiac-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-left: 50px;
  border-left: 2px solid #333333;
}

.zodiac-label {
  color: #999999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zodiac-sign {
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.archetype-description {
  color: #cccccc;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.more-menu {
  position: relative;
  display: inline-block;
}

.btn-icon {
  background: transparent;
  border: 2px solid #000000;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 0;
  line-height: 1;
}

.btn-icon:hover {
  background: #f0f0f0;
}

.more-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #ffffff;
  border: 2px solid #000000;
  min-width: 120px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.more-dropdown.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

.dropdown-item.danger {
  color: #dc2626;
}

.dropdown-item.danger:hover {
  background: #fef2f2;
}

.archetype-intro {
  color: #999999;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

.chat-section {
  background: #f8f8f8;
  border: 2px solid #000000;
  padding: 25px;
  margin-top: 30px;
}

.chat-header h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  color: #000000;
}

.chat-desc {
  color: #666666;
  font-size: 0.875rem;
  margin: 0 0 20px 0;
}

.chat-input-area {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.chat-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  min-height: 60px;
}

.chat-input:focus {
  outline: none;
  border-color: #000000;
}

.chat-input-area .btn-ai {
  align-self: flex-end;
  min-width: 100px;
}

.chat-history {
  border-top: 2px solid #000000;
  padding-top: 20px;
}

.chat-history h4 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0 0 15px 0;
  color: #000000;
}

.chat-message {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
}

.chat-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  gap: 15px;
}

.chat-question-preview {
  flex: 1;
  font-size: 0.875rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-message-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.chat-date {
  font-size: 0.75rem;
  color: #888888;
}

.chat-toggle-btn,
.chat-delete-btn {
  background: transparent;
  border: 1px solid #cccccc;
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 0;
  font-family: 'Open Sans', sans-serif;
}

.chat-toggle-btn:hover {
  background: #f0f0f0;
}

.chat-delete-btn {
  color: #dc2626;
  border-color: #dc2626;
}

.chat-delete-btn:hover {
  background: #fef2f2;
}

.chat-response-content {
  padding: 15px;
}

.chat-response-content.collapsed {
  display: none;
}

.chat-full-question {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.chat-response {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}

.chat-response .md-h1 {
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  margin: 15px 0 10px 0;
  color: #000000;
}

.chat-response .md-h2 {
  font-family: 'Anton', sans-serif;
  font-size: 1.125rem;
  margin: 12px 0 8px 0;
  color: #000000;
}

.chat-response .md-h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  margin: 10px 0 6px 0;
  color: #000000;
}

.chat-response .md-h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 8px 0 5px 0;
  color: #333333;
}

.chat-response .md-ol,
.chat-response .md-ul {
  display: block;
  margin: 4px 0 4px 20px;
  padding-left: 5px;
}

.chat-response .md-ol {
  list-style-type: decimal;
}

.chat-response .md-ul {
  list-style-type: disc;
}
