/* Lorex assistant markdown — parity با LorexChatMarkdown.tsx + HighlightedCode.tsx */

.ic-lorex-md-root {
  width: 99%;
  max-width: 100%;
  align-self: stretch;
  min-width: 0;
}

.ic-lorex-md {
  width: 100%;
  max-width: 100%;
  direction: rtl;
  text-align: right;
  font-family: "IRANYekan", Tahoma, sans-serif;
  font-size: 11.8px;
  line-height: 32px;
  color: #333;
  word-break: break-word;
}

.ic-lorex-md--typing {
  white-space: pre-wrap;
}

.ic-lorex-md p {
  margin: 4px 0 10px;
  width: 100%;
}

.ic-lorex-md h1,
.ic-lorex-md h2,
.ic-lorex-md h3,
.ic-lorex-md h4,
.ic-lorex-md h5,
.ic-lorex-md h6 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #333;
}

.ic-lorex-md h1 { font-size: 14px; line-height: 32px; margin-bottom: 6px; }
.ic-lorex-md h2 { font-size: 13px; line-height: 30px; margin-bottom: 6px; }
.ic-lorex-md h3 { font-size: 12.5px; line-height: 30px; margin-bottom: 4px; }
.ic-lorex-md h4 { font-size: 12px; line-height: 30px; margin-bottom: 4px; }
.ic-lorex-md h5 { font-size: 12px; line-height: 28px; margin-bottom: 4px; }
.ic-lorex-md h6 { font-size: 12px; line-height: 28px; margin-bottom: 4px; }

.ic-lorex-md strong { font-weight: 700; }
.ic-lorex-md em { font-style: italic; }

.ic-lorex-md ul,
.ic-lorex-md ol {
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.ic-lorex-md li {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 8px;
  gap: 4px;
}

.ic-lorex-md ul > li::before {
  content: "\2022";
  flex-shrink: 0;
  min-width: 0;
  margin-left: 4px;
  margin-right: 0;
  font-size: 11.8px;
  line-height: 32px;
  color: #333;
}

.ic-lorex-md ol {
  counter-reset: ic-lorex-ol;
}

.ic-lorex-md ol > li {
  counter-increment: ic-lorex-ol;
}

.ic-lorex-md ol > li::before {
  content: counter(ic-lorex-ol) ".";
  flex-shrink: 0;
  min-width: 0;
  margin-left: 4px;
  margin-right: 0;
  font-size: 11.8px;
  line-height: 32px;
  font-weight: 700;
  color: #333;
  direction: ltr;
  unicode-bidi: isolate;
}

.ic-lorex-md li > p {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.ic-lorex-md a {
  color: #4e91e6;
  text-decoration: underline;
}

.ic-lorex-md code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 10.5px;
  line-height: 16px;
  color: #5c3d8a;
  background: #eef1f6;
  padding: 2px 5px;
  border-radius: 4px;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

.ic-lorex-blockquote {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

/* Code card — CODE_CARD_LIGHT_THEME */
.ic-lorex-code-card {
  direction: ltr;
  text-align: left;
  background: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 12px;
  margin: 6px 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.ic-lorex-code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ic-lorex-code-head-meta {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 8px;
  min-width: 0;
}

.ic-lorex-code-lang {
  display: inline-block;
  background: rgba(0, 0, 0, 0.06);
  color: #57606a;
  font-family: "IRANYekan", Tahoma, sans-serif;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 8px;
  direction: ltr;
  unicode-bidi: isolate;
}

.ic-lorex-code-copy {
  border: 0;
  background: transparent;
  color: #6e7781;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ic-lorex-code-copy:active {
  opacity: 0.7;
}

.ic-lorex-code-copy-icon {
  display: block;
}

.ic-lorex-code-scroll-outer {
  width: 100%;
}

.ic-lorex-code-scroll {
  max-height: 320px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.ic-lorex-code-scroll-inner {
  display: inline-block;
  min-width: 100%;
  width: max-content;
}

.ic-lorex-code-pre {
  margin: 0;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 17px;
  white-space: pre;
  color: #24292f;
}

.ic-lorex-code-line {
  min-height: 17px;
}

.ic-lorex-hl-ws,
.ic-lorex-hl-ident,
.ic-lorex-hl-punct,
.ic-lorex-hl-default { color: #24292f; }
.ic-lorex-hl-comment { color: #6e7781; }
.ic-lorex-hl-keyword { color: #cf222e; }
.ic-lorex-hl-include { color: #0550ae; }
.ic-lorex-hl-number { color: #953800; }
.ic-lorex-hl-type { color: #8250df; }
.ic-lorex-hl-method { color: #0550ae; }
