.sat-info-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #ffd000;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.sat-info-heading__name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sat-info-button {
  display: none;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 208, 0, 0.55);
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.14);
  color: #ffd000;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 208, 0, 0.16);
}

.sat-info-button.is-visible {
  display: inline-grid;
}

.sat-info-button:hover,
.sat-info-button:focus-visible {
  background: #ffd000;
  color: #111;
  outline: none;
}

.sat-info-modal[hidden] {
  display: none;
}

.sat-info-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.sat-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}




.sat-info-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  height: min(86vh, 720px);
  max-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 0, 0.32);
  border-radius: 18px;
  background: rgba(8, 12, 16, 0.97);
  color: #f5f5f5;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.55);
}

.sat-info-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sat-info-modal__title {
  margin: 0;
  color: #ffd000;
  font-size: 1.18rem;
  line-height: 1.25;
}

.sat-info-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 208, 0, 0.88);
  border-radius: 50%;
  background: #ffd000;
  color: #111;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 208, 0, 0.28);
}

.sat-info-modal__close:hover,
.sat-info-modal__close:focus-visible {
  border-color: rgba(255, 208, 0, 0.65);
  color: #ffd000;
  outline: none;
}

.sat-info-tabs {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 16, 0.98);
}

.sat-info-tab {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 208, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f1c8;
  font-weight: 800;
  cursor: pointer;
}

.sat-info-tab--close {
  width: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 50%;
  background: #ffd000;
  border-color: rgba(255, 208, 0, 0.85);
  color: #111;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.sat-info-tab--close:hover,
.sat-info-tab--close:focus-visible {
  background: #fff2a6;
  outline: 2px solid rgba(255, 208, 0, 0.65);
  outline-offset: 2px;
}

.sat-info-tab[aria-selected="true"] {
  background: rgba(255, 208, 0, 0.2);
  border-color: rgba(255, 208, 0, 0.72);
  color: #ffd000;
}

.sat-info-panel {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px 18px 20px;
  line-height: 1.5;
}

.sat-info-panel.is-active {
  display: block;
}

.sat-info-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) 1fr;
  gap: 8px 14px;
}

.sat-info-label {
  color: rgba(255, 255, 255, 0.68);
}

.sat-info-value {
  min-width: 0;
  color: #fff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.sat-info-note {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.sat-info-status-warning {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border: 1px solid rgba(255, 208, 0, 0.72);
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.16);
  color: #ffd000;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  vertical-align: text-bottom;
}

.sat-info-status-note {
  margin: 14px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.sat-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.sat-info-table th,
.sat-info-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.sat-info-table th {
  color: #ffd000;
  font-size: 0.9rem;
}

.sat-info-scroll {
  overflow-x: auto;
}

.sat-info-empty {
  color: rgba(255, 255, 255, 0.72);
}

.sat-info-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.sat-info-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 208, 0, 0.22);
  border-top-color: #ffd000;
  border-radius: 50%;
  animation: sat-info-spin 0.75s linear infinite;
}

@keyframes sat-info-spin {
  to {
    transform: rotate(360deg);
  }
}

.sat-info-source-list {
  margin: 0;
  padding-left: 18px;
}

.sat-info-source-list li + li {
  margin-top: 8px;
}

.sat-info-modal a {
  color: #6ec6ff;
}

@media (max-width: 640px) {
  .sat-info-modal {
    padding: 10px;
    align-items: end;
  }

  .sat-info-modal__dialog {
    height: min(92vh, 720px);
    max-height: 92vh;
    border-radius: 16px;
  }

  .sat-info-modal__head {
    padding: 14px 14px 10px;
  }

  .sat-info-tabs {
    padding-inline: 10px;
  }

  .sat-info-panel {
    padding: 14px;
  }

  .sat-info-grid {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .sat-info-value + .sat-info-label {
    margin-top: 8px;
  }
}




.sat-list-info-button {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-left: 6px;
  padding: 0;
  border: 1px solid rgba(255, 208, 0, 0.58);
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.14);
  color: #ffd000;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
}

.sat-list-info-button:hover,
.sat-list-info-button:focus-visible {
  background: #ffd000;
  color: #111;
  outline: none;
}
