/* footer.css */

.site-footer {
  background-color: #1a0a2a;
  padding: 40px 20px;
  color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.footer-table-container {
  overflow-x: auto;
  max-width: 1250px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(160, 9, 87, 0.4);
}

.footer-table {
  width: 100%;
  border-collapse: collapse;
  color: #eee;
  font-size: 14px;
  min-width: 600px;
}

.footer-table thead tr {
  background-color: #333;
}

.footer-table thead th {
  padding: 12px 10px;
  border: 1px solid #444;
  font-weight: 700;
}

.footer-table tbody td {
  padding: 10px 12px;
  border: 1px solid #444;
  vertical-align: middle;
}

/* Generation 1 */
.gen1 {
  background-color: #a00957;
  text-align: center;
  font-weight: 700;
}

.gen1 small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

/* Generation 2 */
.gen2-full {
  background-color: #a00e72;
  text-align: center;
  font-weight: 700;
}

.gen2-full small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

.gen2 {
  font-weight: 700;
}

.gen2-1 {
  background-color: #a0937d;
}

.gen2-2 {
  background-color: #a4907c;
}

.gen2-3 {
  background-color: #9376e0;
  color: #f0e9ff;
}

.gen2-3 small {
  font-weight: 400;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

/* Related lineage */
.related-1 {
  background-color: #bf2c28;
  color: #fff;
  font-weight: 700;
  padding: 12px;
}

.related-1 small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

.related-2 {
  background-color: #54bab9;
  color: #111;
  font-weight: 700;
  padding: 12px;
}

.related-2 small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

/* Residency note */
.residency-note {
  background-color: #333;
  color: #eee;
  font-weight: 600;
  text-align: center;
  padding: 16px 12px;
  border: 1px solid #444;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
}

.residency-note strong {
  color: #ffb74d;
}

.footer-copy {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  color: #bbb;
  font-style: italic;
}

/* Accessibility helper class */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

.footer-table-container {
  overflow-x: auto;
  max-width: 1250px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(160, 9, 87, 0.4);
  padding: 0 10px; /* add padding for small screens */
}

@media (max-width: 600px) {
  .site-footer h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .footer-table {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 11px;
  }

  .residency-note {
    font-size: 13px;
    padding: 12px;
  }
}
.footer-table tbody td:hover {
  background-color: rgba(255, 255, 255, 0.05);
  cursor: default;
  transition: background-color 0.3s ease;
}
