.l-page {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;

  &__main {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  &__tool-header {
    border-bottom: 1px solid color-palette(gray, 50);
  }

  &__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
  }

  &__pagination {
    align-items: center;
    display: flex;
    justify-content: flex-end;
  }

  &__content-controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid color-palette(gray, 50);
  }

  &__sidebar {
    background-color: color-palette(gray, 20);
    border-left: 1px solid color-palette(gray, 40);
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: width 0.2s ease-in-out;
    width: 280px;

    &--collapsed {
      overflow: hidden;
      width: 40px;
    }

    &__content {
      opacity: 1;
      transition: opacity 0.2s ease-in-out;
      width: 280px;

      &--collapsed {
        opacity: 0;
      }
    }
  }
}
