body {
	font-family: Arial, sans-serif;
	margin: 0;
	background: #f4f4f4;
	color: #222;
}

.page {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem 1rem 3rem;
}

.page-header,
.upload,
.entries-section,
.flash {
	background: #fff;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 1rem;
}

.page-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.page-header-top h1 {
	margin: 0;
}

.flash.success {
	border-left: 4px solid #2f855a;
}

.flash.error {
	border-left: 4px solid #c53030;
}

.entries {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.entry {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #e2e8f0;
}

.entry:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.entry-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: #1a202c;
	text-decoration: none;
}

.entry-link:hover {
	text-decoration: underline;
}

.thumbnail {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 0.25rem;
	border: 1px solid #cbd5e0;
}

.entries-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.download-all-btn {
	border-radius: 0.5rem;
	border: 0;
	padding: 0.5rem 0.75rem;
	text-decoration: none;
	color: #222;
	background: #e2e8f0;
}

.download-all-btn:hover {
	cursor: pointer;
	background: #cbd5e0;
}

button {
	border-radius: 0.5rem;
	border: 0;
	padding: 0.5rem 0.75rem;
}

button:hover {
	cursor: pointer;
}
