/* Enable proper flex sizing for tab content - min-height: 0 allows
   children to shrink below content size, fixing height issues in nested splits */
.tabbed-view-body {
    flex-grow: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.tabbed-view-body > div {
    flex: 1;
    min-height: 0;
}

.form {
    .tabbed-view-body {
        padding: 0.125rem 0.375rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.175);
    }
}
