.request-table {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 5px;
}

.request-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 15px;
	border-bottom: rgba(170, 170, 170, 0.2) 1px solid;
}

.request-row:last-child {
	border-bottom: none;
}

.request-row.request-head {
	font-weight: 600;
	background: #f2f5f7;
	color: #516274;
	border-bottom: none;
	border-radius: 5px 5px 0px 0px;
}

.request-text {
	flex: 1;
	display: flex;
	gap: 30px 10px;
	justify-content: space-between;
}

.request-cell {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.request-table img {
	background-color: #fff;
	border-radius: 5px;
	width: 100%;
	max-width: 50px;
	max-height: 100px;
	object-fit: contain;
	margin: auto;
}

.request-cell {
	color: #222;
	font-size: 14px;
	font-weight: 400;
}

.request-cell .request-awaiting,
.request-cell .request-logo_pending {
	color: var(--primary-color);
}

.request-cell a {
	text-decoration: none;
}

.request-cell-head {
	display: none;
	color: var(--primary-color);
	font-size: 11px;
}

.request-head span.request-w-image {
	opacity: 0;
}

.request-cell-title {
	font-size: 14px;
	font-weight: 600;
}

.request-cell-muted {
	color: #aaa;
	font-size: 11px;
}

.request-declined {
	color: #db5b5b;
}

.request-cell-buttons {
	display: flex;
	gap: 10px;
}

#request-note {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: 10px;
}

.request-textarea {
	width: 100%;
	min-height: 100px;
	max-height: 300px;
	resize: vertical;
	padding: 10px;
	margin-bottom: 5px;

	border: 1px solid #ddd;
	border-radius: 5px;
	outline: 0;
}

.request-w-image {
	width: 80px;
}

.request-w-product {
	flex: 3;
}

.request-w-venue,
.request-w-date,
.request-w-manager,
.request-w-approval {
	flex: 2;
}

.request-w-approval {
	min-width: 180px;
}

/* Pagination */

.request-wrapper .pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.request-wrapper .pagination .page-numbers {
	min-width: 40px;
	height: 32px;
	padding: 0 15px;
	border-radius: 5px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.request-wrapper .pagination .page-numbers:not(.dots) {
	background-color: rgb(240, 240, 240);
}
.request-wrapper .pagination .page-numbers:not(.dots, .current):hover {
	background-color: rgb(225, 225, 225);
}
.request-wrapper .pagination .page-numbers.current {
	background-color: #353535;
	color: #fff;
	font-weight: 500;
}
.request-wrapper .post-count {
	color: #999;
}

/* Media queries */

@media (max-width: 1024px) {
	.request-row {
		gap: 20px 30px;
	}

	.request-cell-head {
		display: block;
	}

	.request-hide-small {
		display: none;
	}

	.request-w-image {
		width: max(25%, 80px);
	}

	.request-text {
		flex-wrap: wrap;
	}

	.request-w-product {
		flex-basis: 100%;
	}

	.request-w-venue,
	.request-w-date,
	.request-w-manager,
	.request-w-approval {
		flex: 1;
		min-width: calc(50% - 10px);
	}
}

@media (max-width: 768px) {
	.request-text {
		gap: 10px 10px;
	}

	.request-cell {
		gap: 0;
	}
}

@media (max-width: 650px) {
	.request-row {
		flex-direction: row;
		align-items: start;
		gap: 20px 20px;
	}

	.request-w-image {
		width: auto;
		max-width: 100%;
	}
}
