@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
	background-color: #f4f4f9;
}

header {
	margin: 2rem 0px;
	text-align: center;
}

header h1 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

header h1:hover {
	color: #007bff;
}

header p {
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 1rem;
}

.input-container {
	width: 100%;
	max-width: 500px;
	margin-top: 1rem;
}

.input-container input {
	min-width: 35rem;
	width: 100%;
	padding: 15px;
	font-size: 1rem;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.input-container input:focus {
	border-color: #007bff;
	box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.output-container {
	width: 100%;
	max-width: 500px;
	height: fit-content;
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 24px;
}

.output-container li {
	list-style: none;
	background: #f9f9f9;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 12px;
	font-size: 1.1rem;
	cursor: pointer;
	position: relative;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.output-container li:hover {
	background-color: #e2e6ea;
	transform: scale(1.02);
}

.output-container span {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 1.2rem;
	color: #dc3545;
	cursor: pointer;
	transition: color 0.3s ease;
}

.output-container span:hover {
	color: #c82333;
}

#content .done {
	background-color: #343a40;
	color: #f8f9fa;
	border: 1px solid #f8f9fa;
}

.footer {
	position: fixed;
	bottom: 2rem;
	background-color: #007bff;
	padding: 12px 20px;
	border-radius: 25px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer button {
	border: none;
	margin-left: 1rem;
	background-color: transparent;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	color: #fff;
	border: 2px solid #fff;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.footer button:hover {
	background-color: #fff;
	color: #007bff;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}
