#iss-map {
  height: 60vh;
  border: 6px solid rgba(var(--green-rgb), 0.5);
  border-radius: 10px;
  box-shadow:
    0 0 30px rgba(var(--green-rgb), 0.15),
    inset 0 1px 0 rgba(var(--green-rgb), 0.1);
}

.iss-map-panel {
  flex: 2;
  min-width: 0;
}

.iss-layout {
  display: flex;
  padding: 20px;
  gap: 10px;
}

.iss-content-panel {
  flex: 1;
  padding-right: 30px;
  align-self: flex-start;
}

#iss-astros li {
  list-style: none;
  padding: 10px;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.07);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
}
#iss-position li {
  list-style: none;
  padding: 8px;
  font-family: "Share Tech Mono";
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.05em;
  display: block;
}

#iss-astros li:last-child {
  border-bottom: none;
}
.iss-content-panel h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  margin-top: 20px;
}

#iss-astros,
#iss-position {
  list-style: none;
  padding: 0;
  margin: 0;
}

#iss-astros {
  display: block;
  margin-bottom: 24px;
}

#navbar ul li #tracknav {
  color: var(--green);
  font-weight: bold;
}

nav {
  background: var(--black);
  opacity: 0.8;
}

.page-title {
  color: rgba(var(--green-rgb));
}

/* ***************** ISS INFO LINK ***************** */
#iss-link {
  padding: 20px;
  max-width: 40%;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

#iss-info-link {
  display: inline-block;
  margin-top: 0px;
  color: var(--white);
  font-family: "Share Tech Mono";
  font-size: 18px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-top: 10px;
}

#iss-info-link:hover {
  color: var(--green);
}

#iss-link-headline {
  color: var(--green);
  font-family: "Share Tech Mono";
  font-size: 24px;
}

/* ***************** STAR BG ***************** */

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

#stars-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
