body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fff;
  color: white;
  margin: 0;
  padding: 0;
  
}
.container {
  width: 60%;
  margin: auto;
  padding: 50px;
  /* background: #333; */
  background-color: #fff;
  color: #000;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 40px;
}
.loading {
  font-size: 24px;
  margin-bottom: 20px;
}
.progress-bar {
  width: 100%;
  background: #444;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
.progress {
  width: 0%;
  height: 20px;
  background: #0073e6;
  transition: width 0.5s ease-in-out;
}
.status {
  margin-top: 20px;
  /* font-size: 18px; */
  /* opacity: 0; */
  transition: opacity 1s ease-in-out;
  text-align: center;
    font-size: 16px;  /* Increase font size */
    /* font-weight: bold; */
    color: #000;  /* Set to black (change if needed) */
    margin-top: 10px;
    opacity: 1; /* Ensure it's visible */
    display: block; /* Make sure it's displayed */
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
}
.image-placeholder {
  width: 600px;
  height: 200px;
  /* background-color: #222; */
  display: flex;
  justify-content: center;
  align-items: center;  
}

.image-placeholder img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 0px;
}