@import 'scss/font-family.scss';
@import 'theme/variables.scss';

.todo-container {
  gap: 12px;

  .todo-column {
    min-width: 602.67px;
    max-width: 800px;
    flex: 1;

    .todo-placeholder {
      background-color: $ta-light-grey-5;
      box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
      border-radius: 3px;
      height: 140px;
      transition: background ease-in-out 0.2s;
    }

    .todo-column.dragging-over {
      height: auto;
      min-height: 300px;
      background-color: $white-6;
    }

    &:last-child {
      margin-right: 0;
    }

    .dropShadowClass {
      background-color: rgba(0, 0, 0, 0.1);
      border: 1px dashed $ta-light-grey-6;
      height: 50px;
      border-radius: 4px;
    }

    .heading {
      width: 100%;
      height: 14px;
      padding: 0px 12px;
      gap: 2px;
      .title {
        font-weight: 700;
        font-family: $font-family;
        font-size: 11px;
        line-height: 14px;
        color: $bw6-2;
      }
    }

    .todo-card {
      margin: 8px 2px;
      border-radius: 3px;
      background-color: $white-2;
      box-shadow: 0 1px 4px rgba(162, 162, 162, 0.599);

      &:hover {
        transition: background ease 0.2s;
      }
    }
  }
}
