/**
 * @file
 * UH Design System fixes for Drupal integration
 *
 * Fixes z-index conflicts between UH Design System ribbon and Drupal admin toolbar
 */

/* Drupal admin toolbar has z-index: 501 by default */
/* UH Design System ribbon has z-index: 500 */
/* Ensure admin toolbar stays on top */

#toolbar-administration {
  z-index: 501 !important;
}

/* Ensure the ribbon doesn't cover admin toolbar tray */
body.toolbar-horizontal.toolbar-tray-open ds-ribbon {
  z-index: 499 !important;
}

body.toolbar-vertical.toolbar-tray-open ds-ribbon {
  z-index: 499 !important;
}

/* Keep theme header below admin toolbar too */
.header-wrapper {
  z-index: 400;
}

