/* analysis-bias.css */

/* Scopeované styly pro report */
.reportBlockInner {
  margin: 0;                /* žádné okraje pro celý app */
  padding: 20px 20px;       /* vnitřní odsazení jen v reportu */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings */
.reportBlockInner h1,
.reportBlockInner h2,
.reportBlockInner h3,
.reportBlockInner h4,
.reportBlockInner h5,
.reportBlockInner h6 {
  color: #222;
  margin-top: 0px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.reportBlockInner h1 {
  font-size: 1.5rem;
  color: #0059ff;
}

.reportBlockInner h2 {
  font-size: 1.3rem;
  color: #0059ff;
}

.reportBlockInner h3 {
  font-size: 1.1rem;
  color: #0059ff;
}

.reportBlockInner h4 {
  font-size: 1.1rem;
}

/* Paragraphs */
.reportBlockInner p {
  margin: 1rem 0;
  text-align: justify;
  font-size: 1rem;
}

/* Lists */
.reportBlockInner ul,
.reportBlockInner ol {
  margin: 1rem 0 1rem 1.5rem;
  text-align: justify;
}

.reportBlockInner li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Tables */
/*
.reportBlockInner table {
  width: 95%;
  border-collapse: collapse;
  margin: 1rem auto;
  font-size: 0.9rem;
}

.reportBlockInner thead th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.reportBlockInner th,
.reportBlockInner td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}
*/

.reportBlockInner table {
  width: 100%;
  margin: 20px auto 20px auto;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 26px;
  background: #ffffff;
  box-shadow: 0 3px 16px 0 rgba(27,43,92,0.04), 0 1.5px 5px 0 rgba(80,113,187,0.05);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.18s;
  border: 0px solid #eee;
}
.reportBlockInner table:hover {
  box-shadow: 0 6px 28px 0 rgba(27,43,92,0.09), 0 2.5px 12px 0 rgba(80,113,187,0.09);
}
.reportBlockInner th, .reportBlockInner td {
  padding: 11px 14px;
  border: none;
  font-size: 0.95rem;
}

.reportBlockInner th {
  background: #ffffff;
  color: #0059ff;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #ccc;
  position: relative;
  letter-spacing: 0.01em;
}

.reportBlockInner tbody tr {
  transition: background 0.18s;
}
.reportBlockInner tbody tr:hover {
  background: #f6f6f6;
}
.reportBlockInner td.numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.reportBlockInner td.pos {
  color: #18a45c;
  font-weight: 600;
}
.reportBlockInner td.neg {
  color: #c82b2b;
  font-weight: 600;
}
.reportBlockInner td {
  color: #263452;
  border-top: 1px solid #eceef6;
  vertical-align: middle;
  font-size: 0.85rem;
}
.reportBlockInner tr:last-child td {
  border-bottom: none;
}
.reportBlockInner td:first-child,
.reportBlockInner th:first-child {
  border-top-left-radius: 6px;
}
.reportBlockInner td:last-child,
.reportBlockInner th:last-child {
  border-top-right-radius: 6px;
}

/*
.reportBlockInner tbody tr:nth-child(even) {
  background-color: #fff;
}
*/

/* Links */
.reportBlockInner a {
  color: #0059ff;
  text-decoration: none;
}

.reportBlockInner a:hover {
  text-decoration: underline;
}

/* Code blocks and inline code */
.reportBlockInner pre,
.reportBlockInner code {
  font-family: monospace;
  background-color: #f5f5f5;
  padding: 0.5rem;
  border-radius: 4px;
}

.reportBlockInner pre {
  overflow-x: auto;
  margin: 1rem 0;
}

.reportBlockInner code {
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}

/* Blockquotes */
.reportBlockInner blockquote {
  border-left: 4px solid #ddd;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background-color: #fff;
  color: #666;
}

/* Horizontal rule */
.reportBlockInner hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2rem 0;
}

/* Images */
.reportBlockInner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

