.designerFormWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin: 0;
  }
  .designerForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 635px;
    overflow-y: auto;
    padding: 20px 40px 24px;
    &::-webkit-scrollbar {
      width: 8px;
    }

    &::-webkit-scrollbar-thumb {
      background: var(--scrollbar-thumb-color) !important;
      border-radius: 3px;
    }

    @supports not selector(::-webkit-scrollbar) {
      body {
        scrollbar-color: var(--scrollbar-thumb-color)
          var(--scrollbar-track-color);
      }
    }
  }

  .file-upload-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    width: 100%;
    height: 135px;
    position: relative;
 
 
    .file-input {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }
 
 
    .upload-area {
      text-align: center;
 
 
      .upload-icon {
        font-size: 32px;
        color: var(--svg-color); /* Customize color */
        margin-bottom: 10px;
      }
 
 
      .upload-text {
        color: var(--primary-color); /* Customize color */
        font-weight: 400;
        text-decoration: underline;
        cursor: pointer;
      }
 
 
      .upload-info {
        margin-top: 10px;
        color: #545454;
        font-size: 12px;
      }
    }
  }

  .uploaded-files {
    width: 100%;
  }
 
 
  h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
  }
 
  .file-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
 
 
    .file-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
      border-radius: 4px;
      margin-right: 10px;
      width: 50px;
    }
 
 
    .file-details {
      flex-grow: 1;
 
 
      .file-name {
      font-size: 14px !important;
        margin: 0;
        font-weight: 500;
        color: #303030 !important;
      }
 
 
      .file-size {
        font-size: 12px !important;
        color: #b3b3b3 !important;
        font-weight: 300 !important;
        margin: 0 !important;
      }
    }
 
 
    .file-remove {
      display: flex;
      align-items: center;
      cursor: pointer;
    }
  }

  .loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    .loading-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid white;
      border-top-color: transparent;
      animation: spin 1s linear infinite;
    }
  }

  .button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
