body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', sans-serif;
	color: white;
	background: url('assets/images/nmrihloadscreen.jpg') center/cover fixed;
}

h2 { 
	font-size: 2em;
	text-align: center;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px #000;
}

.card {
	background: rgba(0, 0, 0, 0.75);
	border-radius: 12px;
	margin: 40px auto;
	padding: 30px 20px;
	width: 90%;
	max-width: 1200px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.table-container {
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 0.95em;
}

th, td {
	padding: 12px;
	border: 1px solid #444;
}

th {
	background-color: #222;
	font-weight: bold;
}

tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.05); 
}

@media (max-width: 768px) {
	h2 {
		font-size: 1.5em;
	}
	
	th, td {
		padding: 8px;
		font-size: 0.85em;
	}
}