/* styles.css */
body {
	margin: 0;
	font-family: "Arial", sans-serif;
	background-color: #f4f4f4;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
}

.maintenance-container {
	text-align: center;
	max-width: 500px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.content h1 {
	font-size: 2rem;
	color: #333;
	margin: 20px 0 10px;
}

.content p {
	font-size: 1rem;
	line-height: 1.5;
	margin: 10px 0;
}

.content a {
	color: #007bff;
	text-decoration: none;
}

.content a:hover {
	text-decoration: underline;
}

/* Loader Animation */
.loader {
	width: 50px;
	height: 50px;
	border: 5px solid #f4f4f4;
	border-top: 5px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 600px) {
	.maintenance-container {
		padding: 15px;
	}

	.content h1 {
		font-size: 1.5rem;
	}

	.content p {
		font-size: 0.9rem;
	}
}
