/* --- SYMBOL FOR THE CURRENT/ACTIVE PAGE LINK --- */
/* This rule targets ONLY the link with aria-current="page" */
.sv-defaultlist li a[aria-current="page"]::before {
    content: "\01F56E"; 
    margin-right: 8px;
    color: #000; /* Optional: make the active symbol a different color */
}

/* --- SYMBOL FOR ALL OTHER LINKS --- */
/* This rule targets all links that DO NOT have aria-current="page" */
.sv-defaultlist li a:not([aria-current="page"])::before {
    content: "\25CB"; /* Inactive symbol: Hollow circle (○) */
    margin-right: 8px;
    color: #777; /* Optional: make the inactive symbols a lighter color */
}

/* --- SPACING BETWEEN ALL LINKS --- */
/* This rule applies to all links to ensure consistent spacing */
.sv-defaultlist li a {
   margin-top: 8px; 
   margin-bottom: 8px;
}