.active {
	background-color: yellow !important;
	color: red !important;
}

label {
	font-weight: normal;
}

/* FOOTER */
footer {
	background-color: #179fb5;
	height: 87px;
	color: white;
	font-size: 14px;
	/* canh giữa nội dung theo chiều dọc */
	display: flex;
	align-items: center;
}

footer a.back-to-top {
	position: fixed;
	right: 42px;
	bottom: 20px;
	background-color: green;
	color: white;
	width: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 20px;

}

/* confirm popup */
.confirmation-dialog {
	position: fixed;
	top: 50px;
	left: 50%;
	transform: translate(-50%, 0);
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.confirmation-dialog p {
	font-size: 18px;
	margin-bottom: 20px;
}

.confirmation-dialog button {
	background-color: #007bff;
	color: #ffffff;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	margin-right: 10px;
	cursor: pointer;
}

.confirmation-dialog button:hover {
	background-color: #0062cc;
}

.confirmation-dialog button:last-child {
	background-color: #f0f0f0;
	color: #333333;
}

.confirmation-dialog button:last-child:hover {
	background-color: #cccccc;
}