body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f2ef;
  margin: 0;
  padding: 0;
}

.home-container {
  padding: 40px;
  text-align: center;
  transition: margin-left 0.3s ease; /* smooth shift */
}

.home-title {
  margin-bottom: 30px;
  color: #333;
  font-size: 2em;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.list-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.3s;
  cursor: pointer;
}

.list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.list-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.list-card p {
  color: #777;
  font-size: 0.9em;
}

.list-card p::before {
  content: "📈 ";
}

.list-card.completed {
  background-color: #e0e0e0;
  color: #666;
  cursor: pointer;
  opacity: 0.8;
  position: relative;
  /* pointer-events: none; */
}

.list-card.completed::after {
  content: "✔";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5em;
  color: green;
}

.progress-bar {
  background-color: #e0e0e0;
  border-radius: 10px;
  height: 10px;
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}

.progress-fill {
  background-color: #4caf50;
  height: 100%;
  border-radius: 10px;
  transition: width 0.4s ease-in-out;
}


