/* ===== OO Stack =====
   Flexbox-Layout-Komponente als Ersatz für RadzenStack.
   Alle Werte werden per inline style aus dem Code-Behind gesetzt;
   diese Klasse liefert nur das Basis-Display und den Box-Sizing-Reset.
   ===================== */

.oo-stack {
    display: flex;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
}

/* StretchItems: bestimmte direkte Kinder auf flex:1 strecken */
.oo-stack-stretch-start > :first-child                         { flex: 1; min-width: 0; }
.oo-stack-stretch-end   > :last-child                          { flex: 1; min-width: 0; }
.oo-stack-stretch-all   > *                                    { flex: 1; min-width: 0; }
.oo-stack-stretch-middle > :not(:first-child):not(:last-child) { flex: 1; min-width: 0; }
