body {
  background-color: #1e1e1e;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  padding: 50px;
}

.container {
  max-width: 500px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input[type="text"], input[type="date"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  background-color: #00b894;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

.todo-item {
  background-color: #333;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.todo-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 10px;
}

.todo-buttons button {
  margin-left: 10px;
  background-color: #d63031;
}
input[type="time"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
}
