.custom-file-container {
  grid-column-gap: 10px;
  background-color: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  align-items: center;
  width: 100%;
  height: 47px;
  padding: 0 16px;
  display: flex;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-file-container:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.custom-file-container:focus-within {
  border-color: #03ed4c;
}

.custom-file-input-native {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}

.custom-file-btn {
  background-color: #24c556;
  color: #141414;
  border-radius: 4px;
  padding: 4px 12px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  flex-shrink: 0;
}

.custom-file-name {
  color: #fbfbfb;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  flex-shrink: 1;
  min-width: 0;
}
