@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  padding: 10px;
  background: linear-gradient(to bottom, #5A67D8 0%, #68EACC 100%);
}

.wrapper {
  background: #fff;
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

header {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}

.tab {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 0.3s;
}

.tab.active {
  background: #8E49E8;
  color: #fff;
}

.inputField {
  display: flex;
  margin: 15px 0;
}

input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

button {
  padding: 10px;
  margin-left: 5px;
  background: #8E49E8;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.todoList {
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
}

.todoList li {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.todoList li.done {
  text-decoration: line-through;
  color: #999;
}

.todoList li .icon {
  margin-left: 10px;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.todoList li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.todoList li .actions {
  display: flex;
  gap: 10px;
}
  
.todoList li.done {
  text-decoration: line-through;
  color: #e15555;
}
  