.custom-code-block {
  margin: 1.5rem 0;
  border-radius: 6px;
  overflow: hidden;
  font-family: monospace;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.code-header {
  background: #2e2e2e;
  color: #f1f1f1;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.code-tools {
  display: flex;
  gap: 0.5rem;
}

.copy-btn {
  background: none;
  color: #f1f1f1;
  border: 1px solid #888;
  padding: 2px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.85rem;
}

.copy-btn:hover {
  background: #444;
}

.custom-code-block pre {
  background: #1e1e1e;
  color: #f8f8f2;
  padding: 1rem;
  margin: 0;
  overflow-x: auto;
  font-size: 0.9rem;
  white-space: pre-wrap;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.custom-table th,
.custom-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.custom-table th {
  background-color: #f8f8f8;
  font-weight: 600;
}

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