.form-table tbody tr td p:hover {
	cursor: pointer ;
}

.apf-modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
	/* text-align: center; */
	background-color: #fefefe;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 50%;
	border-radius: 10px;
	animation: slideIn 0.5s ease-in-out;
}

.close {
	float: right;
	cursor: pointer;
}

.modal-content  label {

	margin-right: 10px;
	font-weight: bold;
}
.modal-content  h2 {
	margin-top: 3px;
}

.modal-content  #apf_commission_amount,
.modal-content button {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}

.modal-content  button {
	background-color: #007BFF;
	color: white;
	cursor: pointer;
	margin-top: 10px;
}

.modal-content button:hover {
	background-color: #0056b3;
}

#apf_payout_btn{
	display: block;
	width: 100px;
	margin-top: 18px;
}



@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideIn {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}