.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}
textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
}
.controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
button {
  padding: 10px 15px;
  font-size: 14px;
  background-color: #DE9406;
  border: none;
  cursor: pointer;
  color: white;
}
input[type='file'] {
  margin-top: 10px;
}

.upload-wrapper {
  position: relative;
  display: inline-block;
}

#uploadFile {
  display: none; /* hide the native file input */
}

.custom-upload-btn {
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  background-color: #DE9406;
  color: white;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 4px;
}
.message {
  color: red;
  font-size: 13px;
  margin-left: 10px;
  align-self: center;
}