.html-sitemap-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 1rem 0;
}

.sitemap-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

.sitemap-section ul {
  padding-left: 0 !important;
  list-style-type: disc;
  margin-top: 0;
}

.sitemap-section li {
  margin-bottom: 6px;
}

.sitemap-section a {
  text-decoration: none;
  color: #0073aa;
  font-size: 14px;
}

.sitemap-section a:hover {
  text-decoration: underline;
}

/* Style for the block preview in the editor */
.html-sitemap-preview {
    border: 1px dashed #ccc;
    padding: 1rem;
    background-color: #f8f9fa;
    color: #444;
}
.html-sitemap-preview p {
    font-size: 14px;
    margin-bottom: 0;
}