body {
  background-color: lightgreen;
  min-height: 100vh;
}
.main-content {
  /* display: flex; */
  display: none;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
table {
  /* border: 1px solid black; */
  width: fit-content;
  height: fit-content;
  border-collapse: collapse;
}
#lists-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.list-wrapper {
  display: flex;
  min-width: 300px;
  max-width: 400px;
  align-items: center;
  flex-direction: column;
}

.add-todo-btn {
  background-color: rgba(200, 100, 50, 0.1);
  border-radius: 5px;
}
.delete-btn {
  background-color: rgba(200, 100, 50, 0.1);
  border-radius: 5px;
  border: none;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.delete-list-btn {
  cursor: pointer;
  /* font-size: 24px; */
  color: #999;
  line-height: 1;
}

.delete-list-btn:hover {
  color: #ff0000;
}
