.uploadBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #c1c1c1;
  border: none;
  border-radius: 6px;
  padding: 6px 24px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
  width: 100%;
}

.uploadBtn:hover {
  background-color: #b5b5b5;
}

.uploadBtn:active {
  opacity: 0.9;
}

.icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  /* White icon color */
}

.btnText {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hiddenInput {
  display: none;
}

.upload-preview-img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
}
.upload-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
