-body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container.maintenance-page {
  text-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.maintenance-page h1 {
  color: #2c3e50;
}
.maintenance-page .graphic {
  font-size: 5rem;
  margin: 2rem 0;
}
.maintenance-page .message {
  color: #34495e;
  margin-bottom: 1rem;
}
.maintenance-page .progress-bar {
  width: 100%;
  height: 20px;
  background-color: #ecf0f1;
  border-radius: 10px;
  overflow: hidden;
}
.maintenance-page .progress {
  width: 0%;
  height: 100%;
  background-color: #3498db;
  animation: progress 3s ease-in-out infinite;
}
@keyframes progress {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 0%; }
}
