@import url('../styles/components/_footer.css');
@import url('../styles/components/_header.css');
@import url('../styles/components/_main.css');
@import url('../styles/components/_responsividade.css');

.listaTarefas {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.tarefa {
  width: 500px;
  height: 50px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.tarefa p {
  margin: 0;
  font-size: 1.2em;
  flex-grow: 1;
  text-align: left;
  padding: 0 10px;
}

.btnRemover {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.play {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.stop {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }


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

  .listaTarefas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .tarefa {
    width: 500px;
    height: 50px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .tarefa p {
    margin: 0;
    font-size: 1.2em;
    flex-grow: 1;
    text-align: left;
    padding: 0 10px;
  }
  
  .btnRemover {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .play {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .stop {
      width: 30px;
      height: 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-bottom: 10px;
    }
    .stop:hover {
      transform: scale(1.1);
      transition: transform 0.2s ease-in-out;
      background-color: #00000000;
    }
}

@media screen and (max-width: 480px) {
  
  .listaTarefas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .tarefa {
    width: 300px;
    height: 40px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .tarefa p {
    margin: 0;
    font-size: 0.6em;
    flex-grow: 1;
    text-align: left;
    padding: 0 10px;
  }
  
  .btnRemover {
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .play {
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .stop {
      width: 15px;
      height: 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-bottom: 10px;
    }
}
