body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
}
h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input[type="file"] {
  padding: 0.5rem;
}
button {
  padding: 0.75rem;
  background-color: #0078d4;  /* Blue button to match your brand */
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}
button:hover {
  background-color: #005ea2;  /* Darker blue on hover */
}
#status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: green;
}