/* General body styling */
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #000;
  color: #eee;
}

/* Main heading */
h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

/* Repo section */
.repo {
  margin-top: 30px;
  background: #0b0b0b;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Repo title */
.repo h2 {
  margin-bottom: 15px;
  color: #eee;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

/* Table header */
th {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  text-align: left;
}

/* Table rows */
td {
  padding: 8px;
  border: 1px solid #ddd;
  vertical-align: top;
}

/* Alternating row colors */
tr:nth-child(even) {
  background-color: #0f0f0f;
}

/* Status colors */
.status-open {
  color: #7CFC00;
  font-weight: bold;
}

.status-closed {
  color: #FF6B6B;
  font-weight: bold;
}

/* Links */
a {
  color: #7ec8ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive table */
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  th, td {
    padding: 10px;
  }
  th {
    text-align: right;
  }
  td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: bold;
    text-align: left;
  }
}
