.sitemap-tree ul {
    list-style-type: none;
    margin: 0;
    padding-left: 20px;
}

.sitemap-tree ul.level-0 {
    padding-left: 0;
}

.sitemap-item {
    margin-bottom: 8px;
    position: relative;
}

.sitemap-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.sitemap-link:hover {
    color: #0056b3;
    /* Brand blue approx */
    text-decoration: underline;
}

.sitemap-item>ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Specific levels styling if needed */
.sitemap-link.level-0 {
    font-weight: 600;
    /* Bold for top level */
    font-size: 18px;
    color: #000;
}

.sitemap-link.level-1 {
    font-size: 16px;
}

.sitemap-link.level-2 {
    font-size: 14px;
    color: #555;
}