/* Sidebar - Bleibt wie sie ist, aber wir stellen sicher, dass sie links klebt */
.sidebar-sytx {
    width: 280px !important;
    position: fixed !important;
    left: 0 !important;
    top: 80px !important;
    background: #050208 !important;
    height: calc(100vh - 80px) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    z-index: 1000 !important;
}

/* HAUPTBEREICH - Absolute Positionierung gegen die Zentrierung */
#fixed-main-content {
    position: absolute !important;
    left: 280px !important; /* Exakt nach der Sidebar */
    top: 80px !important;   /* Nach dem Header */
    right: 0 !important;    /* Bis ganz nach rechts */
    padding: 60px 40px !important;
    display: block !important; /* Kein Flexbox! */
    text-align: left !important;
    background: #050208 !important; /* Gleiche Hintergrundfarbe */
}

/* Das Grid innerhalb des Hauptbereichs */
.grid-sytx {
    display: block !important; /* Karten untereinander */
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 !important; /* Verhindert das lästige Zentrieren */
}

/* Die Karten selbst */
.card-sytx {
    display: block !important;
    width: 100% !important;
    margin-bottom: 25px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid #9d4edd !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
}

/* Titel linksbündig */
.section-title {
    text-align: left !important;
    margin-left: 0 !important;
    font-size: 4rem;
    font-weight: 900;
    display: block !important;
}