body 
{
  font-family: Arial, sans-serif;
  background-color: #ecf0f1;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.construction-container {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 500px;
}

.construction-container h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.construction-container p {
  color: #7f8c8d;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #dcdde1;
  border-radius: 5px;
  margin: 20px 0;
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background-color: #3498db;
  border-radius: 5px;
  animation: loading 5s linear infinite;
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 80%; }
  100% { width: 0%; }
}

.note {
  font-size: 14px;
  color: #7f8c8d;
}
