
#cartTable {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	margin-bottom: 20px;
}

#cartTable th, #cartTable td {
	border: 1px solid #39FF13;
	padding: 12px; 
	text-align: left;
}

#cartTable th {
	background-color: black;
	color: white;
	font-weight: bold;
}

#cartTable img {
	max-width: 50px;
	height: auto;
	display: block;
	margin: 0 auto;
}

#cartTable .remove-item {
	padding: 5px 10px;
	background-color: #FF69B4;
	color: #000000;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#cartTable .remove-item:hover {
	background-color: yellow;
}

#cartTable tfoot td {
	font-weight: bold;
}

.checkoutDiv {
	text-align: right;
	margin-top: 20px;
}

#checkout {
	padding: 10px 20px;
	background-color: cyan;
	color: black;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
}

#checkout:hover {
	background-color: #39FF13;
}