/* Basic reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Body styling */
body {
	font-family: 'Roboto', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #e8f4f8; /* Updated background color */
}

/* Container to hold everything */
.container {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	width: 500px;
}

/* Heading styling */
h1 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	font-weight: 700;
	color: #1a73e8; /* Updated to a calming blue tone */
	text-align: center;
}

/* Input container for task entry */
.input-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

/* Input box styling */
input[type="text"] {
	width: 70%;
	padding: 12px;
	font-size: 1rem;
	border-radius: 8px;
	border: 2px solid #1a73e8; /* Updated border color */
	outline: none;
	transition: 0.3s;
}

input[type="text"]:focus {
	border-color: #0056b3; /* Darker focus border */
	box-shadow: 0 0 5px #0056b3;
}

/* Add button styling */
button {
	padding: 12px 20px;
	background-color: #1a73e8;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.3s;
}

button:hover {
	background-color: #0056b3; /* Darker hover color */
}

/* Task list styling */
ul {
	list-style: none;
	padding: 0;
}

/* Task item styling */
li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed #ccc; /* Updated to dashed separator */
	font-size: 1rem;
}

/* Task completion button styling */
li button {
	background-color: transparent;
	color: #34a853; /* Green for complete button */
	font-size: 1.5rem;
	border: none;
	cursor: pointer;
	margin-right: 10px;
	transition: 0.3s;
}

li button:hover {
	color: #0c661b; /* Darker green on hover */
}

/* Remove button */
li .remove-btn {
	background-color: #ea4335; /* Red color for remove button */
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: 0.3s;
}

li .remove-btn:hover {
	background-color: #b71c1c; /* Darker red on hover */
}

/* Task text styling */
.completed {
	text-decoration: line-through;
	color: #6c757d;
}