/**
 * BubblaV Chat Widget - OAuth Loading Page Styles
 *
 * @package BubblaV_Chat
 */

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
	background: #f0f0f1;
}

.bubblav-loading {
	text-align: center;
	padding: 40px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spinner {
	width: 40px;
	height: 40px;
	margin: 0 auto 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #6366f1;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
