* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.search-container {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.search-box {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	border: 2px solid #e1e5eb;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s;
}

.search-box:focus {
	border-color: #4a90e2;
}

.list-container {
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	overflow: hidden;
}

.list-item {
	display: flex;
	padding: 20px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.2s;
}

.list-item:hover {
	background-color: #f8f9fa;
}

.item-number {
	font-size: 24px;
	font-weight: bold;
	color: #4a90e2;
	margin-right: 20px;
	min-width: 50px;
}

.item-content {
	flex: 1;
}

.item-subject {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}       
.item-description {
	color: #666;
	line-height: 1.5;
}
.item-pdf {
	color: #666;
	line-height: 1.8;
}        
.item-image {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 5px;
	margin-left: 20px;
}

.pagination {
	display: flex;
	justify-content: center;
	padding: 5px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-top: 20px;
}

.pagination button {
	padding: 6px 12px;
	margin: 0 3px;
	border: 1px solid #ddd;
	background: white;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.2s;
}

.pagination button:hover {
	background: #4a90e2;
	color: white;
	border-color: #4a90e2;
}

.pagination button.active {
	background: #4a90e2;
	color: white;
	border-color: #4a90e2;
}

.pagination button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.no-results {
	text-align: center;
	padding: 40px;
	color: #666;
	font-size: 18px;
}

.item-id {
	font-size: 14px;
	color: #999;
	margin-bottom: 5px;
}