css
/* And for my css this is what i do and i want a cutesy look*/

/* for reset default spacing */
* {
  box-sizing: border-box;
}
/* Body design */
body {
  font-family: 'Segoe UI', sans-serif;
  /* for the color i usse pastel gradient background */
  background: linear-gradient(135deg, #ce9faf, #e0f4ff);
  min-height: 100vh;

  /* center card */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main card design */
.card {
  background: white;
  width: 420px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Title style */
h1 {
  text-align: center;
  color: #ff7aa2;
}

/* Input ug button container */
.input-group {
  display: flex;
  margin-bottom: 15px;
}

/* Input design */
input {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* Button design */
button {
  margin-left: 8px;
  border: none;
  padding: 10px 15px;
  border-radius: 12px;
  background: #ffb6c1;
  color: white;
  cursor: pointer;
}

/* Button hover effect */
button:hover {
  background: #ff7aa2;
}

/* Remove bullets */
ul {
  list-style: none;
  padding: 0;
}

/* Task item design */
li {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 8px;

  /* Align text and buttons */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Buttons container */
.actions button {
  margin-left: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
}

/* Edit button color */
.edit {
  background: #a0e7e5;
}

/* Delete button color */
.delete {
  background: #ff9aa2;
}

/* Logs design */
.logs li {
  font-size: 12px;
  background: #eef7ff;
}
