.api-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.9rem;
}
.api-table th {
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid var(--md-sys-color-outline-variant);
  color: var(--md-sys-color-primary);
}
.api-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.api-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  #main-container {
    flex-direction: column;
  }
  #editor-pane {
    height: 50%;
    border-right: none;
    border-bottom: 1px solid var(--md-sys-color-outline-variant);
  }
  #preview-pane {
    height: 50%;
  }
}