/* Result Card and Markdown Content */
/* Modified to constrain long text and display Markdown correctly */
.result-card {
  background: #f0f8ff;
  padding: 20px;
  margin-top: 15px;
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  max-height: 400px;
  overflow-y: auto;
  white-space: normal;
}
.analysis-md {
  line-height: 1.5;
}

/* New RTL class for Persian/Arabic text */
.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Vazir', sans-serif;
}