/* Custom Sitemap Styles */
:root{
    --wshtmlsitemap-color : #0073aa;
}
.wshtmlsitemap {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wshtmlsitemap li {
    position: relative;
    padding: 8px 12px;
    margin: 15px 0;
    background: #f9f9f9;
    border-left: 4px solid var(--wshtmlsitemap-color); /* WP Blue */
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    list-style: none;
}

.wshtmlsitemap li:hover {
    background: #e9f5fb;
    border-left-color: var(--wshtmlsitemap-color); /* lighter blue */
    transform: translateX(5px);
}

.wshtmlsitemap li a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    display: inline-block;
    width: 100%;
}

.wshtmlsitemap li a:hover {
    color: var(--wshtmlsitemap-color);
}

.wshtmlsitemap ul {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 1px dashed #ccc;
}
