.excel-section .container {
	max-width: 80% !important;
}

.hidden {
	display: none;
}

.table-container {
	max-height: 600px;
	overflow: auto;
	border: 1px solid #faf4f4;
	border-radius: 4px;
	/* margin-top: 1rem; */
	font-size: 0.8rem;
}

.filter-row {
	background-color: #f5f5f5;
	position: sticky;
	top: 40px; /* Changed from 0 to 40px to sit right below header */
	z-index: 10;
}

.filter-input {
	font-size: 0.8rem;
	padding: 0.3rem;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
	box-sizing: border-box;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
}

.data-table th {
	background-color: #363636;
	color: white;
	padding: 0.75rem;
	text-align: left;
	font-weight: 600;
	position: sticky;
	top: 0; /* Changed from 40px to 0 - header should be at the very top */
	z-index: 5;
}

.data-table td {
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}

.data-table tbody tr:hover {
	background-color: #f8f9fa;
}

.data-table tbody tr:nth-child(even) {
	background-color: #fafafa;
}

.reset-filters {
	/* margin-bottom: 1rem; */
}
