body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  margin: 0;
  background: url("Images/image30.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  backdrop-filter: saturate(150%);
  -webkit-backdrop-filter: blur(1px) saturate(100%);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #b9c0c8, #707070);
  border-radius: 24px;
}

.todo-app {
  background-color: rgba(255, 255, 255, 0.551);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.125);
}

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

#new-todo {
  width: 70%;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#add-button {
  padding: 10px 20px;
  border: none;
  background-color: #28a745;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

#add-button:hover {
  background-color: #218838;
}

#todo-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  height: 50px;
}

#todo-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.completed {
  text-decoration: line-through;
}

.notcompleted {
  text-decoration: none;
}
.usertodo {
  text-decoration: line-through;
}
.twoButttons {
  padding: 5px;
  text-decoration: none;
}
.twoButttons button {
  margin: 5px;
  background-color: #4183f3;
}
#todo-list li button {
  border: none;
  background-color: #dc3545;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

#todo-list li button:hover {
  background-color: #c82333;
}
.button {
  background-color: whitesmoke;
  display: flex;
  background-color: #4183f3;
  color: white;
  border-radius: 5px;
  padding: 5px;
}
#googleButton button {
  width: 150px;
  height: 50px;
  outline: none;
  border: none;
  background-color: transparent;
  color: white;
  font-weight: bold;
}
img {
  border-radius: 10px;
  width: 50px;
  background-color: white;
}
.inputBox {
  display: flex;
}
#logoutButton {
  padding: 10px;
  border: none;
  outline: none;
  background-color: transparent;
}
.usertoDos ul div {
  background-color: #4183f3;
}
.usertoDos {
  height: 200px;
  overflow-y: scroll;
}
