
.students-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

/* Thin separator between students */
.students-table tr.student-divider td {
  padding: 0;
  border-top: 1px solid #e0e0e0;
}

.students-table td {
  vertical-align: top;
  padding: 18px 12px;
}

/* Left column: fixed width, image centered */
.student-img-cell {
  width: 115px;
  min-width: 115px;
  text-align: center;
  padding-right: 18px !important;
}

.student-img-cell img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Right column: all info */
.student-info-cell {
  line-height: 1.6;
}

.student-info-cell .student-name {
  font-weight: bold;
  font-size: 1.05em;
}

.student-info-cell .student-meta {
  color: #555;
  font-size: 0.93em;
  margin-bottom: 4px;
}

.student-info-cell .student-links {
  font-size: 0.9em;
  margin-bottom: 6px;
}

.student-info-cell .student-links a {
  margin-right: 10px;
}

.student-info-cell .student-bio {
  margin-top: 4px;
  font-size: 0.95em;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .students-table,
  .students-table tbody,
  .students-table tr,
  .students-table td {
    display: block;
    width: 100%;
  }
  .student-img-cell {
    padding-bottom: 10px !important;
  }
  .student-img-cell img {
    margin: 0 auto;
  }
}
