/*
 * Lotus Portal – scoped CSS overrides
 *
 * Purpose: Fix edge-case UI issues without modifying the main portal.css.
 * Keep this file minimal and narrowly scoped.
 */

/*
 * Assets index: row actions dropdown inside a table.
 *
 * In some environments, global dropdown styling can inadvertently apply
 * max-height/overflow to dropdown menus, which results in an internal
 * scrollbar ("sidebar") even when there is sufficient space.
 *
 * We scope the fix to the Assets index only.
 */

.lt-assets-index .lt-assets-actions-menu {
  max-height: none !important;
  overflow: visible !important;
}

/*
 * Ensure vertical overflow remains visible within the responsive table wrapper.
 * (Bootstrap sets overflow-x for horizontal scroll; we explicitly set overflow-y.)
 */
.lt-assets-index .lt-assets-table-responsive {
  overflow-y: visible;
}
