body {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-family: Arial, sans-serif;
}
header {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: #f4f4f4;
}
nav {
	display: flex;
	flex-direction: row;
	gap: 20px;
}
nav ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 10px;
}
nav li {
	margin-right: 15px;
}
nav li a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
}
nav li a:hover {
	color: #007bff;
}
main {
	max-width: 800px;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
	text-align: center;
}
form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: #f9f8fa;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-field {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
label {
	margin-bottom: 0;
	width: 100px;
	font-weight: bold;
	color: #333;
}
input[type="text"],
input[type="password"],
select,
textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	color: #333;
	box-sizing: border-box;
}
input[type="text"]:focus,
input[type="password"]::focus,
select:focus,
textarea:focus {
	border-color: #007bff;
	outline: none;
}
textarea {
	resize: vertical;
	min-height: 100px;
}
button[type="submit"] {
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
	background-color: #0056b3;
}
button[type="submit"]:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}
.pagination-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.pagination-number,
.pagination-button {
	font-size: 1.1rem;
	background-color: transparent;
	border: none;
	margin: 0.25rem 0.25rem;
	cursor: pointer;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 0.2rem;
}
.pagination-number:hover,
.pagination-button:not(.disabled):hover {
	background: #fff;
}
.pagination-number.active {
	color: #fff;
	background: #0085b6;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

@media (max-width: 768px) {
	body {
		flex-direction: row;
	}
	nav {
		flex-direction: column;
	}
	nav ul {
		flex-direction: column;
		justify-content: space-between;
	}
	nav ul li {
		flex: 1 1 45%;
	}
}