.toolbar {
  display: flex;
  align-items: center;
  height: 34px;
  border-top: 1px solid var(--color-gray-eee);

  &__title {
    padding-left: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
  }

  &__buttons {
    display: flex;
    flex: 1;
    flex-direction: row-reverse;
    align-items: center;

    height: 34px;
  }
}

.gantt__container {
  position: relative;

  overflow-x: scroll;
  display: grid;
  grid-template-columns: 100px minmax(100px, 1fr);
  flex: 1;

  width: 100%;

  background: var(--color-gray-fff);
  border-left: 1px solid var(--color-gray-eee);
}

.gant-column {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: 34px;
}

.links-column {
  display: inline-block;
}

.cell {
  cursor: pointer;

  overflow: hidden;

  height: 34px;

  border-right: 1px solid var(--color-gray-eee);
  border-bottom: 1px solid var(--color-gray-eee);
  outline: none;

  &-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
  }

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

    width: 100%;
    height: 70%;
    margin: 0 1px;

    background: var(--color-gray-eee);
  }

  &-current-day {
    border-left: 2px solid var(--default-color-red);
  }

  &-text {
  }

  &-overload {
    .cell-text {
      color: white;
    }

    &.cell-content {
      opacity: 0.7;
      background: var(--ds-background-accent-red-subtle);
    }
  }
}

.selected-row > div {
  background-color: #f4f8ff !important;
}

.grid-row {
  display: contents;
}

.header-wrapper {
  height: 70px;
  border-bottom: 1px solid var(--color-gray-eee);
}

:host ::ng-deep mat-form-field.filters__select {
  .mat-form-field-wrapper {
    padding-bottom: 0 !important;

    .mat-form-field-subscript-wrapper,
    .mat-form-field-underline {
      display: none;
    }
  }

  .mat-form-field-infix {
    width: auto;
    padding: 0 !important;
    border-top: 0 !important;
  }

  .mat-select-value {
    max-width: 100%;
  }

  .mat-select-value-text {
    font: var(--default-text-font);
    font-size: 14px;
    color: var(--theme-hack-color, #41516e);
  }
}
