.page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  font-family: 'Arial', sans-serif;
}

.content {
  width: 100%;
  max-width: 800px;
  padding: 40px;
}

.todo-list {
  padding: 40px; 
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.todo-list__title {
  margin: 0 0 30px 0;
  font-size: 48px;
  text-align: center;
  color: #6200ee;
}

.todo-list__box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.todo-list__input {
  flex: 1;
  padding: 20px;
  border: 3px solid #ccc;
  border-radius: 20px;
  font-size: 28px;
  outline: none;
  transition: all 0.3s ease;
}

.todo-list__input:focus {
  border-color: #6200ee;
  box-shadow: 0 0 0 5px rgba(98, 0, 238, 0.2);
}

.todo-list__button {
  padding: 20px 40px;
  border: none;
  border-radius: 20px;
  background-color: #6200ee;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.todo-list__button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.todo-list__button:not(:disabled):hover {
  background-color: #3700b3;
}

.todo-list__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.todo-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  border: 3px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
  font-size: 28px;
}

.todo-list__item:last-child {
  margin-bottom: 0;
}

.todo-list__item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.todo-list__item button {
  padding: 15px 30px;
  border: none;
  border-radius: 20px;
  color: #fff;
  background-color: #ff4444;
  transition: all 0.3s ease;
  font-size: 24px;
  cursor: pointer;
}

.todo-list__item button:hover {
  background-color: #cc0000;
}