:host(us-scroll-layout) {
  display: block;
  flex: 1;
  min-height: 0;

  .simplebar-track.simplebar-vertical {
    .simplebar-scrollbar::before {
      width: 4px;
      border-radius: 19px;
      background-color: var(--scroll-vertical-scroll-color);
    }
  }

  .simplebar-track.simplebar-horizontal {
    .simplebar-scrollbar::before {
      height: 4px;
      border-radius: 19px;
      background-color: var(--scroll-horizontal-scroll-color);
    }
  }

  .scroll-layout {
    height: 100%;

    &_full-height {
      .simplebar-content {
        height: 100%;
      }
    }
  }

  .simplebar-content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .simplebar-content {
    flex: 1;
  }
}
