.product-instruction-container {
	padding-inline: 32px;
	margin-block: 32px;
    margin-bottom: 8px;
}
.product-type {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	
}
.product-type .products-name {
	width: 300px;
	height: fit-content;
	border: solid 2px #555F2F;
	border-radius: 28px;
	margin-bottom: 64px;
}

.product-type .products-name p{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px 16px;
	margin-block-start: 8px;
	margin-block-end: 8px;
	font-size: 28px;
	font-family: 'Noto Serif Display', serif;
}

.product-type div {
	margin-inline: 16px;
}
.instruction-table {
	width: fit-content;
	height: fit-content;
	width: 500px;
	/*! border: solid 2px green; */
	/*! border-radius: 28px; */
	padding: 0px 8px;
	font-size: 22px;
}
.instruction-table table, th,td {
	/*! border: 1px solid black; */
	border-collapse: separate;
}
.instruction-table table{
    border-style: hidden;
    border-spacing: 8px;
}
.instruction-table td{
	display: table-cell;
	text-align: center;
	font-family: 'Noto Serif Display', serif;
	padding-block: 8px;
}

/* Updated table styles */
.instruction-table table, .instruction-table th, .instruction-table td {
    border: 2px solid #555F2F;
    border-collapse: collapse;
}

.instruction-table .name {
    width: 350px;
    text-transform: uppercase;
}

.instruction-table .value{
	width: 300px;
	color: white;
	background-color: #5b6437;
	border-radius: 28px;
}

.instruction-table td {
    color: black;
}

/* Updated styles for right column cells */
.instruction-table .value {
    text-transform: uppercase;
    color: black;
    background-color: transparent;
    border-radius: 0;
}

.arrow {
	display: flex;
	align-items: center;
}

/* Reduced icon size by 50% */
.instruction-container .icon {
    width: 50%;
    height: 50%;
}

/* Reduced spacing between instruction parts to 6px */
.instruction-container .steps .step {
    margin-bottom: 6px;
}