.component-details {
	font-size: 16px;
	font-family: 'ApercuAvnetBold', sans-serif;
	color: #138036;
	font-weight: normal;
}

.pdpUrl-info {
	font-size: 16px;
	font-family: 'ApercuAvnetBold', sans-serif;
}

.img1 {
	margin-right: 15px;
	margin-left: 15px;
	flex: 0 0 7%;
}

.component-description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: auto;
	white-space: normal;
	word-break: break-all;
}

.name-desc {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	flex: 0 0 20%;
	justify-content: center;
	align-items: flex-start;
}

.info-row {
	display: flex;
	align-items: center;
}

.price-stock-details {
	display: flex;
	align-items: center;
	width: 200px;
	justify-content: space-evenly;
}

.priceContainer {
	display: block;
	font-family: 'Arial', sans-serif;
	padding: 5px 10px;
}

.stockContainer {
	display: block;
	font-family: 'Arial', sans-serif;
	padding: 5px 10px;
}

.datasheet {
	align-items: center;
}

.component-row {
	display: flex;
	flex-wrap: nowrap !important;
	border: 1px solid #ddd;
	padding: 20px 0;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 15px;
}

.component-row>div {
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	/* Include padding and border in element's total width and height */
	padding: 10px; /* Space between columns */
}

/* Responsive Image */
.component-img {
	width: 80px;
	height: auto; /* Maintain aspect ratio */
}

/* Mobile Styles */
@media ( max-width : 768px) {
	.component-row>div {
		flex: 0 0 100%; /* Full width on small screens */
	}
	.component-row {
		flex-wrap: wrap !important;
	}
}

@media ( max-width : 1024px) {
	.component-row {
		flex-wrap: wrap !important;
	}
}

/* Small to Medium Devices */
@media ( min-width : 769px) and (max-width: 992px) {
	.component-row>div {
		flex: 0 0 50%; /* Two columns on medium screens */
	}
	.component-row {
		flex-wrap: wrap !important;
	}
}

/* Datasheet Link */
a {
	text-decoration: none; /* Remove underline from links */
	color: black; /* Set link color */
}

/* Loading Indicator */
.loading-indicator {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px; /* Minimum height for loading indicator */
}

/* Button Styles */
.btn {
	background-color: #28a745; /* Bootstrap success color */
	color: white; /* Text color */
	border: none; /* Remove border */
	padding: 10px 20px; /* Padding for button */
	cursor: pointer; /* Pointer cursor on hover */
	transition: background-color 0.3s; /* Smooth transition */
}

/* Button Hover Effect */
.btn:hover {
	background-color: #218838; /* Darker green on hover */
}

.buy-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	flex-direction: column;
	padding: 1rem;
}

.buy-section p, .buy-section a {
	margin: 0;
}

.buy-btn {
	width: 190px;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #138036;
	color: #fff;
	font-weight: normal;
	position: relative;
	top: -10px;
	margin-left: 10px;
}

.stock {
	font-weight: bold;
}

@media ( min-width :768px) and (max-width:1200px) {
	.name-desc {
		max-width: 130px !important
	}
	.component-description {
		width: auto;
		display: inline-block
	}
}