.transmission-stack {
  position: fixed;
  top: 182px;
  left: calc(100% - 640px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 370px;
  max-height: calc(100vh - 222px);
  overflow-y: auto;
  z-index: 6;
  pointer-events: none;
}
.transmission-stack > * {
  flex: 0 0 auto;
  pointer-events: auto;
}
.transmission {
  width: 294px;
  padding: 0;
  overflow: hidden;
  border-color: #477ba0;
  background: rgba(6, 19, 30, 0.97);
  box-shadow: 0 0 24px #55b9ed18;
  transition:
    width 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}
.transmission.is-alerting {
  animation: transmission-alert 900ms ease-in-out 3;
}
.transmission.is-minimized {
  width: 58px;
  border-color: #33566d;
  box-shadow: 0 0 14px #55b9ed12;
}
.transmission.is-minimized .transmission-header {
  padding: 10px;
}
.transmission.is-minimized .transmission-heading,
.transmission.is-minimized .transmission-indicator {
  display: none;
}
.transmission.is-minimized .transmission-insignia {
  flex-basis: 34px;
  height: 34px;
  font-size: 20px;
}
.transmission.is-minimized.is-expiring {
  border-color: var(--tx-color, #d9b35a);
  animation: transmission-badge-expiry 600ms ease-in-out infinite;
}
@keyframes transmission-alert {
  0%,
  100% {
    border-color: #477ba0;
    box-shadow: 0 0 24px #55b9ed18;
  }
  50% {
    border-color: #8cddff;
    box-shadow:
      0 0 18px #62cfff88,
      inset 0 0 18px #3caee533;
  }
}
@keyframes transmission-badge-expiry {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 14px color-mix(in srgb, var(--tx-color, #d9b35a) 20%, transparent);
  }
  50% {
    opacity: 0.45;
    box-shadow: 0 0 22px color-mix(in srgb, var(--tx-color, #d9b35a) 67%, transparent);
  }
}
.transmission.is-open {
  width: 370px;
}
.transmission-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  padding: 14px;
  text-align: left;
  background: transparent;
}
.transmission-insignia {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  height: 36px;
  border: 2px solid var(--tx-color, #d9b35a);
  border-radius: 50%;
  color: var(--tx-color, #d9b35a);
  font-size: 24px;
  font-weight: 800;
  box-shadow: inset 0 0 0 3px #102f48;
}
.transmission-heading {
  display: grid;
  gap: 5px;
  flex: 1;
}
.transmission-heading strong {
  color: #d7efff;
  font-size: 11px;
  letter-spacing: 1px;
}
.transmission-heading small {
  color: #8eafc3;
  font-size: 10px;
  letter-spacing: 0.7px;
}
.transmission-indicator {
  color: var(--tx-color, #d9b35a);
  font-size: 18px;
}
.transmission-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 260ms ease,
    opacity 200ms ease,
    visibility 260ms;
}
.is-open .transmission-body {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}
.transmission-content {
  min-height: 0;
  overflow: hidden;
}
.is-open .transmission-content {
  max-height: calc(100vh - 270px);
  overflow-y: auto;
}
.transmission-content > * {
  margin: 0 18px 16px;
}
.transmission-sender {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #304957;
  padding-top: 16px;
}
.transmission-sender img {
  width: 104px;
  height: 132px;
  flex: 0 0 104px;
  object-fit: cover;
  object-position: center;
  background: #102333;
  border: 1px solid #304957;
}
.transmission-sender > div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.transmission-sender small,
.transmission-sender span {
  font-size: 9px;
  letter-spacing: 1px;
  color: #8eafc3;
}
.transmission-sender h3 {
  margin: 8px 0;
  font-size: 16px;
}
.transmission-content h4 {
  font-size: 14px;
  color: var(--tx-color, #d9b35a);
}
.transmission-content p {
  font-size: 13px;
  line-height: 1.7;
  color: #c3d3df;
}
.transmission-content label {
  display: block;
  font-size: 10px;
}
.transmission-content select {
  width: 100%;
  margin-top: 6px;
}
.transmission-actions {
  display: flex;
  gap: 8px;
}
.transmission-actions button {
  padding: 10px;
  font-size: 10px;
}
.transmission-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.transmission-offer button {
  flex: 1;
}
.transmission-offer small {
  flex-basis: 100%;
  opacity: 0.75;
}
.pilot-profile {
  width: 370px;
  padding: 0;
  overflow: hidden;
  border-color: #477ba0;
  background: rgba(6, 19, 30, 0.97);
  box-shadow: 0 0 24px #55b9ed18;
}
.transmission + .pilot-profile {
  border-top: 0;
}
.pilot-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.pilot-profile-header button {
  padding: 3px 7px;
  color: #d9b35a;
  border: 0;
  background: transparent;
  font-size: 18px;
}
.pilot-profile-content {
  border-top: 1px solid #304957;
  padding: 16px 18px 18px;
}
.pilot-profile-content .transmission-sender {
  margin: 0 0 18px;
  padding-top: 0;
  border-top: 0;
}
.pilot-profile-stats {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-top: 1px solid #304957;
}
.pilot-profile-stats small,
.pilot-profile-syndicate small,
.pilot-profile-syndicate span {
  color: #8eafc3;
  font-size: 9px;
  letter-spacing: 1px;
}
.pilot-profile-stats strong {
  color: #d9b35a;
  font-size: 16px;
}
.pilot-profile-syndicate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid #304957;
}
.pilot-profile-syndicate-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px dashed #477ba0;
  background: #102333;
}
.pilot-profile-syndicate > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.pilot-profile-syndicate strong {
  overflow-wrap: anywhere;
}
.tracked-signal {
  display: grid;
  gap: 4px;
}
.tracked-signal small {
  color: #d9b35a;
  font-size: 10px;
}
.tracked-signal button {
  padding: 3px 6px;
  margin-left: 8px;
  font-size: 9px;
}
@media (max-width: 1050px) {
  .transmission-stack {
    left: calc(100% - 590px);
    top: 195px;
    width: 330px;
    max-height: calc(100vh - 235px);
  }
  .transmission {
    width: 275px;
  }
  .transmission.is-open {
    width: 330px;
  }
  .transmission.is-minimized {
    width: 58px;
  }
  .pilot-profile {
    width: 330px;
  }
}
@media (max-width: 700px) {
  .transmission-stack {
    top: 270px;
    left: 16px;
    right: auto;
    width: min(330px, calc(100vw - 32px));
    max-height: calc(100vh - 310px);
  }
  .transmission,
  .transmission.is-open,
  .pilot-profile {
    width: 100%;
  }
  .transmission.is-minimized {
    width: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .transmission,
  .transmission-body {
    transition: none;
  }
  .transmission.is-alerting {
    animation: none;
  }
  .transmission.is-minimized.is-expiring {
    animation: none;
    border-color: var(--tx-color, #d9b35a);
  }
}
.breach-hud {
  display: flex;
  gap: 14px;
  padding: 5px 11px;
  border-color: #477ba0;
  pointer-events: none;
}
.breach-hud div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.breach-hud small {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #a6b6c6;
}
.breach-hud strong {
  font-size: 15px;
  font-weight: 600;
  color: #d8ecfa;
}
.contacts .signal-disrupted {
  margin: 10px 0 2px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #d9b35a;
  animation: signal-flicker 1.4s steps(2, end) infinite;
}
@keyframes signal-flicker {
  50% {
    opacity: 0.45;
  }
}
.transmission-sender .transmission-portrait-blank {
  width: 104px;
  height: 132px;
  flex: 0 0 104px;
  background: #102333;
  border: 1px solid #304957;
}
.breach-scoreboard {
  position: fixed;
  /* Just left of the sector and navigation column on the right. */
  top: 105px;
  right: 261px;
  width: 250px;
  max-width: calc(100vw - 300px);
  max-height: min(60vh, 360px);
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-color: #477ba0;
  z-index: 7;
}
.breach-scoreboard header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breach-scoreboard header button {
  background: none;
  border: 0;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
}
.breach-scoreboard ol {
  list-style: none;
  margin: 8px 0 6px;
  padding: 0 6px 0 0;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.breach-scoreboard li {
  display: grid;
  grid-template-columns: 2.2em 1fr auto;
  gap: 8px;
  padding: 3px 0;
}
.breach-scoreboard li.is-you {
  color: #d8ecfa;
  font-weight: 600;
}
