/* styles.css */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffffff;
}

.upload-widget {
  background: ##FF5E00;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.image-placeholder img {
  max-width: 200px;
  max-height: 200px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 10px;
}

input[type="file"] {
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}

.progress {
  height: 100%;
  width: 0;
  background: #76c7c0;
  transition: width 0.3s ease;
}

button {
  padding: 10px 20px;
  background: #76c7c0;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #5aa6a0;
}