/* Remove table hover background */
tr:hover {
  background-color: initial !important;
}

/* Version number styling in header */
.header-version {
  opacity: 0.7;
  font-size: 0.9em;
  font-weight: 400;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(128, 128, 128, 0.15);
  border-radius: 4px;
  transition: all 0.3s ease;
}

[data-md-color-scheme="slate"] .header-version {
  background: rgba(255, 255, 255, 0.1);
}

/* Unity Asset Store button - Primary CTA */
.header-btn-asset {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 18px !important;
  margin-left: auto;
  margin-right: 12px;
  min-height: 36px;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(25, 118, 210, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.header-btn-asset:hover {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%) !important;
  box-shadow: 0 4px 8px rgba(33, 150, 243, 0.5);
  transform: translateY(-1px);
  animation: none;
}

.header-btn-asset i {
  font-size: 18px;
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.3), 0 0 0 0 rgba(33, 150, 243, 0.6);
  }
  50% {
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.3), 0 0 0 6px rgba(33, 150, 243, 0);
  }
}

/* Discord social link */
.md-header .md-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.md-header .md-social__link i {
  font-size: 18px;
}

.md-header .md-social__link:hover {
  background: rgba(88, 101, 242, 0.2);
  transform: translateY(-1px);
}
