/* Optimize table display in search results */
.md-search-result__article table {
  font-size: 0.8rem;
  margin: 0.5rem 0;
  width: 100%;
  border-collapse: collapse;
}

.md-search-result__article table th,
.md-search-result__article table td {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--md-default-fg-color--lightest);
}

.md-search-result__article table th {
  background-color: var(--md-default-fg-color--lightest);
  font-weight: 600;
  font-size: 0.75rem;
}

/* Event name column */
.md-search-result__article table td:first-child {
  font-weight: 600;
  font-family: var(--md-code-font-family);
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Description column - allow wrapping but limit height */
.md-search-result__article table td:nth-child(2) {
  max-width: 300px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}

/* Programming info column */
.md-search-result__article table td:nth-child(3) {
  font-family: var(--md-code-font-family);
  font-size: 0.7rem;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Smooth transitions */
.md-search-result__article table tr {
  transition: background-color 0.2s;
}

.md-search-result__article table td {
  transition: background-color 0.2s;
}