/* =============================================
   GitHub Repositories Page – Custom Styles
   ============================================= */

.github-repos {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  font-size: 1rem;
}

.github-repos thead th {
  background-color: #24292e;
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.github-repos tbody tr {
  border-bottom: 1px solid #e1e4e8;
  transition: background-color 0.2s;
}

.github-repos tbody tr:last-child {
  border-bottom: none;
}

.github-repos tbody tr:nth-child(even) {
  background-color: #f6f8fa;
}

.github-repos tbody tr:hover {
  background-color: #e8f0fe;
}

.github-repos tbody th {
  padding: 14px 18px;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
  color: #0366d6;
}

.github-repos tbody td {
  padding: 14px 18px;
  vertical-align: middle;
  color: #444;
  line-height: 1.5;
}

.github-repos tbody th a {
  color: #0366d6;
  text-decoration: none;
  font-size: 1.02em;
}

.github-repos tbody th a:hover {
  text-decoration: underline;
}

/* Highlighted intro text – left aligned, with a subtle accent */
.intro-text {
  text-align: left;
  font-size: 1.15em;
  font-weight: 500;
  color: #2c3e50;
  background-color: #f0f7ff;
  padding: 12px 18px;
  border-left: 4px solid #0366d6;
  border-radius: 4px;
  margin-bottom: 2em;
}