.domain-list-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: .8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #cfcde4;
  border-top: var(--nav-border-color) solid 1px;

}

.domain-section {
  margin-top: 30px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: #cfcde4;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.domain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 10px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.domain-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  color: #cfcde4;
}

.domain-card.primary-card {
  background: linear-gradient(145deg, rgba(133, 51, 237, 0.1), rgba(0, 142, 254, 0.05));
  border: 1px solid rgba(133, 51, 237, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-label {
  font-size: 13px;
  color: #888899;
  min-width: 50px;
}

.domain-link,
.domain-link:visited,
.domain-link:hover,
.domain-link:focus,
.domain-link:active {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.card-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.latency {
  font-size: 12px;
  color: #888899;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.status-dot.good {
  background-color: #4cd964;
  box-shadow: 0 0 6px rgba(76, 217, 100, 0.4);
}

.status-dot.warning {
  background-color: #ffcc00;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}

.status-dot.error {
  background-color: #ff3b30;
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.4);
}

.domain-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #666;
}

.highlight-link {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
  border-bottom: 1px solid #666;
}

@media (max-width: 480px) {
  .card-label {
    font-size: 12px;
    min-width: 40px;
  }

  .domain-link {
    font-size: 15px;
  }

  .domain-card {
    padding: 14px 15px;
  }
}