.page-approval-container {
	z-index: 1;
	display: flex;
	align-items: center;
}

.approval-status-badge {
	display: flex;
	align-items: center;
	padding: 4px 15px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 12px;
	position: relative;
}

.approved-badge {
	color: #0f7958;
	background-color: rgba( 209, 249, 216, 0.75 );
	padding: 5px 30px;
}

.unapproved-badge {
	background-color: #d3d3d3;
	color: #000;
	padding: 5px 23px;
}

.approved-badge:hover {
	background-color: #bce0c2;
}

.status-icon,
.checkmark-icon,
.unapprove-icon,
.dropdown-icon {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.status-icon {
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

.approved-badge .status-icon {
	background-image: url( Icons/approved-icon.svg );
	margin-right: 10px;
}

.unapproved-badge .status-icon {
	background-image: url( Icons/not-approved-icon.svg );
}

.checkmark-icon {
	width: 24px;
	height: 24px;
	background-image: url( Icons/checkmark.svg );
}

.dropdown-icon {
	width: 13px;
	height: 13px;
	background-image: url( Icons/arrow-down.svg );
	margin-left: 5px;
}

.dropdown-icon.approved {
	background-image: url( Icons/approved-arrow-down.svg );
}

#unapproveButton .unapprove-icon {
	width: 20px;
	height: 20px;
	background-image: url( Icons/unapprove-icon.svg );
}

.approver-details {
	font-size: 12px;
}

.page-approval-text-muted {
	color: #808080;
	display: inline-block;
	width: 110px;
	text-align: center;
}

.page-approval-text-muted::first-letter {
	text-transform: uppercase;
}

.approved-status-text {
	user-select: none;
}

.display-none {
	display: none !important;
}

.approval-status-tooltip {
	visibility: hidden;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY( -50% );
	background-color: rgba( 0, 0, 0, 0.9 );
	color: #fff;
	padding: 12px 15px;
	border-radius: 6px;
	white-space: normal;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	box-shadow: 0 3px 10px #000;
	z-index: 1;
	border: 1px solid #000;
	max-width: 350px;
	width: max-content;
	margin-right: 10px;
}

.approval-status-tooltip::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -6px;
	border-width: 6px;
	border-style: solid;
	border-color: transparent transparent transparent rgba( 0, 0, 0, 0.9 );
}

.page-approval-container:hover .approval-status-tooltip {
	visibility: visible;
	opacity: 1;
}

.approval-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba( 0, 0, 0, 0.2 );
	border-radius: 4px;
	overflow: hidden;

	.dropdown-item {
		display: flex;
		align-items: center;
		padding: 10px 23px;
		width: 100%;
		border: 0;
		background: none;
		cursor: pointer;
		text-align: left;
		white-space: nowrap;
	}

	.dropdown-item:hover {
		background-color: rgba( 211, 211, 211, 0.23 );
	}

	.dropdown-item span {
		margin-right: 10px;
	}
}

#approveButton {
	color: #158f68;
}

#unapproveButton {
	color: #dc3545;
}

.cursor-pointer {
	cursor: pointer;
}
