@charset "UTF-8";
/* CSS Document */

/* used for grad_index.php only */



.table-container {
  display: table; /* Makes the div behave like a table */
  width: 800px;
  border-collapse: collapse;
}

.table-header,
.table-row {
  display: table-row; /* Makes the div behave like a table row */
}

.header-cell,
.table-cell {
  display: table-cell; /* Makes the div behave like a table cell */
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
}

.table-header .header-cell {
  font-weight: bold;
  background-color: #f2f2f2;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .table-container {
    display: block; /* Changes to block for stacking on small screens */
  }

  .table-header {
    display: none; /* Hides the header row on small screens */
  }

  .table-row {
    display: block; /* Makes rows stack vertically */
    margin-bottom: 10px;
    border: 1px solid #ccc;
  }

  .table-cell {
    display: block; /* Makes cells stack vertically within rows */
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px;
  }

  .table-cell:last-child {
    border-bottom: none;
  }
}