textarea, input[type="date"] {
  width: 80%;
  padding: 0.5rem;
  margin: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.task-card {
  background-color: #f0f9ff;
  border-left: 6px solid #00bcd4;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.task-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #00796b;
}

.task-card p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #555;
}

.dates {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #444;
  margin-top: 0.5rem;
}

.todo-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  text-align: center;
  width: 90%;
  max-width: 600px;
  margin: auto;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #c2e9fb, #a1c4fd);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

input[type="text"], textarea {
  width: 80%;
  padding: 0.5rem;
  margin: 0.5rem auto;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: block;
}

button {
  background-color: #00bcd4;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #00796b;
}