body
{
  margin: 0;
}

.list-container
{
  border: 2px solid;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}

.info-colum1
{
  width:25%;
  float: left;
  text-align: center;
}
.info-colum2
{
  width:50%;
  float: left;
  text-align: center;
}
.trash-can
{
  width:40%;
  height: 40%;
}
.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.delete-button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.delete-button:hover {
  background-color: #ff1a1a;
}
