body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eee3a8;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.profile-icon {
  font-size: 30px;
}

/* EMPTY */
.empty {
  text-align: center;
  margin-top: 100px;
  color: #aaa;
}

.empty-icon {
  font-size: 80px;
  color: #ddd;
}

/* TASK LIST */
ul {
  padding: 20px;
  margin: 0;            
}

li {
  background: white;
  margin: 10px auto;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 280px; 
  justify-content: flex-start;
}

/* TASK CONTENT */
.task-left {
  display: flex;
  align-items:center;
  gap: 10px;
  flex: 1;
    text-align: left
}

.task-text {
  word-break: break-word;
  text-align: left;
}

/* CHECKBOX */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #436c94;
}

.completed {
  text-decoration: line-through;
  color: gray;
}

/* ICONS */
.actions i {
  margin-left: 10px;
  cursor: pointer;
}

/* ADD BUTTON */
.addBtn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #436c94;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 30px;
  color: white;
}

/* MODALS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.pastel {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* INPUT */
.modal input {
  padding: 10px;
  width: 220px;
  border-radius: 10px;
  border: none;
  background: #f3f4f6;
  margin-bottom: 10px;
}

/* BUTTONS */
.primary {
  background: #436c94;
  color: white;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.secondary {
  background: #ddd;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.danger {
  background: #921b25;
  color: white;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.hidden {
  display: none;
}