
/* Table container */
.project-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Table rows */
.project-table tr {
  border-bottom: 1px solid #ddd;
}

/* Alternating row colors */
.project-table tr:nth-child(even) {
  background-color: #f9e0e0;
}

.project-table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* First line: ID and location */
.project-table .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.95em;
  color: #555;
  padding: 8px 12px;
}

/* Second line: clickable title */
.project-table .title {
  padding: 4px 12px 12px;
}

.project-table .title a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 1.1em;
}

.project-table .title a:hover {
  text-decoration: underline;
}
