/* IT-SCHNITTSTELLE P1.4F
   Definitiver Listen-Fix für /it-projekt-pruefen
   Problem: Marker überlagert ersten Buchstaben durch alte/global CSS-Regeln.
   Lösung: native Marker abschalten und eigenes, absolut positioniertes Quadrat verwenden.
   Nur innerhalb Container uid 773.
*/

#c773 ul {
    list-style: none !important;
    padding-left: 0 !important;
}

#c773 ul > li {
    position: relative !important;
    display: block !important;
    padding-left: 1.35rem !important;
    text-indent: 0 !important;
}

#c773 ul > li::marker {
    content: "" !important;
}

#c773 ul > li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.72em !important;
    width: 0.38rem !important;
    height: 0.38rem !important;
    transform: translateY(-50%) !important;
    background: var(--lp-brand, #006b8f) !important;
}

/* Ergebnisblock und Prüfliste explizit linksbündig */
#c773 #c768 ul,
#c773 #c769 ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
}