/* Obecné */
body {
	font-family: 'Segoe UI', Tahoma, sans-serif;
	background-color: #f9f9f9;
	color: #333;
}

h3 {
	margin-top: 20px;
	color: #444;
}

/* Filtry */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	align-items: center;
}

	.filters select,
	.filters button {
		padding: 6px 10px;
		border: 1px solid #ccc;
		border-radius: 4px;
	}

/* Tabulka odkazů */
#tblItems {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

	#tblItems td {
		padding: 12px;
		background-color: #fff;
		border-bottom: 1px solid #eee;
	}

.RepeaterItemTemplate,
.RepeaterAlternatingItemTemplate {
	display: flex;
	flex-direction: column;
}

.RepeaterHeading {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

	.RepeaterHeading img {
		width: 16px;
		height: 16px;
		margin-right: 8px;
	}

.RepeaterSmallInfo {
	font-size: 12px;
	color: #666;
	margin-top: 5px;
}

/* Pager */
#rptPaging a,
#rptPaging button {
	padding: 6px 10px;
	margin: 2px;
	border: 1px solid #ccc;
	background-color: #fff;
	cursor: pointer;
	border-radius: 4px;
}

	#rptPaging button:hover {
		background-color: #eee;
	}
