/* ============================================================
   Table Component Enhancements
   ============================================================ */

.med-table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.med-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0;
	font-size: 0.95rem;
}

.med-table th,
.med-table td {
	padding: 1rem;
	text-align: left;
	border: 1px solid var(--med-border);
}

.med-table thead th {
	background: var(--med-bg-light);
	font-weight: 600;
	color: var(--med-text-dark);
}

.med-table tbody tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.02);
}

.med-table tbody tr:hover {
	background: rgba(25, 118, 210, 0.05);
}
