/* Reset default margins */
body,
h1,
form {
  margin: 0;
  padding: 0;
}

/* Set body styles */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  /* background-color: #ffffff; */
  background-color: #f9f8f7;
  color: #000000;
  text-align: center;
  padding: 40px;
}

/* Center the main heading */
h1 {
  font-weight: 300;
  font-size: 2em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Center image */
img {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 200px;
  height: auto;
}

/* Center and style the form */
.center-form {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  /* background-color: #fafafa; */
  background-color: #f9f8f7;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Label styling */
.center-form label {
  font-size: 0.9em;
  font-weight: 300;
}

/* File input styling */
.center-form input[type="file"] {
  font-size: 0.9em;
  border: none;
  background: transparent;
}

/* Submit button styling */
.center-form button {
  padding: 8px 16px;
  background-color: #000000;
  /* color: #ffffff; */
  color: #f9f8f7;
  border: none;
  border-radius: 2px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Button hover effect */
.center-form button:hover {
  background-color: #333333;
}

/* You can move this to styles.css if preferred */
#progressContainer {
  width: 80%;
  max-width: 600px;
  margin: 30px auto;
  height: 20px;
  background-color: #eee;
  border: 1px solid #ccc;
  display: none;
}

#progressBar {
  height: 100%;
  width: 0%;
  background-color: #4caf50;
  transition: width 0.5s ease;
}

#labelContainer {
  font-weight: 300;
  font-size: 1em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

#summary {
  margin: 30px auto;
  max-width: 800px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 32px 40px;
  font-size: 1.1em;
  text-align: left;
  color: #222;
}