/* Button Section Styling */
.button-section {
  margin: 20px 0;
}

.button-section .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: var(--white);
  padding: 10px;
  border-radius: 10px;
}

/* General Button Styling */
.button {
  margin: 4px;
  width: 100%;
  padding: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:focus {
  outline: none;
}

.button:active {
  transform: translateY(1px); /* Slight depression effect when clicked */
}

/* Individual Button Styles */
.teacher-button {
  background-color: #1e5f99; /* Blue background */
}

.teacher-button:hover {
  background-color: #2a7bc4; /* Lighter blue on hover */
}

.employee-button {
  background-color: #28a745; /* Green background */
}

.employee-button:hover {
  background-color: #34d058; /* Lighter green on hover */
}

.student-button {
  background-color: #ffc107; /* Yellow background */
}

.student-button:hover {
  background-color: #ffca28; /* Lighter yellow on hover */
}

/* Table Section Styling */
.table-section {
  margin: 40px 0;
}

/* Table container */
.table-container {
  margin-bottom: 40px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.info-table th {
  border: 1px solid rgb(222, 226, 230);
  padding: 4.8px 9.6px;
  text-align: center;
  background: rgb(241, 241, 241);
  color: rgb(33, 33, 33);
  font-weight: 700;
  font-size: 20px;
}

.info-table td {
  padding: 4.8px 9.6px;
  text-align: left;
  font-size: 1rem;
  border: 1px solid rgb(222, 226, 230);
}

.info-table td {
  color: #333;
}

.info-table td a {
  color: #1e5f99;
  text-decoration: none;
}

.info-table td a:hover {
  text-decoration: underline;
}

.info-table tr:last-child td {
  border-bottom: none;
}
