html body { outline: 2px solid lime !important; }
/* Linke Sidebar breiter machen */
.container-component .sidebar-left {
    flex: 0 0 1;       /* entspricht 3 von 12 Spalten */
    max-width: 25%;    /* z. B. 3/12 = 25% */
}

/* Rechte Sidebar schmaler machen */
.container-component .sidebar-right {
    flex: 0 0 2;
    max-width: 16.6667%; /* 2 von 12 */
}

/* Main Content entsprechend anpassen */
.container-component .main {
    flex: 0 0 7;         /* 7 von 12 */
    max-width: 58.3333%;
}
