/* student details */
.student-image-container {
  text-align: center;
  margin-bottom: 20px;
}

.student-image {
  max-width: 200px;
  height: auto;
  border-radius: 50%;
}

.student-info p {
  margin: 5px 0;
}

.table-container {
  margin-top: 20px;
  overflow-x: auto;
}

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

th, td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 8px;
}

th {
  background-color: #f2f2f2;
}

h3 {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .student-image {
      max-width: 150px;
  }

  table, th, td {
      font-size: 14px;
      padding: 6px;
  }

  h1, h2, h3 {
      font-size: 1.5em;
  }

  .student-info p {
      font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .student-image {
      max-width: 100px;
  }

  table, th, td {
      font-size: 12px;
      padding: 4px;
  }

  h1, h2, h3 {
      font-size: 1.2em;
  }

  .student-info p {
      font-size: 0.8em;
  }
}
