﻿/* Layout + wrapping */
.k-panelbar .k-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: normal;
}

/* Hide Kendo default icons */
.k-panelbar .k-icon {
    display: none;
}

/* Your explicit icon */
.omc-menu-icon {
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Allow wrapping */
.omc-menu-text {
    white-space: normal;
    line-height: 1.3;
}

/* ---------------------------------------------------------------
   kendo-scope
   Prevents Bootstrap 5's .collapse utility rule (display:none
   !important) from hiding Kendo TreeView child node groups.
   Apply class="kendo-scope" to any container that wraps a
   Kendo TreeView (or other Kendo widget that uses .collapse
   internally for expand/collapse state).
--------------------------------------------------------------- */
.kendo-scope .collapse {
    display: block !important;
}