/* Product Layout Tweaker: custom tabs */

/* Custom Tab Content Styles */
.plt-custom-tab-content {
	padding: 20px 0;
}

.plt-custom-tab-content p {
	margin-bottom: 15px;
}

.plt-custom-tab-content img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
}

.plt-custom-tab-content ul,
.plt-custom-tab-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.plt-custom-tab-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.plt-custom-tab-content table th,
.plt-custom-tab-content table td {
	padding: 12px 15px;
	text-align: left;
	border: 1px solid #ddd;
}

.plt-custom-tab-content table th {
	background: #f5f5f5;
	font-weight: 600;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.plt-custom-tab-content {
		padding: 15px 0;
	}

	.plt-custom-tab-content img {
		margin: 10px 0;
	}

	.plt-custom-tab-content ul,
	.plt-custom-tab-content ol {
		padding-left: 20px;
	}

	/* Make tables scrollable on mobile if needed */
	.plt-custom-tab-content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

