.esim-compat-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.esim-compat-modal-overlay {
	position: absolute;
	top:0;left:0;right:0;bottom:0;
	background: rgba(0,0,0,0.45);
}

.esim-compat-modal-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	max-width: 520px;
	width: 95%;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	border-radius: 6px;
}

.esim-compat-close {
	position: absolute;
	right: 12px;
	top: 8px;
	border: none;
	background: transparent;
	font-size: 26px;
	cursor: pointer;
	line-height: 1;
}

.esim-compat-search-wrap {
	margin-top: 6px;
}

.esim-compat-search {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.esim-compat-suggestions {
	list-style: none;
	margin: 8px 0 0 0;
	padding: 0;
	max-height: 220px;
	overflow: auto;
	border: 1px solid #eee;
	border-radius: 4px;
}

.esim-compat-suggestions li {
	padding: 8px 10px;
	border-bottom: 1px solid #f4f4f4;
	cursor: pointer;
}

.esim-compat-suggestions li.esim-item:focus,
.esim-compat-suggestions li:hover {
	background: #f0f0f0;
	outline: none;
}

.esim-compat-suggestions li.esim-none {
	color: #777;
}

.esim-compat-result {
	margin-top: 12px;
	padding: 10px;
	border-top: 1px dashed #ddd;
}

/* success / fail badges */
.esim-compat-badge-success {
	display: inline-block;
	background: #dff0d8;
	color: #3c763d;
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 600;
	margin-bottom: 8px;
}

.esim-compat-badge-fail {
	display: inline-block;
	background: #f8d7da;
	color: #842029;
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 600;
	margin-bottom: 8px;
}

/* browse button */
.esim-compat-browse-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 8px 12px;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid #2b7a2b;
	color: #fff;
	background: #28a745;
}
.esim-compat-browse-btn:hover {
	opacity: 0.95;
}
