@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,500;1,600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  transition: background-color 0.5s, color 0.5s;
}

header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d5db;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
}
header .logo-section {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .logo-section img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}
header .logo-section h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
header .nav-section ul {
  display: flex;
  align-items: center;
}
header .nav-section ul li {
  margin: 0 15px;
  position: relative;
}
header .nav-section ul li a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
header .nav-section ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
  background-color: currentColor;
}
header .nav-section ul li:hover::after {
  width: 100%;
}
header .nav-section ul li a:hover {
  color: #3b82f6;
}
header .nav-section ul li.active a {
  color: #2563eb;
  font-weight: bold;
  border-bottom: 2px solid #2563eb;
}

main {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
main .task-manager {
  width: 100%;
  max-width: 600px;
}
main .task-manager .task-input {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
main .task-manager .task-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
main .task-manager .task-input input:focus {
  border-color: #93c5fd;
}
main .task-manager .task-input button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
main .task-manager .task-input button:hover {
  background: linear-gradient(to right, rgb(83.7142857143, 132.4285714286, 239.2857142857), rgb(145.4451219512, 192.987804878, 251.5548780488));
}
main .task-manager #task-list {
  list-style-type: none;
}
main .task-manager #task-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f3f4f6;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
main .task-manager #task-list li .task-name {
  flex: 1;
  margin: 0 10px;
}
main .task-manager #task-list li .task-name.completed {
  text-decoration: line-through;
  color: #2563eb;
}
main .task-manager #task-list li .actions button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 5px;
}
main .task-manager #task-list li .actions button.complete {
  background-color: #10b981;
  color: #ffffff;
  font-size: 0.9rem;
}
main .task-manager #task-list li .actions button.edit {
  background-color: #2563eb;
  color: #ffffff;
  font-size: 0.9rem;
}
main .task-manager #task-list li .actions button.delete {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.9rem;
}
main .task-manager #task-list li .actions button:hover {
  opacity: 0.8;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #f3f4f6;
  border-top: 1px solid #d1d5db;
  font-weight: bold;
  font-size: 0.9rem;
  color: #1f2937;
}

/*# sourceMappingURL=style.css.map */
