table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  transition: all 0.3s ease;
  /* Animation for hover effect */
}

th {
  background-color: #f2f2f2;
  text-align: left;
}

.highlight {
  background-color: #e6f7ff;
}

td:hover,
th:hover {
  background-color: #e0e7ff;
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.elective-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.elective-table th,
.elective-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.elective-table th {
  background-color: #f2f2f2;
  text-align: left;
}

.elective-table .highlight {
  background-color: #e6f7ff;
}

@media (max-width: 768px) {

  table,
  .elective-table {
    font-size: 12px;
  }
}
