.seminar-title {
  color: #005587;
  font-size: 1.75rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center; /* :point_left: This centers the text */
}

.note-empty {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

.responsive-table-container {
  overflow-x: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.seminar-table {

   max-width: 60%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  margin-bottom: 2rem;
}
.seminar-table th {
  background-color: #005587;
  color: white;
  text-align: left;
  padding: 10px;
  font-weight: 600;
}
.seminar-table td {
  padding: 10px;
  border-top: 1px solid #ddd;
  vertical-align: top;
}
.seminar-table tr:nth-child(even) td {
  background-color: #f2f2f2;
}

/* Mobile responsiveness remains unchanged */
@media screen and (max-width: 768px) {
  .seminar-table {
    max-width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .seminar-table th,
  .seminar-table td {
    font-size: 14px;
    padding: 8px;
  }
}