.table-container {
	max-width: 1000px;
	width: 100%;
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
}

header {
	background: linear-gradient(to right, #3498db, #2c3e50);
	color: white;
	padding: 25px 30px;
	text-align: center;
}

header h1 {
	font-size: 28px;
	margin-bottom: 10px;
	font-weight: 600;
}

header p {
	font-size: 16px;
	opacity: 0.9;
}

.table-container {
	padding: 30px;
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

thead {
	background: #EDEDED;
	color: #777;
}

th {
	padding: 16px 15px 16px 8px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
}

tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s;
}

tbody tr:hover {
	background-color: #f8f9fa;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

td {
	padding: 15px;
	text-align: center;
	color: #333;
}

.job-title {
	font-weight: 500;
	color: #777;
	text-align: left;
	font-size: 16px;
}

.detail-btn {
	display: inline-block;
	padding: 8px 16px;
	background-color: #3498db;
	color: white;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
}

.detail-btn:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-family: Arial, sans-serif;
}

td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
	color: #777;
	font-size: 16px;
}