.tasks-page {
  display: flex;
  gap: 50px;
  padding: 20px;

  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;

    h1 {
      margin: 0;
    }

    img {
      height: 24px;
      border-radius: 5px;
    }
  }

  .tasks {
    ul {
      padding-left: 0;
      list-style: none;

      li {
        margin-bottom: 5px;
      }
    }

    .inactive {
      text-decoration: line-through;
      color: #ccc;
    }
  }

  .new-task {
    label {
      display: block;
      margin: 0 0 5px 0;
    }

    input[type=text] {
      box-sizing: border-box;
      width: 100%;
      padding: 10px;
      margin: 0 0 20px 0;
      font-size: 16px;
      border-radius: 5px;
      background-color: #fff;
      border: 1px solid #ccc;
    }

    select {
      width: 100%;
      margin: 0 0 20px 0;
      font-size: 16px;
    }

    input[type=submit] {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border-radius: 5px;
      background-color: #fff;
      border: 1px solid #ccc;
      cursor: pointer;

      &:hover {
        background-color: #fafafa;
      }
    }
  }
}