/* --- Fonts & Body --- */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  background: linear-gradient(135deg, #ffc0cb, #ffb6c1, #ffe4e1);
  font-family: 'Share Tech Mono', monospace; /* retro computer feel */
  text-align: center;
  margin-top: 50px;
  color: #ff0066;
}

/* --- Container --- */
#todo-container {
  background: #ffddee;
  width: 440px;
  margin: 0 auto;
  border: 4px solid #ff66cc;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 8px 8px 0px #ff66cc;
}

/* --- Header --- */
#header h1 {
  font-size: 24px;
  margin-bottom: 25px;
  text-shadow: 2px 2px #ff99cc;
}

/* --- Input Box --- */
#input-box {
  width: 220px;
  padding: 10px;
  border: 3px solid #ff66cc;
  border-radius: 3px;
  font-size: 14px;
  background: #ffe4e1;
  color: #ff0066;
  font-family: 'Share Tech Mono', monospace;
  box-shadow: inset 2px 2px 0px #ff99cc;
}

#input-box::placeholder {
  color: #ff99cc;
}

/* --- 3D Style Add Button --- */
#input-button {
  font-size: 14px;
  cursor: pointer;
  padding: 10px 15px;
  border: 3px solid #ff66cc;
  border-radius: 3px;
  background: #ff99cc;
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 1px 1px #ff66cc;
  box-shadow: 4px 4px 0px #ff66cc;
  transition: all 0.2s ease;
}

#input-button:hover {
  background: #ff66cc;
  box-shadow: 2px 2px 0px #ff99cc;
  transform: translateY(2px);
}

/* --- List Styling --- */
ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

li {
  border: 3px solid #ff66cc;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 12px;
  margin-top: 10px;
  background: #ffe4f0;
  font-size: 14px;
  position: relative;
  box-shadow: 4px 4px 0px #ff66cc;
  transition: all 0.2s;
}

li:hover {
  background: #fff0f5;
  box-shadow: 2px 2px 0px #ff99cc;
}

/* --- Task Label --- */
li label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* --- Edit & Delete Buttons --- */
.edit-btn, .delete-btn {
  float: right;
  color: #ff0066;
  cursor: pointer;
  margin: 3px 5px;
  border: 3px solid #ff66cc;
  padding: 3px 5px;
  background: #ffe4e1;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  border-radius: 3px;
  text-shadow: 1px 1px #ff99cc;
  box-shadow: 2px 2px 0px #ff66cc;
  transition: all 0.2s;
}

.edit-btn:hover, .delete-btn:hover {
  background: #ff66cc;
  color: #fff;
  box-shadow: 1px 1px 0px #ff99cc;
}

/* --- Completed Tasks --- */
.completed {
  text-decoration: line-through;
  color: #ff99cc;
  border: 3px dashed #ff66cc;
  background: #ffe4f0;
  box-shadow: none;
}

/* --- Counters --- */
.counter-container {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #ff0066;
  font-family: 'Share Tech Mono', monospace;
}
