@charset "utf-8";
.eosv-app {
  padding: 16px;
  background: transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.eosv-app em { color: #ffcdce; }

.eosv-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.eosv-title { display: flex; flex-direction: column; gap: 4px; }
.eosv-title h1 { margin: 0; }
.eosv-subtitle { margin: 11px 0 0; color: #6b7d8f; font-size: 17px; }

.eosv-actions { display: flex; gap: 8px; }

.eosv-btn {
  border: 1px solid #ADBDDE;
  background: #111827;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
}
.eosv-btn:hover { opacity: 0.92; }
.eosv-btn-secondary {
  background: #fff;
  color: #111827;
}

.eosv-inputs { margin-top: 8px; }
.eosv-label { display: block; font-size: 13px; color: #c7beae; margin: 8px 0 6px; }
.eosv-textarea {
  width: 100%;
    box-sizing: border-box;
  border: 1px solid #ADBDDE;
  border-radius: 10px;
  padding: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
}
.eosv-row { display: flex; gap: 16px; align-items: flex-end; margin-top: 10px; flex-wrap: wrap; }
.eosv-file { padding: 6px 0; }
input[type="file" i]::-webkit-file-upload-button {
    margin-inline-end: 6px;
  border: 1px solid #ADBDDE;
  background: #111827;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
}
input[type="file" i]::-webkit-file-upload-button:hover { opacity: 0.92; }
.eosv-btn-secondary {
  background: #fff;
  color: #111827;
}

.eosv-savebox { display: flex; flex-direction: column; gap: 4px; }
.eosv-check { display: inline-flex; gap: 8px; align-items: center; user-select: none; }
.eosv-muted { color: #6b7280; font-size: 12px; }

.eosv-status { margin-top: 10px; font-size: 13px; }
.eosv-status-info { color: #374151; }
.eosv-status-success { color: #065f46; }
.eosv-status-error { color: #b91c1c; }

.eosv-output {
    display: none;
    margin-top: 16px;
    overflow: visible;
}

.eosv-summary {
  display: block;
  margin: 0;
}
.eosv-v { font-size: 15px; font-style: italic; }
.eosv-split {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
}
@media (max-width: 900px) {
  .eosv-split { grid-template-columns: 1fr; }
}

.eosv-nav {
    position: sticky; top: 31px; align-self: start;
    padding: 8px; min-height: 80px; max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: #ADBDDE; border: 1px solid #e5e7eb; border-radius: 12px;
}
.eosv-nav-item { margin: 4px 0; }
.eosv-nav-children { padding-left: 14px; border-left: 1px dashed #e5e7eb; margin-left: 8px; }

.eosv-nav-btn {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
}
.eosv-nav-btn:hover { background: #f3f4f6; }

.eosv-content {
    min-width: 0;
  border: 1px solid #ADBDDE;
  border-radius: 12px;
  padding: 14px;
  background: transparent;
}

.eosv-h2 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.eosv-badge {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  margin-bottom: 10px;
}

.eosv-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1px 11px 11px;
  margin: 10px 0;
  background: #0a0a0a;
}
.eosv-card-title { font-size: 18px; font-weight: 600; color: #f5f4f4; margin: 8px 0 5px; }

.eosv-pre {
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
}

.eosv-ol {
    margin: 2px 0; padding-left: 23px;
    font-size: 15px;
}
.eosv-ol li { margin: 1px 0; }
.eosv-ul {
    padding-left: 23px; margin: 6px 0;
    font-size: 16px;
}
.eosv-ul li { line-height: 1.55; }

.eosv-empty { color: #6b7280; padding: 10px; }

.eosv-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 900px) {
  .eosv-grid2 { grid-template-columns: 1fr; }
}

.eosv-tablewrap { overflow: auto; }
.eosv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.eosv-table th, .eosv-table td {
  border: 1px solid #e5e7eb;
  padding: 8px;
  vertical-align: top;
    font-size: 14px;
}
.eosv-table th {
  background: #090a0b;
  text-align: left;
}

.eosv-big { font-size: 18px; font-weight: 600; margin-top: 6px; }
.eosv-note {
  margin: 7px 0;
  font-size: 17px; font-weight: 300;
  color: #bbb;
  line-height: 1.45;
}
.eosv-angle { margin: 7px 0; font-style: italic; font-size: 17px; font-weight: 300; color: #4b5563; }

.eosv-defs { display: grid; gap: 10px; margin: 11px 0 0; }
.eosv-def {
    font-size: 18px;
    border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px; background: transparent;
}
.eosv-def-term { font-weight: 600; margin-bottom: 6px; }
.eosv-def-text { color: #c7beae; font-size: 15px; line-height: 1.45; }

.eosv-muted2 { color: #6b7d8f; font-size: 15px; font-style: italic; margin: 1px 0 10px; }

.eosv-cur-btn { margin-bottom: 6px; border: 1px solid #e5e7eb; background: #fff; }
.eosv-cur-btn:hover { background: #f3f4f6; }
.eosv-cur-btn.is-active { background: #111827; color: #fff; border-color: #111827; }

.eosv-subcard {
    margin-top: 10px; padding: 3px 12px 12px;
    background-color: #000; border-radius: 11px;
}
.eosv-subtitle2 {
    color: #eee8d7; font-size: 15px; font-weight: 600;
    margin: 10px 0 6px;
}
.eosv-details { margin-top: 10px; padding-left: 6px; width: fit-content; }
.eosv-details .eosv-details { margin-left: 12px; }
.eosv-details-summary {
  /* keep native marker */
  display: list-item;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  margin: 6px 0 0 14px;
    list-style-position: outside;
}

/* IMPORTANT: inline-flex + width 100% prevents content dropping to next line */
.eosv-summary-row {
  display: inline-flex;
  width: 100%; max-width: 100%; min-width: 689px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  vertical-align: middle;
}

/* stop score wrapping */
.eosv-summary-score {
  white-space: nowrap;
}
.eosv-channel-desc {
  margin: 6px 0 10px;
  font-style: italic;
}
.eosv-mini-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
  margin: 9px 0;
}
.eosv-mini-table th,
.eosv-mini-table td{
  padding: 8px 12px;
  font-size: 15px;
  vertical-align: top;
}
.eosv-mini-table th{
  width: 200px;
  max-width: 200px;
  text-align: left;
  font-weight: 500;
  color: #374151;
  background: #fafafa;
}
.eosv-mini-table tr + tr th,
.eosv-mini-table tr + tr td{ border-top: 1px solid #f1f5f9; }
.eosv-mini-table td{ color: #111827; }
.eosv-subtitle2{
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 3px 1px;
}
html { scroll-behavior: smooth; }
.eosv-flash {
  outline: 2px solid #111827;
  outline-offset: 4px;
  border-radius: 10px;
}
.eosv-score {
  font-weight: 600;
  color: #eee8d7;
}
.eosv-implied {
  margin: 11px 11px 0;
  padding: 6px 9px;
    font-size: 15px; font-style: italic; color: #6b7280;
  border-left: 3px solid #6b7280;
  background: #090a0b;
  border-radius: 10px;
}