body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  padding: 20px;
}

.todo-app {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 30px;
  width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  color: #bb86fc;
  margin-bottom: 30px;
}

.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.input-section input {
  background-color: #2c2c2c;
  border: 1px solid #444;
  color: #e0e0e0;
  padding: 10px;
  border-radius: 5px;
  flex-grow: 1;
}

.input-section button {
  background-color: #6200ee;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

.actions-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.actions-section button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#filterButton {
  background-color: #03dac6;
  color: #121212;
}

#deleteAllButton {
  background-color: #cf6679;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 10px;
  border-bottom: 2px solid #bb86fc;
}

tbody td {
  padding: 10px;
  border-bottom: 1px solid #333;
}

#noTaskMessage {
  color: #888;
}

.actions-section-cell button {
  margin-right: 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}

.actions-section-cell .complete-btn {
  background-color: #03dac6;
  color: #121212;
}

.actions-section-cell .delete-btn {
  background-color: #cf6679;
  color: white;
}
