h1 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.component {
	margin-bottom: 20px;
	padding: 0 10px;
}

.component label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

.component select {
	width: 100%;
	padding: 10px;
	font-size: 14px;
}

.component p {
	font-size: 14px;
	margin-bottom: 10px;
}

.component button {
	padding: 10px 20px;
	font-size: 14px;
	background-color: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;

}


.component button:hover {
	background-color: #45a049;
}

.selected{

	width: 80%;
	margin: auto;

}

#selectedItems{

	display:flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;


}

#selectedItems li{
	max-width: 100px;
	display:flex;
	justify-content:center;
	align-items: center;
	flex-direction: column-reverse;
	gap: 1rem;
	margin-top: 2rem;
	
}

.s-items{
	display:flex;
	justify-content:center;
	align-items: center;
	flex-direction: column;
}
.s-items h2{
	font-size: 1.5rem;
}
.s-items img{
	width: 100%;
}



.s-items{
	/* width: 0%; */
}


.selected-item-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 5px;
	margin: auto;
}

.add-to-card{
	width: 20rem;
	height: 4rem;
	background-color: var(--yellow);
	/* margin-top: 70px; */
}



.add-to-card-price{
	display: flex;
	flex-direction: column;
	/* Set flex-direction to column */
	justify-content: flex-end;
	align-items: flex-end;
	/* Align to the right */
	margin-top: 20px;
	background-color: var(--blue);
	padding: 1rem 2rem;
	 
}


#totalPrice{
	margin: 10px;
	display: flex;
	flex-direction: column;
	/* Set flex-direction to column */
	justify-content: flex-end;
	/* Align to the right */
	align-items: flex-end;
	/* Align to the right */
	margin-top: 10px;
	background-color: var(--blue);
	color: #fff;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 5px;
}

@media only screen and (max-width: 600px) {


	h1 {
		font-size: 20px;
	}

	.component select {
		font-size: 12px;
	}

	.component p {
		font-size: 12px;
	}

	.component button {
		padding: 8px 16px;
		font-size: 12px;
	}

	body {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
	}


	.footer {
		/* background-color: #f5f5f5; */
		padding: 20px;
		text-align: center;
		margin-top: auto;
	}

	

}