
/* Table Styles */
table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 20px;
}

th, td {
	padding: 12px 15px;
	text-align: center;
	/* border-radius: 8px; */
	background: rgba(255, 255, 255, 0.05);
	transition: background 0.3s ease;
}

th {
	top: 0;
	font-weight: 600;
	color: #4ade80;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: sticky;
	background: rgba(10, 10, 30, 0.9);
	z-index: 1;
}

td {
	font-size: 0.95rem;
	color: #d1d1d1;
}

/* Responsive Table - Stack on Mobile */
@media (max-width: 768px) {
	th, td {
		padding: 8px 10px;
		font-size: 0.9rem;
	}

	table {
		display: block;
		overflow-x: auto;
	}
}



/* Hover Effects on Rows */
table tr:hover td {
	background: rgba(255, 255, 255, 0.08);
	transform: scale(1.01);
	transition: all 0.2s ease;
}