.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}
 
/* Hide native input */
/*.file-upload-wrapper input {*/
#file-upload {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
 
/* Custom button */
.file-upload-wrapper label {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.file-upload-wrapper label:hover {
  background-color: #1d4ed8;
}
 
.file-upload-wrapper label:active {
  transform: scale(0.98);
}
 
/* #file-upload:focus */
.file-upload-wrapper input:focus + .file-upload-wrapper label {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
 
/* File name display */
.file-upload-wrapper span {
  font-size: 14px;
  color: #475569;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}