@charset "UTF-8";

/* SDS Download Page Styles */
.sds-page {
	padding-bottom: 80px;
}
/* Description */
.sds-description {
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

/* Table */
.sds-table-wrap {
	overflow-x: auto;
	margin-bottom: 60px;
}
.sds-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.sds-table thead th {
	background: #0b5897;
	color: #fff;
	font-weight: bold;
	padding: 14px 16px;
	text-align: left;
	white-space: nowrap;
	border: 1px solid #094a7e;
}
.sds-table tbody td {
	padding: 12px 16px;
	border: 1px solid #ddd;
	vertical-align: middle;
	color: #333;
}
.sds-table tbody tr:nth-child(even) {
	background: #f9f9f9;
}

/* PDF Download Link */
.sds-dl-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0b5897;
	text-decoration: none;
	font-weight: bold;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.sds-dl-link:hover {
	opacity: 0.7;
}
.sds-dl-link svg {
	width: 18px;
	height: 18px;
	fill: #0b5897;
	flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.sds-page {
		padding: 40px 0 60px;
	}
	.sds-page-title h2 {
		font-size: 22px;
	}
	.sds-table {
		font-size: 13px;
		min-width: 640px;
	}
	.sds-table thead th,
	.sds-table tbody td {
		padding: 10px 12px;
	}
}
