.table-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	overflow: hidden;
}

.table-header {
	background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
	color: white;
	padding: 30px 20px;
	text-align: center;
}

.table-header h2 {
	font-size: 28px;
	margin-bottom: 10px;
	font-weight: 600;
}

.table-header p {
	font-size: 16px;
	opacity: 0.95;
}

table.seo-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
}

table.seo-table thead {
	background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
	color: white;
}

table.seo-table th {
	padding: 18px 15px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
	border-bottom: 3px solid #558B2F;
}

table.seo-table td {
	padding: 18px 15px;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: top;
	font-size: 15px;
	line-height: 1.7;
}

table.seo-table tbody tr {
	transition: background-color 0.3s ease;
}

table.seo-table tbody tr:hover {
	background-color: #f1f8e9;
}

table.seo-table tbody tr:nth-child(even) {
	background-color: #fafafa;
}

table.seo-table tbody tr:nth-child(even):hover {
	background-color: #f1f8e9;
}

.highlight {
	background: linear-gradient(120deg, #FFA726 0%, #FF9800 100%);
	color: white;
	padding: 3px 8px;
	border-radius: 4px;
	font-weight: 600;
	white-space: nowrap;
}

.keyword {
	color: #7CB342;
	font-weight: 600;
}

.location {
	color: #558B2F;
	font-weight: 500;
}

/* Responsive Design für Mobile */
@media screen and (max-width: 768px) {
	
	.table-header h2 {
		font-size: 22px;
	}
	
	.table-header p {
		font-size: 14px;
	}
	
	table.seo-table table {
		font-size: 14px;
	}
	
	table.seo-table thead {
		display: none;
	}
	
	table.seo-table tr {
		display: block;
		margin-bottom: 20px;
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	}
	
	table.seo-table td {
		display: block;
		text-align: left;
		padding: 12px 15px;
		border-bottom: 1px solid #f0f0f0;
		position: relative;
		padding-left: 45%;
	}
	
	table.seo-table td:last-child {
		border-bottom: none;
	}
	
	table.seo-table td:before {
		content: attr(data-label);
		position: absolute;
		left: 15px;
		top: 12px;
		font-weight: 600;
		color: #7CB342;
		width: 40%;
	}
	
	.highlight {
		display: inline-block;
		margin: 2px 0;
	}
}

@media screen and (max-width: 480px) {
	.table-header {
		padding: 20px 15px;
	}
	
	.table-header h2 {
		font-size: 20px;
	}
	
	table.seo-table td {
		font-size: 13px;
		padding: 10px 12px;
		padding-left: 42%;
	}
	
	table.seo-table td:before {
		font-size: 12px;
		left: 12px;
		top: 10px;
	}
}