.modern-table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Inter', sans-serif;
	color: #333333;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	border-radius: 10px;
	overflow: hidden;
}

.modern-table th,
.modern-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}

.modern-table thead {
	background: linear-gradient(90deg,#4f46e5,#3b82f6);
	color: white;
	font-weight: 600;
}

.modern-table tbody tr:hover {
	background-color: #f0f4ff;
	transition: background-color .3s ease;
}