/* Base reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Page layout */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f7f8fa;
  color: #2d2d2d;
  line-height: 1.6;
  padding: 40px;
}

/* Center content */
body > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Headings */
h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2933;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
  font-size: 1rem;
}

p.lead {
  font-size: 1.1rem;
  color: #374151;
}

p.sorry {
  font-weight: 500;
  color: #4b5563;
}

/* Table styling */
table.linkstable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.linkrow {
  border-bottom: 1px solid #e5e7eb;
}

.linkrow:last-child {
  border-bottom: none;
}

td {
  padding: 14px 18px;
  vertical-align: middle;
  font-size: 0.95rem;
}

/* Site name column */
td.sitename {
  font-weight: 500;
  width: 30%;
}
td.sitename a {
  color: black;
}

/* Links column */
td.sitelinks {
  color: #6b7280;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Step sheet links stand out slightly */
a.sslink {
  font-weight: 500;
  margin-left: 6px;
}

/* Subtle hover effect for rows */
.linkrow:hover {
  background-color: #f9fafb;
}
