body {
  margin: 0;
  font-family: sans-serif;
  background: #f7f7f7;
  color: #222;
}

/* Header */
.projects-header {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-header h1 {
  margin: 0;
  font-size: 1.6rem;
}

.back-btn {
  text-decoration: none;
  color: #0066ff;
  font-weight: 500;
}

/* Table container */
.projects-container {
  padding: 40px;
}

/* Table */
.projects-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
}

.projects-table th,
.projects-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}

.projects-table th {
  background: #f0f0f0;
  text-align: left;
  font-weight: 600;
}

.projects-table tr:last-child td {
  border-bottom: none;
}

.projects-table tr:hover {
  background: #fafafa;
}