/* Style the main sitemap list */
.blaze-custom-sitemap-list {
    list-style-type: none; /* Remove default list bullets */
    padding-left: 0; /* Remove default padding */
    font-family: Arial, sans-serif;
}

/* Style each list item */
.blaze-custom-sitemap-list li {
    margin: 8px 0; /* Add some space between items */
    font-size: 16px; /* Set the font size */
}

/* Style parent page links */
.blaze-custom-sitemap-list li a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold; /* Bold for parent pages */
}

/* Hover state for links */
.blaze-custom-sitemap-list li a:hover {
    text-decoration: underline;
    color: #005177;
}

/* Child pages - indent them to show hierarchy */
.blaze-custom-sitemap-list ul {
    list-style-type: none; /* Remove default list bullets */
    padding-left: 20px; /* Indent child pages */
    border-left: 2px solid #ccc; /* Add a subtle vertical line */
    margin: 5px 0; /* Add spacing */
}

/* Style child page links */
.blaze-custom-sitemap-list ul li a {
    font-weight: normal; /* Lighter for child pages */
    color: #005177;
}

/* Hover state for child links */
.blaze-custom-sitemap-list ul li a:hover {
    color: #003354;
}
