body {
  margin: 0;
}
.skip-link {
  position: absolute;
  top: 1rem;
  left: -999px;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.95);
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    left 0.25s ease;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  transform: translateY(-0.5rem);
  outline: 3px solid rgba(56, 189, 248, 0.75);
  outline-offset: 4px;
}
.no-js .copy-data-container {
  display: none;
}
.js-enabled .legacy-table {
  display: none;
}
.legacy-table {
  width: 100%;
  border-collapse: collapse;
}
.legacy-table td,
.legacy-table th {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
}
.legacy-table th {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.7);
}
.legacy-table td {
  font-family: "Courier New", Courier, monospace;
  color: #f8fafc;
}
.copy-button {
  margin-left: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.15);
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e0f2fe;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.copy-button:focus,
.copy-button:hover {
  background: rgba(56, 189, 248, 0.3);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.35);
  outline: 0;
}
.copy-button:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.85);
  outline-offset: 4px;
}
.copy-icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
}
.toast {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 20px);
  bottom: 1.5rem;
  max-width: calc(100% - 2rem);
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.95);
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 30px 80px rgba(14, 165, 233, 0.45);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 2000;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (prefers-reduced-motion: reduce) {
  .copy-button,
  .skip-link,
  .toast {
    transition: none;
  }
}
