body {
    font-family: Arial, sans-serif;
    padding: 20px;
  }

  form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  input, select, button {
    padding: 8px;
    font-size: 16px;
  }

  .tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    color: #333;
  }

  .priority-alta {
    background-color: #f8d7da;
  }

  .priority-media {
    background-color: #fff3cd;
  }

  .priority-baixa {
    background-color: #d4edda;
  }

  .trash-btn {
    margin-left: auto;
    cursor: pointer;
    font-weight: bold;
    color: red;
  }

  .completed {
    text-decoration: line-through;
    opacity: 0.7;
  }

  @media screen and (max-width: 460px) {

    select, button {
      width: 100%;
    }
  }