
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f5f5;
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

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

h1 {
	color: #d9534f;
	margin-top: 0;
}

p {
	font-size: 18px;
	margin-bottom: 20px;
}

.status {
	background: #f8f8f8;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	padding: 15px;
	margin: 20px 0;
	text-align: left;
}

.status h2 {
	margin-top: 0;
	color: #333;
}

.status ul {
	padding-left: 20px;
}

.status li {
	margin-bottom: 8px;
}

.action {
	background: #dff0d8;
	border: 1px solid #d6e9c6;
	border-radius: 4px;
	padding: 15px;
	margin: 20px 0;
}

.btn {
	display: inline-block;
	background: #5bc0de;
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 10px;
}

.btn:hover {
	background: #31b0d5;
}
