@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background:  linear-gradient(to right, #FFFACD, #CDF6FF);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}
h2 {
  font-weight: normal;
}
.orders-list {
	margin-top: 32px;
}
.orders-list .container {
	background: rgb(255 255 255 / 60%);
	padding: 30px;
	border-radius: 30px;
}
.order-list__item {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #000;
	padding: 20px 15px;
	margin-bottom: 24px;
	box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.1);
}

.type-id {
	font-weight: bold;
	color: #000;
	font-size: 18px;
}
.price {
	margin-top: 4px;
	font-weight: 500;
}
.deadline {
	margin-top: 24px;
	font-size: 14px;
}
.direction {
	margin-top: 4px;
	font-size: 14px;
}
.title {
	margin-top: 24px;
	font-size: 14px;
}
.pages {
	margin-top: 24px;
	font-size: 14px;
}
.unique {
	margin-top: 4px;
	font-size: 14px;
}
.manager {
	margin-top: 24px;
	font-size: 14px;
}
.manager a {
	text-decoration: none;
	font-weight: normal;
	font-size: 12px;
	display: block;
  width: 100%; 
  padding: 10px 20px;
  text-decoration: none;
  background-color: #0088cc;
  color: #fff;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  margin-top: 5px;
   text-align: center;
}

.manager a:hover {
  background-color: #007ebd;
}

.orders-list__filter {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #000;
	padding: 20px 15px;
	margin-bottom: 36px;
}
.orders-list__filter h1 {
	color: #1e1e1e;
	font-size: 36px;
}
.filter-form-items {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 24px;
}
.filter-form-items div {
	margin-right: 12px;

}
.filter-form-items div:last-child {
	margin-right: 0;

}
.filter-form-items select {
	display: block;
	border-radius: 30px;
	border: 1px solid #000;
	padding: 8px 12px;
	width: 100%;
}
.filter-form-items input {
	display: block;
	border-radius: 30px;
	border: 1px solid #000;
	padding: 8px 12px;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	width: 100%;
}
.filter-form-button {
	margin-top: 12px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.filter-form-button a {
	color: #000;
	margin-right: 12px;
}
.filter-form-button button {
	display: block;
	border-radius: 30px;
	background: #1E1E1E;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	font-family: inherit;
	border: none;
	outline: none;
	max-width: 320px;
	width: 100%;
	padding: 12px 12px;
	cursor: pointer;
}
@media only screen and (max-width: 1200px) {
	.orders-list__filter h1 {
		font-size: 26px;
	}
	.filter-form-items {
		flex-wrap: wrap;
	}
	.filter-form-items div {
		margin-bottom: 12px;
		flex: 1 1 auto;
	}
} 