/* ng-src/styles.css */
:root {
  color-scheme: dark;
  --bg: #090c12;
  --panel: #131b27;
  --panel-2: #1a2433;
  --line: rgba(185, 215, 255, 0.14);
  --border: rgba(185, 215, 255, 0.12);
  --text: #edf4ff;
  --muted: #a2afbf;
  --soft: #d0d9e6;
  --accent: #5ac8ff;
  --accent-2: #8ee6b0;
  --good: #62dba0;
  --accent-warm: #e8c66a;
  --warn: #ffc56f;
  --bad: #ff6f7d;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  --report-gap: 18px;
  --table-scroll-max: 455px;
  --site-scale: 0.8;
  --site-scale-inverse: 1.25;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(90, 200, 255, 0.08),
      transparent 360px),
    linear-gradient(
      145deg,
      #080b11 0%,
      #0c1118 46%,
      #101723 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}
app-root {
  position: relative;
  left: 50%;
  display: block;
  width: calc(100% * var(--site-scale-inverse));
  transform: translateX(-50%) scale(var(--site-scale));
  transform-origin: top center;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.app-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.topbar-actions-only {
  justify-content: flex-end;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark,
.icon-fallback,
.job-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(
      145deg,
      rgba(87, 199, 255, 0.24),
      rgba(132, 230, 166, 0.13));
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
}
.job-icon img,
.ability-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.brand h1,
.page-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}
.brand p,
.muted {
  margin: 4px 0 0;
  color: var(--muted);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.segmented-control {
  display: inline-flex;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.icon-segmented-control {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(185, 215, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}
.icon-segment {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
}
.icon-segment.is-active {
  color: var(--text);
  background: rgba(90, 200, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(90, 200, 255, 0.16);
}
.icon-segment:hover {
  color: var(--text);
  background: rgba(232, 198, 106, 0.1);
}
.layout-grid-glyph,
.layout-rows-glyph {
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
}
.layout-grid-glyph {
  background:
    linear-gradient(currentColor 0 0) left top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right top / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 7px 7px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 7px 7px no-repeat;
}
.layout-rows-glyph {
  background:
    linear-gradient(currentColor 0 0) left top / 18px 4px no-repeat,
    linear-gradient(currentColor 0 0) left center / 18px 4px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 18px 4px no-repeat;
}
.segment {
  min-width: 72px;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
}
.segment.is-active {
  color: var(--text);
  background: rgba(87, 199, 255, 0.18);
}
.segment:hover {
  color: var(--text);
}
.button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.button.primary {
  border-color: rgba(87, 199, 255, 0.54);
  background: rgba(87, 199, 255, 0.16);
}
.button:hover,
.dropzone:hover,
.match-card:hover,
.score-row:hover {
  border-color: rgba(87, 199, 255, 0.55);
}
.upload-layout {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: start;
  justify-items: center;
  justify-content: center;
  grid-template-columns: minmax(0, 760px);
  gap: 22px;
  padding: 46px 0 64px;
}
.logo-placeholder {
  min-width: 220px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px 26px;
  border: 1px solid rgba(87, 199, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(22, 31, 45, 0.8),
      rgba(17, 24, 35, 0.72));
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landing-logo {
  width: min(1080px, 96vw);
  display: grid;
  place-items: center;
}
.landing-logo img {
  display: block;
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
}
.upload-copy {
  max-width: 700px;
  text-align: center;
}
.upload-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}
.upload-copy p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.55;
}
.dropzone {
  width: 100%;
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 34px 28px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 25, 35, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}
.dropzone.dragging {
  border-color: var(--accent);
  background: rgba(87, 199, 255, 0.12);
}
.dropzone h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.dropzone p {
  margin: 0 0 20px;
  color: var(--muted);
}
.upload-location-hint {
  max-width: 100%;
  font-size: 13px;
}
.upload-location-hint code,
.tutorial-panel code {
  color: var(--soft);
  font-size: 0.94em;
  overflow-wrap: anywhere;
}
.beta-notice-panel,
.tutorial-panel {
  width: 100%;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(22, 31, 45, 0.78),
      rgba(17, 24, 35, 0.74));
}
.beta-notice-panel h2,
.tutorial-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
}
.beta-notice-panel ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--bad);
  line-height: 1.62;
}
.beta-notice-panel li + li {
  margin-top: 6px;
}
.beta-notice-panel p {
  margin: 0;
  color: var(--soft);
  line-height: 1.58;
}
.beta-notice-panel p + p {
  margin-top: 6px;
}
.tutorial-panel ol {
  margin: 0;
  padding-left: 22px;
  color: var(--soft);
  line-height: 1.65;
}
.tutorial-panel li + li {
  margin-top: 6px;
}
.processing-card,
.panel,
.metric-card,
.table-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(22, 31, 45, 0.94),
      rgba(17, 24, 35, 0.93));
  box-shadow: var(--shadow);
}
.processing-card {
  max-width: 620px;
  margin: 18vh auto;
  padding: 34px;
}
.progress-track {
  height: 8px;
  margin: 24px 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.progress-bar {
  height: 100%;
  width: 4%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-2));
  transition: width 180ms ease;
}
.progress-bar-pending {
  width: 42%;
  animation: loading 1.2s ease-in-out infinite;
}
@keyframes loading {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}
.match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.match-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  text-align: left;
  box-shadow: var(--shadow);
}
.match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    var(--map-image),
    linear-gradient(
      145deg,
      #1a2531,
      #090c12);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.match-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24),
      rgba(4, 7, 12, 0.88));
}
.match-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 14px;
}
.match-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
}
.match-uploader {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  color: var(--soft);
}
.match-uploader span:last-child,
.match-uploader-inline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.match-list {
  overflow: auto;
}
.match-list-table {
  width: 100%;
  border-collapse: collapse;
}
.match-list-table th,
.match-list-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--soft);
  font-size: 13px;
  text-align: left;
}
.match-list-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.match-list-table td strong {
  color: var(--text);
}
.match-list-row {
  cursor: pointer;
}
.match-list-row:hover td,
.match-list-row:focus td {
  background: rgba(87, 199, 255, 0.09);
}
.match-list-row:focus {
  outline: none;
}
.meta-line,
.pill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--soft);
  font-size: 13px;
}
.page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}
.header-panel {
  padding: 20px;
}
.player-report-header .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}
.section-grid > *,
app-report-panel {
  min-width: 0;
  height: 100%;
}
app-report-panel {
  display: block;
}
app-report-panel:empty {
  display: none;
}
app-report-panel > .panel {
  height: 100%;
}
.drg-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gnb-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rdm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pct-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dnc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.whm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ast-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ast-double-cast-panel {
  grid-column: span 2;
}
.double-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.ast-double-cast-grid,
.ast-double-cast-panel .double-box-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: var(--report-gap);
  position: relative;
}
.ast-double-cast-main,
.ast-double-cast-aspected {
  min-width: 0;
}
.ast-double-cast-main .ast-double-cast-pie-layout {
  margin-bottom: var(--report-gap);
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) {
  display: contents;
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > h3:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2;
  margin-top: var(--report-gap);
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > .event-table-wrap:first-of-type {
  grid-column: 1;
  grid-row: 3 / span 6;
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > h3:nth-of-type(2) {
  position: absolute;
  top: 42px;
  right: 0;
  width: calc((100% - var(--report-gap)) * 0.35);
  margin: 0;
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > app-metric-grid {
  position: absolute;
  top: 104px;
  right: 0;
  width: calc((100% - var(--report-gap)) * 0.35);
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > app-value-bar:nth-of-type(1) {
  position: absolute;
  top: 238px;
  right: 0;
  width: calc((100% - var(--report-gap)) * 0.35);
  margin: 0;
}
.ast-double-cast-panel .double-box-grid > div:nth-child(2):not(.ast-double-cast-aspected) > app-value-bar:nth-of-type(2) {
  position: absolute;
  top: 404px;
  right: 0;
  width: calc((100% - var(--report-gap)) * 0.35);
  margin: 0;
}
.ast-double-cast-aspected {
  display: flex;
  flex-direction: column;
  gap: var(--report-gap);
}
.ast-double-cast-aspected > .subsection-title,
.ast-double-cast-aspected > app-metric-grid,
.ast-double-cast-aspected > app-value-bar {
  margin: 0;
}
.dnc-wide-panel {
  grid-column: span 2;
}
.dnc-dance-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.dnc-dance-columns > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--report-gap);
}
.dnc-dance-columns > div > app-metric-grid + app-value-bar,
.dnc-dance-columns > div > app-value-bar + app-metric-grid,
.dnc-dance-columns > div > app-value-bar + app-value-bar {
  margin-top: 0;
}
.mch-analysis-panel {
  grid-column: span 2;
}
.mch-analysis-quadrants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--report-gap);
  align-items: start;
}
.mch-analysis-section {
  display: grid;
  gap: 14px;
  min-height: 0;
}
.mch-analysis-table,
.mch-window-table,
.mch-compact-table {
  max-height: 150px;
}
.pct-muses-panel {
  grid-column: span 2;
}
.pct-muse-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.panel-wide {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
.nin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rpr-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rpr-lb-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.rpr-compact-table {
  max-height: 156px;
}
.rpr-lb-table {
  max-height: 220px;
}
.rpr-death-warrant-table {
  max-height: 360px;
}
.rpr-death-warrant-table th:first-child,
.rpr-death-warrant-table td:first-child,
.rpr-lb-table th:first-child,
.rpr-lb-table td:first-child {
  width: 54px;
}
.rpr-death-warrant-table th:nth-child(3),
.rpr-death-warrant-table td:nth-child(3),
.rpr-lb-table th:nth-child(4),
.rpr-lb-table td:nth-child(4) {
  min-width: 150px;
  width: 38%;
}
.vpr-lb-table {
  max-height: 260px;
}
.vpr-lb-table .event-table {
  table-layout: fixed;
  min-width: 0;
  width: 100%;
}
.vpr-lb-table .event-table th:nth-child(n+5),
.vpr-lb-table .event-table td:nth-child(n+5) {
  display: none;
}
.vpr-lb-table .event-table th:first-child,
.vpr-lb-table .event-table td:first-child {
  width: 42px;
}
.vpr-lb-table .event-table th:nth-child(2),
.vpr-lb-table .event-table td:nth-child(2) {
  min-width: 0;
  width: 55%;
}
.vpr-lb-table .event-table th:nth-child(3),
.vpr-lb-table .event-table td:nth-child(3),
.vpr-lb-table .event-table th:nth-child(4),
.vpr-lb-table .event-table td:nth-child(4) {
  width: 18%;
  text-align: right;
}
.vpr-lb-table .sequence-icons {
  gap: 6px;
  justify-content: flex-start;
}
.vpr-lb-table .sequence-icons .ability-icon {
  width: 24px;
  height: 24px;
}
.nin-tri-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.nin-mudra-sequence {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.nin-mudra-row {
  display: grid;
  grid-template-columns: 40px 18px 40px 18px 40px 18px 40px 18px 40px;
  gap: 4px;
  align-items: center;
}
.nin-mudra-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nin-mudra-token .ability-icon {
  width: 36px;
  height: 36px;
}
.nin-mudra-row .sequence-arrow {
  justify-self: center;
}
.nin-ninjutsu-pie {
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.nin-ninjutsu-pie .pie-chart {
  width: 116px;
  max-width: 116px;
}
.nin-ninjutsu-pie .pie-legend {
  min-width: 0;
}
.nin-compact-table {
  max-height: 150px;
}
.wyrmwind-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.panel {
  padding: 21px;
}
.job-report app-report-panel > .panel {
  padding: 24px;
}
.job-report .section-grid {
  gap: var(--report-gap);
  margin-bottom: var(--report-gap);
}
.job-report .metric-grid {
  gap: 16px;
  margin-bottom: 18px;
}
.job-report .metric-card {
  padding: 17px 18px;
}
.job-report .subsection-title {
  margin-top: 20px;
  margin-bottom: 13px;
}
.job-report .subsection-title:first-child {
  margin-top: 0;
}
.job-report-view.report-view .job-report > .section-grid,
.job-report-view.report-view .job-report > [class*=-grid] {
  grid-template-columns: minmax(0, 1fr) !important;
}
.job-report-view.report-view .job-report > .section-grid > *,
.job-report-view.report-view .job-report > [class*=-grid] > * {
  grid-column: 1 / -1 !important;
  justify-self: center;
  width: min(100%, 980px);
}
.job-report-view.report-view .job-report .mch-analysis-quadrants,
.job-report-view.report-view .job-report .double-box-grid,
.job-report-view.report-view .job-report .dnc-dance-columns,
.job-report-view.report-view .job-report .pct-muse-columns,
.job-report-view.report-view .job-report .rpr-lb-columns,
.job-report-view.report-view .job-report .nin-tri-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}
.shared-panel-highlight {
  border-color: rgba(87, 199, 255, 0.72);
  box-shadow: 0 0 0 2px rgba(87, 199, 255, 0.2), var(--shadow);
}
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.panel h2,
.panel h3,
.table-panel h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.panel-heading h2 {
  flex: 1 1 auto;
  min-width: 0;
}
.panel-menu {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}
.panel-menu-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  line-height: 1;
}
.panel-menu-button:hover,
.panel-menu.open .panel-menu-button {
  border-color: rgba(87, 199, 255, 0.48);
  color: var(--text);
  background: rgba(87, 199, 255, 0.12);
}
.panel-menu-popover {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 210px;
  max-width: min(260px, calc(100vw - 32px));
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101722;
  box-shadow: var(--shadow);
}
.panel-menu.open .panel-menu-popover {
  display: block;
}
.panel-menu-popover button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--text);
  background: transparent;
  text-align: left;
}
.panel-menu-popover button:hover {
  background: rgba(87, 199, 255, 0.12);
}
.feedback-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 7, 11, 0.72);
}
.feedback-modal {
  width: min(520px, 100%);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101722;
  box-shadow: var(--shadow);
}
.feedback-modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.feedback-modal h2 {
  margin: 0;
  font-size: 20px;
}
.feedback-textarea {
  width: 100%;
  min-height: 138px;
  margin-top: 14px;
  padding: 12px;
  resize: vertical;
  border: 1px solid rgba(185, 215, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}
.feedback-textarea:focus {
  outline: 2px solid rgba(90, 200, 255, 0.34);
  outline-offset: 2px;
}
.feedback-error {
  margin-top: 10px;
  color: var(--bad);
  font-size: 13px;
}
.feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.metric-card {
  padding: 16px 17px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(185, 215, 255, 0.12);
  box-shadow: none;
}
.metric-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.metric-value {
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  overflow-wrap: anywhere;
}
.metric-value.good {
  color: var(--accent-2);
}
.metric-value.warn {
  color: var(--warn);
}
.metric-value.bad {
  color: var(--bad);
}
.table-panel {
  padding: 0;
  overflow: hidden;
}
.table-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.sort-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.score-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.score-table th,
.score-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}
.score-table th:first-child,
.score-table td:first-child,
.score-table th:nth-child(2),
.score-table td:nth-child(2) {
  text-align: left;
}
.score-row {
  cursor: pointer;
}
.score-row:hover td {
  background: rgba(87, 199, 255, 0.09);
}
.team-board.red .score-row:hover td {
  background: rgba(255, 111, 125, 0.09);
}
.team-scoreboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
.scoreboard-section {
  margin-bottom: 16px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}
.section-heading h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.timeline-panel {
  margin-bottom: 16px;
}
.timeline-heading {
  align-items: center;
  flex-wrap: wrap;
}
.timeline-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.timeline-player-filter {
  position: relative;
}
.timeline-player-filter summary {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  list-style: none;
}
.timeline-player-filter summary::-webkit-details-marker {
  display: none;
}
.timeline-player-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 250px;
  max-height: 330px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.98);
  box-shadow: var(--shadow);
}
.timeline-check,
.timeline-split-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}
.timeline-check {
  padding: 5px 6px;
  border-radius: 6px;
}
.timeline-check:hover {
  background: rgba(255, 255, 255, 0.06);
}
.timeline-split-toggle,
.timeline-zoom-control {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.timeline-zoom-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}
.timeline-zoom-control select {
  min-width: 70px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 3px 7px;
  color: var(--text);
  background: rgba(12, 17, 24, 0.92);
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.timeline-scroll.is-dragging {
  cursor: grabbing;
}
.timeline-canvas {
  position: relative;
  min-width: 100%;
}
.timeline-axis {
  position: relative;
  z-index: 1;
  height: 22px;
  margin-left: 220px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.timeline-tick {
  position: absolute;
  top: 0;
  bottom: -200vh;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}
.timeline-tick.is-minute {
  background: rgba(255, 255, 255, 0.08);
}
.timeline-tick-label {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.timeline-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.timeline-row-blue {
  background: rgba(87, 199, 255, 0.055);
}
.timeline-row-red {
  background: rgba(255, 111, 125, 0.055);
}
.timeline-row-label {
  position: sticky;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 4px 8px 4px 0;
  color: var(--text);
  background: #121923;
  font-size: 11px;
  line-height: 1.15;
}
.timeline-row-blue .timeline-row-label {
  color: #bdeaff;
  background: #102434;
}
.timeline-row-red .timeline-row-label {
  color: #ffc1c8;
  background: #291821;
}
.timeline-row-label span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.timeline-row-track {
  position: relative;
  z-index: 2;
  min-height: 28px;
}
.timeline-event {
  position: absolute;
  top: 4px;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(12, 17, 24, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.timeline-event .ability-icon,
.timeline-row-label .ability-icon,
.timeline-row-label .job-icon,
.timeline-check .job-icon {
  flex: 0 0 auto;
}
.timeline-event .ability-icon,
.timeline-event .icon-fallback,
.timeline-row-label .ability-icon,
.timeline-row-label .job-icon,
.timeline-row-label .icon-fallback {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-size: 9px;
}
.team-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 25, 35, 0.9);
  box-shadow: var(--shadow);
}
.team-board.blue {
  border-color: rgba(87, 199, 255, 0.32);
}
.team-board.red {
  border-color: rgba(255, 111, 125, 0.32);
}
.team-board-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.team-board-title h2 {
  margin: 0;
  font-size: 19px;
}
.team-board-title span {
  color: var(--muted);
  font-size: 13px;
}
.compact-score-table {
  min-width: 0;
  table-layout: fixed;
}
.compact-score-table th,
.compact-score-table td {
  padding: 9px 10px;
  font-size: 14px;
}
.compact-score-table th {
  line-height: 1.2;
  white-space: normal;
}
.compact-score-table td {
  overflow: hidden;
  text-overflow: ellipsis;
}
.compact-score-table .metric-value {
  font-size: 15px;
}
.compact-score-table .job-icon,
.compact-score-table .icon-fallback {
  width: 32px;
  height: 32px;
  font-size: 11px;
}
.compact-score-table .col-job {
  width: 48px;
}
.compact-score-table .col-name {
  width: 18%;
}
.compact-score-table .col-damage,
.compact-score-table .col-received,
.compact-score-table .col-hp-raw,
.compact-score-table .col-hp-effective {
  width: 13%;
}
.compact-score-table .col-overheal {
  width: 10%;
}
.compact-score-table .col-kills,
.compact-score-table .col-deaths {
  width: 44px;
}
.player-link {
  border: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  font-weight: 800;
  text-align: left;
}
.player-link:hover {
  color: var(--accent);
}
.player-cell,
.ability-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.player-name {
  font-weight: 800;
}
.tiny {
  color: var(--muted);
  font-size: 12px;
}
.ability-list {
  display: grid;
  gap: 8px;
}
.ability-row {
  justify-content: space-between;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.ability-name {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.ability-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
}
.feedback-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feedback-list li {
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.shared-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.general-action-row {
  align-items: start;
}
.recovery-action-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}
.recovery-action-pair .panel {
  min-height: 100%;
}
.recovery-action-pair .panel h2 {
  font-size: 16px;
}
.recovery-action-pair .panel {
  padding: 14px;
}
.recovery-action-pair .metric-card {
  padding: 10px;
}
.pie-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.pie-panel {
  overflow: visible;
}
.pie-panel .pie-layout {
  min-height: max-content;
}
.pie-figure {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.pie-chart {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1;
}
.pie-chart path {
  stroke: rgba(9, 12, 18, 0.85);
  stroke-width: 1.5;
}
.pie-chart path:hover {
  filter: brightness(1.22);
}
.pie-slice {
  cursor: help;
}
.ast-double-cast-pie-layout {
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
}
.ast-double-cast-pie-layout .pie-chart,
.ast-double-cast-pie-layout .pie-empty {
  width: 100%;
  height: auto;
  max-width: 280px;
}
.ast-arcana-table {
  max-height: 170px;
}
.pie-total-below {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
}
.pie-total-below strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}
.chart-tooltip {
  position: fixed;
  z-index: 100;
  display: none;
  min-width: 240px;
  max-width: 420px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.98);
  box-shadow: var(--shadow);
  pointer-events: none;
}
.chart-tooltip.visible {
  display: grid;
  gap: 7px;
}
.chart-tooltip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.chart-tooltip-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  max-width: 280px;
  color: var(--text);
  font-size: 13px;
  text-align: right;
  white-space: normal;
  flex-wrap: wrap;
}
.pie-empty {
  display: grid;
  place-items: center;
  width: 184px;
  height: 184px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.pie-legend {
  max-height: 260px;
  overflow: auto;
  display: grid;
  gap: 7px;
  padding-right: 4px;
}
.pie-panel .pie-legend {
  max-height: none;
  overflow: visible;
  padding-bottom: 4px;
}
.legend-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 32px;
}
.native-legend-row {
  grid-template-columns: 10px minmax(0, 1fr) auto;
  cursor: help;
}
.legend-ability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--soft);
}
.legend-ability > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.legend-name {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.legend-value {
  font-weight: 800;
}
.event-list {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}
.event-table-wrap {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}
.job-report .event-table-wrap,
.compare-grid .event-table-wrap {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.job-report .event-table-wrap:has(.event-table tbody tr:nth-child(11)),
.compare-grid .event-table-wrap:has(.event-table tbody tr:nth-child(11)),
.match-report .event-table-wrap:has(.event-table tbody tr:nth-child(11)),
.report-section .event-table-wrap:has(.event-table tbody tr:nth-child(11)) {
  max-height: var(--table-scroll-max);
  overflow: auto;
  padding-right: 4px;
}
.job-report .panel.allow-row-table-expansion .event-table-wrap:has(.event-table tbody tr:nth-child(11)),
.compare-grid .panel.allow-row-table-expansion .event-table-wrap:has(.event-table tbody tr:nth-child(11)) {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.panel.measure-unclamped-tables .event-table-wrap:has(.event-table tbody tr:nth-child(11)) {
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
}
.event-table-wrap:has(.event-table tbody tr:nth-child(11)) .event-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #121a25;
}
.event-card-list {
  display: grid;
  gap: 10px;
}
.event-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}
.event-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.event-card-time {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.event-card-meta-line {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.event-card-meta,
.event-card-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: var(--muted);
  font-size: 12px;
}
.event-card-meta strong,
.event-card-metrics strong {
  color: var(--text);
  font-weight: 800;
}
.guard-ignored-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.guard-ignored-card {
  padding: 9px 10px;
  border-color: rgba(255, 111, 125, 0.22);
  background: rgba(255, 111, 125, 0.055);
}
.guard-ignored-main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  min-width: 0;
}
.blm-am-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  overflow-x: auto;
}
.blm-am-list::before {
  content: "Time  Target  Distance  Ice Wreath +/-3s  Died +8s  80k Damage +8s  Target Died +8s  Burst Succession";
  display: grid;
  grid-template-columns: 58px minmax(132px, 1.3fr) 64px repeat(5, minmax(76px, 0.7fr));
  gap: 8px;
  min-width: 760px;
  padding: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}
.blm-am-card {
  display: grid;
  grid-template-columns: 58px minmax(132px, 1.3fr) 64px repeat(5, minmax(76px, 0.7fr));
  gap: 8px;
  min-width: 760px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(185, 215, 255, 0.1);
  border-radius: 0;
  background: transparent;
}
.blm-am-card .event-card-head,
.blm-am-flags {
  display: contents;
}
.blm-am-card .event-card-time,
.blm-am-card app-player-ref,
.blm-am-card .distance-pill,
.blm-am-card .flag-chip {
  min-width: 0;
}
.blm-am-card .event-card-time {
  align-self: center;
}
.blm-am-card .flag-chip {
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.blm-am-card .flag-chip > span {
  display: none;
}
.distance-pill {
  padding: 3px 7px;
  border: 1px solid rgba(185, 215, 255, 0.12);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.blm-am-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(185, 215, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 700;
}
.flag-chip.is-true strong {
  color: var(--accent-2);
}
.flag-chip.is-false strong {
  color: var(--bad);
}
.death-contributor-list {
  display: grid;
  gap: 6px;
}
.death-contributor-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.death-contributor-row strong {
  color: var(--text);
  text-align: right;
}
.death-status-details {
  min-width: 0;
}
.death-status-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.death-status-details summary span {
  color: var(--text);
  font-weight: 800;
}
.death-status-list {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}
.death-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--soft);
  font-size: 12px;
}
.death-status-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-weight: 700;
}
.death-status-name span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.death-status-name .ability-icon,
.death-status-name .icon-fallback {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  font-size: 8px;
}
.kill-event-head {
  justify-content: start;
}
.kill-event-head .inline-player,
.death-contributor-row .inline-player,
.death-status-row .inline-player {
  min-width: 0;
}
.kill-event-ability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--soft);
  font-weight: 700;
}
.kill-event-ability span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
.event-table-wrap {
  margin-top: 14px;
}
.event-table th,
.event-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(185, 215, 255, 0.08);
  color: var(--soft);
  font-size: 12px;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  -webkit-hyphens: none;
  hyphens: none;
}
.event-table td.bool-yes,
.event-table td .bool-yes {
  color: var(--good) !important;
  font-weight: 900;
}
.event-table td.bool-no,
.event-table td .bool-no {
  color: var(--bad) !important;
  font-weight: 900;
}
.event-table th {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 11.5px;
}
.event-table td strong {
  color: var(--text);
}
.table-boolean {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.table-boolean.is-true {
  color: #62dba0;
}
.table-boolean.is-false {
  color: #f27783;
}
.bool-mark {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.bool-mark.bool-yes {
  color: var(--good) !important;
}
.bool-mark.bool-no {
  color: var(--bad) !important;
}
.table-value-bar {
  display: grid;
  gap: 5px;
  min-width: 88px;
}
.table-value-bar-track {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(130, 74, 91, 0.9);
}
.table-value-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--accent-2),
      var(--accent));
}
.smn-phoenix-table .event-table th:nth-child(3),
.smn-phoenix-table .event-table td:nth-child(3) {
  width: 30%;
}
.event-table .ability-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 9px;
}
.event-table .icon-only {
  vertical-align: middle;
}
.purify-table {
  margin-top: 10px;
  overflow-x: hidden;
}
.purify-table .event-table {
  min-width: 0;
}
.purify-table .event-table th:first-child,
.purify-table .event-table td:first-child {
  width: 72px;
}
.purify-table .event-table th,
.purify-table .event-table td {
  padding-top: 9px;
  padding-bottom: 9px;
}
.status-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-chip,
.compact-ability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--soft);
}
.status-chip {
  min-height: 26px;
  padding: 2px 8px 2px 2px;
  border: 1px solid rgba(185, 215, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}
.status-chip .ability-icon,
.status-chip .icon-fallback,
.compact-ability .ability-icon,
.compact-ability .icon-fallback {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 9px;
}
.inline-player {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  font-weight: 600;
}
.inline-player-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inline-player.team-blue {
  color: #72d3ff;
}
.inline-player.team-red {
  color: #ff8792;
}
.inline-player .job-icon,
.inline-player .icon-fallback {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 0;
  font-size: 6px;
}
.death-contribution-stack {
  display: grid;
  gap: 5px;
  min-height: 15px;
}
.brd-uptime-stack {
  display: grid;
  gap: 5px;
}
.brd-uptime-stack > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
}
.brd-uptime-stack .inline-player {
  min-width: 0;
}
.brd-final-table .event-table th:first-child,
.brd-final-table .event-table td:first-child {
  width: 44px;
  padding-left: 4px;
  padding-right: 4px;
}
.brd-final-table .event-table th:nth-child(2),
.brd-final-table .event-table td:nth-child(2),
.brd-final-table .event-table th:nth-child(3),
.brd-final-table .event-table td:nth-child(3) {
  width: 36%;
}
.brd-final-table .event-table th:nth-child(4),
.brd-final-table .event-table td:nth-child(4) {
  width: 66px;
  padding-left: 4px;
  padding-right: 4px;
  text-align: right;
}
.event-ability,
.event-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.event-ability span,
.event-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-ability strong {
  margin-left: auto;
}
.event-ability.icon-value {
  display: inline-flex;
  width: 100%;
  justify-content: flex-start;
}
.event-ability.icon-value strong {
  margin-left: 8px;
}
.event-stack {
  display: grid;
  gap: 6px;
}
.event-chip {
  max-width: 100%;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}
.event-chip strong {
  margin-left: auto;
}
.event-row {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.event-main {
  font-weight: 800;
  color: var(--text);
}
.sub-events {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
.sub-events div,
.icon-title,
.event-main,
.tiny {
  overflow-wrap: anywhere;
}
.icon-title {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 34px;
  min-width: 0;
  max-width: 100%;
}
.blm-lethargy-title {
  gap: 7px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(16px, 0.92vw, 22px);
}
.blm-lethargy-title .ability-icon {
  flex: 0 0 auto;
}
.dual-icon-title {
  flex-wrap: wrap;
}
.dual-icon-title .ability-icon {
  width: 28px;
  height: 28px;
}
.title-plus {
  color: var(--muted);
}
.shared-action-panel .metric-grid {
  grid-template-columns: 1fr;
  margin-bottom: 10px;
}
.job-report {
  margin-top: 18px;
}
app-metric-grid,
app-value-bar {
  display: block;
}
app-value-bar + app-value-bar,
app-value-bar + app-metric-grid,
app-metric-grid + app-value-bar,
app-value-bar + .event-table-wrap,
.event-table-wrap + app-value-bar {
  margin-top: 16px;
}
.job-report app-value-bar + app-metric-grid,
.job-report app-metric-grid + app-value-bar,
.job-report .metric-grid + app-value-bar,
.job-report app-value-bar + .event-table-wrap,
.job-report .event-table-wrap + app-value-bar {
  margin-top: 18px;
}
.value-bar-block {
  display: grid;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid rgba(185, 215, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}
.value-bar-empty {
  padding: 17px;
  border: 1px solid rgba(185, 215, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.value-bar-block + .value-bar-block,
.value-bar-block + .value-bar-empty,
.value-bar-empty + .value-bar-block,
.value-bar-empty + .value-bar-empty,
.value-bar-block + .event-table-wrap,
.event-table-wrap + .value-bar-block {
  margin-top: 16px;
}
.job-report .value-bar-block + .event-table-wrap,
.job-report .event-table-wrap + .value-bar-block,
.job-report .metric-grid + .event-table-wrap,
.job-report .metric-grid + .value-bar-block {
  margin-top: 18px;
}
.value-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--soft);
  font-weight: 800;
  line-height: 1.25;
}
.value-bar-header span {
  min-width: 0;
  flex: 1 1 150px;
}
.value-bar-header strong {
  flex: 0 0 auto;
  white-space: nowrap;
}
.value-bar {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 111, 125, 0.38);
}
.value-bar-good {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(110, 231, 162, 0.95),
      rgba(87, 199, 255, 0.82));
}
.range-bar {
  position: relative;
  width: 96px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}
.range-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(110, 231, 162, 0.95),
      rgba(87, 199, 255, 0.82));
}
.hp-percent-bar {
  position: relative;
  width: 96px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}
.hp-percent-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(110, 231, 162, 0.95),
      rgba(255, 189, 89, 0.9));
}
.value-bar-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.value-bar-text .value-ability {
  display: inline;
}
.value-bar-text .value-ability-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 4px;
}
.value-bar-text .icon-title {
  display: inline-flex;
  gap: 4px;
  overflow-wrap: normal;
}
.value-bar-text .icon-title .ability-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  font-size: 8px;
}
.drg-window-summary {
  margin: -2px 0 12px;
}
.wyrmwind-table {
  max-height: 620px;
}
.wyrmwind-table .event-table th:first-child,
.wyrmwind-table .event-table td:first-child {
  width: 34px;
  padding-left: 4px;
  padding-right: 4px;
}
.wyrmwind-table .event-table th:nth-child(2),
.wyrmwind-table .event-table td:nth-child(2) {
  width: 42%;
}
.wyrmwind-table .event-table th:nth-child(3),
.wyrmwind-table .event-table td:nth-child(3) {
  width: 54px;
  padding-left: 4px;
  padding-right: 4px;
}
.wyrmwind-table .event-table th:nth-child(4),
.wyrmwind-table .event-table td:nth-child(4) {
  width: 76px;
  padding-left: 4px;
  padding-right: 4px;
}
.wyrmwind-table .player-ref {
  align-items: flex-start;
  gap: 4px;
}
.wyrmwind-table .player-ref > span:last-child {
  white-space: normal;
  text-overflow: clip;
}
.sge-kardia-table .event-table th,
.sge-kardia-table .event-table td,
.sge-pneuma-table .event-table th,
.sge-pneuma-table .event-table td,
.sge-icarus-table .event-table th,
.sge-icarus-table .event-table td,
.sge-mesotes-table .event-table th,
.sge-mesotes-table .event-table td {
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11.5px;
}
.sge-kardia-table .event-table th:first-child,
.sge-kardia-table .event-table td:first-child {
  width: 38%;
}
.sge-kardia-table .event-table th:nth-child(2),
.sge-kardia-table .event-table td:nth-child(2) {
  width: 48px;
}
.sge-kardia-table .event-table th:nth-child(3),
.sge-kardia-table .event-table td:nth-child(3),
.sge-kardia-table .event-table th:nth-child(4),
.sge-kardia-table .event-table td:nth-child(4) {
  width: 82px;
}
.sge-pneuma-table .event-table th:first-child,
.sge-pneuma-table .event-table td:first-child,
.sge-mesotes-table .event-table th:first-child,
.sge-mesotes-table .event-table td:first-child {
  width: 42px;
}
.sge-pneuma-table .event-table th:nth-child(2),
.sge-pneuma-table .event-table td:nth-child(2),
.sge-pneuma-table .event-table th:nth-child(5),
.sge-pneuma-table .event-table td:nth-child(5),
.sge-mesotes-table .event-table th:nth-child(2),
.sge-mesotes-table .event-table td:nth-child(2),
.sge-mesotes-table .event-table th:nth-child(4),
.sge-mesotes-table .event-table td:nth-child(4) {
  width: 52px;
  text-align: center;
}
.sge-pneuma-table .event-table th:nth-child(3),
.sge-pneuma-table .event-table td:nth-child(3),
.sge-pneuma-table .event-table th:nth-child(4),
.sge-pneuma-table .event-table td:nth-child(4),
.sge-pneuma-table .event-table th:nth-child(6),
.sge-pneuma-table .event-table td:nth-child(6),
.sge-mesotes-table .event-table th:nth-child(5),
.sge-mesotes-table .event-table td:nth-child(5) {
  width: 74px;
}
.sge-mesotes-table .event-table th:nth-child(3),
.sge-mesotes-table .event-table td:nth-child(3) {
  width: 56px;
  text-align: center;
}
.sge-icarus-table .event-table th:first-child,
.sge-icarus-table .event-table td:first-child {
  width: 44px;
}
.sge-icarus-table .event-table th:nth-child(3),
.sge-icarus-table .event-table td:nth-child(3) {
  width: 74px;
}
.sge-kardia-table .player-ref,
.sge-icarus-table .player-ref {
  align-items: flex-start;
  gap: 4px;
}
.sge-kardia-table .player-ref > span:last-child,
.sge-icarus-table .player-ref > span:last-child {
  white-space: normal;
  text-overflow: clip;
}
.eventide-combo-table .event-table th:first-child,
.eventide-combo-table .event-table td:first-child {
  width: 58px;
}
.eventide-combo-table .event-table th:nth-child(3),
.eventide-combo-table .event-table td:nth-child(3),
.eventide-combo-table .event-table th:nth-child(4),
.eventide-combo-table .event-table td:nth-child(4) {
  width: 92px;
  text-align: right;
}
.war-primal-scream-table .event-table th:first-child,
.war-primal-scream-table .event-table td:first-child {
  width: 54px;
}
.war-primal-scream-table .event-table th:nth-child(2),
.war-primal-scream-table .event-table td:nth-child(2) {
  width: 58%;
}
.war-primal-scream-table .event-table th:nth-child(3),
.war-primal-scream-table .event-table td:nth-child(3),
.war-primal-scream-table .event-table th:nth-child(4),
.war-primal-scream-table .event-table td:nth-child(4),
.war-primal-scream-table .event-table th:nth-child(5),
.war-primal-scream-table .event-table td:nth-child(5) {
  width: 82px;
  text-align: right;
}
.war-primal-scream-table .sequence-icons {
  gap: 3px;
  flex-wrap: wrap;
  min-width: 0;
}
.war-primal-scream-table .sequence-icons .ability-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}
.war-primal-scream-table .sequence-arrow {
  font-size: 10px;
  margin: 0 1px;
}
.smn-combo-table .event-table th:first-child,
.smn-combo-table .event-table td:first-child {
  width: 64px;
}
.smn-combo-table .event-table th:nth-child(2),
.smn-combo-table .event-table td:nth-child(2) {
  width: 68%;
}
.smn-combo-table .event-table th:nth-child(3),
.smn-combo-table .event-table td:nth-child(3) {
  width: 96px;
  text-align: right;
}
.smn-combo-table .sequence-icons {
  gap: 3px;
  flex-wrap: wrap;
  min-width: 0;
}
.smn-combo-table .sequence-icons .ability-icon {
  width: 24px;
  height: 24px;
}
.smn-megaflare-table {
  max-height: 188px;
}
.rdm-southern-cross-table .event-table th,
.rdm-southern-cross-table .event-table td {
  padding-left: 5px;
  padding-right: 5px;
}
.rdm-southern-cross-table .event-table th:first-child,
.rdm-southern-cross-table .event-table td:first-child {
  width: 45px;
}
.rdm-displacement-table {
  max-height: 344px;
}
.rdm-embolden-table,
.rdm-prefulgence-table {
  max-height: 185px;
}
.pct-first-subtitle {
  margin-top: 0;
}
.pct-combo-table,
.pct-muse-table,
.pct-lb-table {
  max-height: 195px;
}
.pct-combo-table .event-table th:first-child,
.pct-combo-table .event-table td:first-child {
  width: 46px;
}
.pct-combo-table .event-table th:nth-child(2),
.pct-combo-table .event-table td:nth-child(2) {
  width: 40%;
}
.pct-combo-table .sequence-icons,
.pct-star-prism-table .sequence-icons {
  gap: 3px;
  flex-wrap: wrap;
  min-width: 0;
}
.pct-combo-table .sequence-icons .ability-icon,
.pct-star-prism-table .sequence-icons .ability-icon {
  width: 24px;
  height: 24px;
}
.pct-star-prism-table .event-table th:first-child,
.pct-star-prism-table .event-table td:first-child {
  width: 46px;
}
.pct-star-prism-table .event-table th:nth-child(4),
.pct-star-prism-table .event-table td:nth-child(4) {
  width: 38%;
}
.blm-wreath-table,
.blm-star-table {
  max-height: 190px;
}
.blm-wreath-table {
  overflow-x: hidden;
}
.blm-wreath-table .event-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}
.blm-wreath-table .event-table th,
.blm-wreath-table .event-table td {
  padding-left: 8px;
  padding-right: 8px;
  white-space: normal;
}
.blm-wreath-table .event-table th:nth-child(1),
.blm-wreath-table .event-table td:nth-child(1) {
  width: 11%;
}
.blm-wreath-table .event-table th:nth-child(2),
.blm-wreath-table .event-table td:nth-child(2) {
  width: 12%;
}
.blm-wreath-table .event-table th:nth-child(3),
.blm-wreath-table .event-table td:nth-child(3),
.blm-wreath-table .event-table th:nth-child(4),
.blm-wreath-table .event-table td:nth-child(4) {
  width: 17%;
}
.blm-wreath-table .event-table th:nth-child(5),
.blm-wreath-table .event-table td:nth-child(5),
.blm-wreath-table .event-table th:nth-child(6),
.blm-wreath-table .event-table td:nth-child(6) {
  width: 14%;
}
.blm-wreath-table .event-table th:nth-child(7),
.blm-wreath-table .event-table td:nth-child(7) {
  width: 15%;
}
.blm-am-table {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  max-height: var(--table-scroll-max);
  overflow-x: scroll !important;
  overflow-y: auto;
  padding-bottom: 10px;
  scrollbar-gutter: stable both-edges;
}
.blm-am-table .event-table {
  width: 980px !important;
  min-width: 980px;
  max-width: none;
  table-layout: fixed;
}
.blm-am-table .event-table th,
.blm-am-table .event-table td {
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
}
.blm-am-table .event-table th:nth-child(1),
.blm-am-table .event-table td:nth-child(1) {
  width: 58px;
}
.blm-am-table .event-table th:nth-child(2),
.blm-am-table .event-table td:nth-child(2) {
  width: 190px;
}
.blm-am-table .event-table th:nth-child(3),
.blm-am-table .event-table td:nth-child(3) {
  width: 76px;
}
.blm-am-table .event-table th:nth-child(n+4),
.blm-am-table .event-table td:nth-child(n+4) {
  width: 96px;
  text-align: center;
}
.blm-am-table .player-ref {
  white-space: nowrap;
}
.mch-wildfire-table .event-table th:first-child,
.mch-wildfire-table .event-table td:first-child,
.mch-overheated-table .event-table th:first-child,
.mch-overheated-table .event-table td:first-child {
  width: 44px;
}
.mch-wildfire-table .event-table th:nth-child(4),
.mch-wildfire-table .event-table td:nth-child(4) {
  width: 35%;
}
.mch-overheated-table .event-table th:nth-child(2),
.mch-overheated-table .event-table td:nth-child(2) {
  width: 55%;
}
.mch-overheated-table .event-table th:nth-child(3),
.mch-overheated-table .event-table td:nth-child(3) {
  width: 70px;
}
.mch-overheated-table .event-table th:nth-child(4),
.mch-overheated-table .event-table td:nth-child(4) {
  width: 46px;
}
.mch-wildfire-table .sequence-icons,
.mch-overheated-table .sequence-icons {
  gap: 3px;
  flex-wrap: wrap;
  min-width: 0;
}
.sch-sepharism-table .event-table th:first-child,
.sch-sepharism-table .event-table td:first-child {
  width: 42px;
}
.sch-sepharism-table .event-table th:nth-child(2),
.sch-sepharism-table .event-table td:nth-child(2),
.sch-sepharism-table .event-table th:nth-child(3),
.sch-sepharism-table .event-table td:nth-child(3) {
  width: 58px;
}
.sch-sepharism-table .event-table th:nth-child(4),
.sch-sepharism-table .event-table td:nth-child(4) {
  width: auto;
}
.sch-sepharism-table .sequence-icons {
  flex-wrap: wrap;
  gap: 3px;
}
.value-number {
  color: var(--text);
  font-weight: 800;
}
.value-ability {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fde68a;
  font-weight: 800;
}
.value-ability-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.value-ability-icon img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.value-ability .ability-icon,
.value-ability .icon-fallback {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  vertical-align: middle;
}
.native-hover-tooltip {
  position: fixed;
  z-index: 10000;
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 9px 11px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.98);
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  box-shadow: var(--shadow);
  pointer-events: none;
}
.native-hover-tooltip div:first-child {
  color: #fde68a;
  font-weight: 800;
}
.sequence-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.generic-subsection,
.generic-table-block {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.generic-object-cell {
  display: grid;
  gap: 3px;
  min-width: 180px;
  color: var(--muted);
  font-size: 12px;
}
.generic-object-cell strong {
  color: var(--soft);
}
.subsection-title {
  margin: 20px 0 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}
.sequence-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}
.sequence-time {
  color: var(--muted);
  font-weight: 800;
}
.sequence-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
.sequence-icons .ability-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.sequence-arrow {
  color: var(--muted);
  font-size: 12px;
}
.sequence-damage {
  color: var(--text);
  white-space: nowrap;
}
.empty-state {
  padding: 26px;
  color: var(--muted);
  text-align: center;
}
.compare-header {
  margin-bottom: 16px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.compare-match {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.compare-match-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
  min-height: 52px;
}
.compare-match-meta strong {
  color: var(--text);
}
.compare-player-name {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-weight: 700;
}
.compare-player-name .job-icon,
.compare-player-name .icon-fallback {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 9px;
}
.compare-panel-host {
  min-width: 0;
}
.compare-panel-host .job-report-view,
.compare-panel-host .job-report {
  min-width: 0;
}
.compare-panel-host .section-grid,
.compare-panel-host .split {
  grid-template-columns: 1fr !important;
  gap: 0;
  margin: 0;
}
.compare-panel-host .section-grid > *,
.compare-panel-host .split > * {
  grid-column: auto !important;
}
.compare-panel-host .job-report-view.compact-view .job-report {
  max-width: none;
}
.compare-panel-host .panel {
  height: auto;
}
.player-ref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
  color: var(--soft);
  font-weight: 700;
  vertical-align: middle;
}
.player-ref > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  word-break: normal;
}
.event-table .player-ref > span:last-child {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.event-table th .player-ref,
.event-table td .player-ref {
  overflow-wrap: normal;
  word-break: normal;
  align-items: flex-start;
}
.player-ref .job-icon,
.player-ref .icon-fallback {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  font-size: 8px;
  flex: 0 0 auto;
}
.player-ref-blue,
.player-ref-ally {
  color: var(--accent);
}
.player-ref-red,
.player-ref-enemy {
  color: var(--bad);
}
.timeline-check .player-ref {
  color: inherit;
}
.timeline-check .player-ref-blue,
.timeline-check .player-ref-ally {
  color: var(--accent);
}
.timeline-check .player-ref-red,
.timeline-check .player-ref-enemy {
  color: var(--bad);
}
.error {
  margin-top: 14px;
  color: var(--bad);
}
@media (max-width: 980px) {
  .upload-layout,
  .page-header,
  .section-grid,
  .drg-grid,
  .gnb-grid,
  .rdm-grid,
  .pct-grid,
  .blm-grid,
  .mch-grid,
  .dnc-grid,
  .whm-grid,
  .split,
  .shared-action-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .job-report-view.report-view .job-report > .section-grid {
    grid-template-columns: 1fr;
  }
  .player-report-header .header-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .dnc-wide-panel {
    grid-column: span 1;
  }
  .dnc-dance-columns {
    grid-template-columns: 1fr;
  }
  .recovery-action-pair {
    grid-template-columns: 1fr;
  }
  .panel-wide {
    grid-column: auto;
  }
  .pct-muses-panel {
    grid-column: auto;
  }
  .mch-analysis-panel {
    grid-column: auto;
  }
  .mch-analysis-quadrants {
    grid-template-columns: 1fr;
  }
  .double-box-grid {
    grid-template-columns: 1fr;
  }
  .pct-muse-columns {
    grid-template-columns: 1fr;
  }
  .pie-layout {
    grid-template-columns: 1fr;
  }
  .match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-scoreboard-grid {
    grid-template-columns: 1fr;
  }
  .score-table {
    min-width: 0;
  }
  .table-scroll {
    overflow-x: hidden;
  }
}
@media (max-width: 640px) {
  .app-shell {
    width: min(100% - 20px, 1440px);
    padding-top: 16px;
  }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .match-grid {
    grid-template-columns: 1fr;
  }
  .upload-copy h1 {
    font-size: 42px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
