.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

h1 {
  color: #007bff;
  font-size: 32px;
  padding: 0;
  margin: 0;
}

.input_wrapper {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background: conic-gradient(#007bff calc(var(--progress) * 1%), #efefef 0);
  --progress: 0;
  z-index: 0;
  overflow: hidden;
  transition: --progress 0.3s ease-out; /* Add transition for smoother progress bar */

  &::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
  }

  input[type="file"] {
    display: none;
  }

  #plusIcon{
    position: relative;
    z-index: 10;
  }

  #previewImage {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    aspect-ratio: 1/1;
    z-index: 9;
    object-fit: cover;
    border-radius: 50%;
    display: none; /* Initially hidden */
  }

  #progressText {
    display: none;
    z-index: 10;
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 500;
    text-align: center;
  }

  &:hover {
    svg {
      fill: #1f1f1f;
    }
  }
}

.result_wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  .result_text{
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .result_link{
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    a {
      color: #007bff;
      text-decoration: none;
      flex: 1 0 0;
      display: inline;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}
