.rat-search-loading[hidden] { display: none !important; }
.rat-search-loading {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
	pointer-events: none;
}
.rat-search-loading__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	max-width: 300px;
	min-width: 280px;
	padding: 34px 40px;
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	text-align: center;
	box-sizing: border-box;
}
.rat-search-loading__wheel {
	width: 48px;
	height: 48px;
	border: 3px solid #e8edf3;
	border-top-color: #ff8400;
	border-radius: 50%;
	animation: rat-search-spin 0.75s linear infinite;
	flex-shrink: 0;
}
.rat-search-loading__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 600;
	color: #1f2937;
	font-family: 'Poppins', 'Poppins Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.rat-search-loading__subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	color: #6b7280;
	font-family: 'Poppins', 'Poppins Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
@keyframes rat-search-spin {
	to { transform: rotate(360deg); }
}
html.rat-search-loading-active,
html.rat-search-loading-active body {
	overflow: hidden !important;
}
