body {
	background-color: #121212;
	color: #ffffff;
}

h1 {
	margin-top: 30px;
	margin-bottom: 20px;
}

.list-wrapper {
	margin-top: 30px;
}

.input-info-danger {
	color: red;
	font-size: 0.9em;
	display: block;
	margin-top: 5px;
}

.list-group-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	background-color: #1e1e1e;
	border: 1px solid #444;
	color: #ffffff;
	margin-bottom: 10px;
}

.item-text {
	flex: 1 1 auto;
	word-break: break-word;
	max-width: calc(100% - 100px);
}

.item-buttons {
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	align-items: flex-end;
}

.completed h5,
.completed p {
	text-decoration: line-through;
	opacity: 0.6;
}

input.form-control,
textarea.form-control {
	background-color: #1e1e1e;
	color: #ffffff;
	border: 1px solid #555;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
	color: #aaa;
}

input.form-control:focus,
textarea.form-control:focus {
	background-color: #1e1e1e;
	color: #ffffff;
	border-color: #28a745;
	box-shadow: none;
}

@media (max-width: 767px) {
	.item-buttons {
		flex-direction: row;
		align-items: center;
		margin-top: 10px;
		justify-content: flex-end;
		width: 100%;
	}
	
	.list-group-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.item-text {
		max-width: 100%;
	}
}

.navbar {
	background-color: #212121 !important;
}

.navbar .navbar-brand,
.navbar .nav-link {
	color: #ffffff !important;
}

.navbar .nav-link.active {
	font-weight: bold;
	color: #28a745 !important;
}