.aisp-user-list .aisp-user-item:hover {
	background: #f7f7f7;
}
.aisp-assign-user input[type="text"] {
	border: 1px solid #dcdcdc;
	border-radius: 6px;
}


.aisp-assign-status {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #f9fafb;
	padding: 10px 14px;
	border: 1px solid #ccd7e0;
	border-radius: 6px;
	margin-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #1d2327;
	font-size: 13px;
	font-weight: 500;
}

.aisp-assign-status span {
	display: inline-flex;
	align-items: center;
}

.aisp-assign-status .modified {
	color: #d47f00;
	font-weight: 600;
	margin-left: 6px;
}

.aisp-assign-status a {
	text-decoration: none;
	font-weight: 600;
	color: #2271b1;
}

.aisp-assign-status a:hover {
	color: #135e96;
}

/* User search results */
.aisp-user-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
}

.aisp-user-item {
	padding: 8px 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	font-size: 13px;
}

.aisp-user-item:last-child {
	border-bottom: none;
}

.aisp-user-item:hover {
	background: #f0f4fa;
}

.aisp-searching,
.aisp-no-results {
	padding: 6px 0;
	font-size: 13px;
	color: #999;
}

/* Inline status */
.aisp-inline-status {
	font-size: 11px;
	margin-top: 3px;
	line-height: 1.4;
}

.aisp-use-as-guest-inline {
	color: #0073aa;
	text-decoration: underline;
	margin-left: 6px;
	cursor: pointer;
}

/* Popup */
.aisp-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aisp-popup-modal {
	background: #fff;
	padding: 25px 30px;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
	max-width: 400px;
	width: 90%;
	text-align: center;
}

.aisp-popup-title {
	margin: 0 0 12px;
	font-size: 16px;
	color: #1d2327;
}

.aisp-popup-text {
	margin: 0 0 20px;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.aisp-popup-btn {
	border: none;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	margin: 4px;
}

.aisp-popup-btn--confirm {
	background: #2271b1;
	color: #fff;
}

.aisp-popup-btn--confirm:hover {
	background: #135e96;
}

.aisp-popup-btn--cancel {
	background: #f0f0f0;
	color: #333;
}

.aisp-popup-btn--cancel:hover {
	background: #ddd;
}
