.date-range-filter {
	display: flex;
	align-items: center;
	gap: 10px;
}

.date-range-filter label {
	font-weight: 600;
	color: #2c3e50;
	white-space: nowrap;
}

.filter-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	flex-wrap: wrap;
	gap: 15px;
}

.year-range-filter select {
	padding: 7px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: white;
	font-size: 16px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s;
}

.year-range-filter {
	display: flex;
	align-items: center;
	gap: 10px;
}

.year-range-filter label {
	font-weight: 600;
	color: #2c3e50;
}

input[type="date"] {
	padding: 7px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: white;
	font-size: 16px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s;
}

input[type="date"]:hover {
	border-color: #3498db;
}

input[type="date"]:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.filter-btn {
	padding: 10px 20px;
	background-color: #3498db;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}

.filter-btn:hover {
	background-color: #2980b9;
}

.reset-btn {
	padding: 10px 20px;
	background-color: #e74c3c;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}

.reset-btn:hover {
	background-color: #c0392b;
}

.table-scroll {
	overflow-x: auto;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

th, td {
	padding: 12px 15px;
	text-align: center;
	border-bottom: 1px solid #eaeaea;
}

th {
	background-color: #3498db;
	color: white;
	font-weight: 600;
	position: sticky;
	top: 0;
}

tr:nth-child(even) {
	background-color: #f8f9fa;
}

tr:hover {
	background-color: #e8f4fc;
}

tr.highlight {
	background-color: #fff9e6;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

tr.hidden {
	display: none;
}

.no-data {
	text-align: center;
	padding: 30px;
	color: #7f8c8d;
	font-style: italic;
}

.result-info {
	margin-bottom: 15px;
	padding: 10px 15px;
	background-color: #e8f4fc;
	border-radius: 5px;
	color: #2c3e50;
	font-size: 14px;
}