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

.container {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 40px;
	max-width: 500px;
	text-align: center;
}

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

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

h1 {
	color: #333;
	font-size: 24px;
	margin-bottom: 10px;
}

p {
	color: #666;
	line-height: 1.6;
	margin: 15px 0;
}

.back-link {
	display: inline-block;
	margin-top: 20px;
	color: #0073aa;
	text-decoration: none;
	font-size: 14px;
}

.back-link:hover {
	text-decoration: underline;
}

.info-box {
	background: #e7f3f8;
	border-left: 4px solid #0073aa;
	padding: 15px;
	margin: 20px 0;
	text-align: left;
	font-size: 14px;
	display: none;
}

.retry-button {
	display: none;
	background: #0073aa;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin: 10px 0;
}

.retry-button:hover {
	background: #005a87;
}