

/* Базові стилі */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f5f7fa;
  color: #222;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
}

/* Заголовок */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

header h1 {
  font-size: 22px;
  font-weight: bold;
}

/* Кнопка зміни теми */
header button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

header button:hover {
  background-color: #0056b3;
}

/* Основна частина */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* Блок додавання завдання */
.add-task {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  transition: background-color 0.3s;
}

.add-task input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  width: 220px;
}

.add-task button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-task button:hover {
  background-color: #0056b3;
}

/* Список завдань */
.tasks-list {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s;
}

/* Нижній текст */
footer {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 60px;
  padding: 20px 0;
}

