.ftlContainer {
  .sourceLang {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;

    p {
      align-items: center;
      background-color: #f17d3a;
      border-radius: 50%;
      color: #fff;
      display: flex;
      height: 35px;
      justify-content: center;
      width: 35px;
      padding: 0;
      margin: 0;
    }

    p,
    span {
      font-weight: 500;
    }

    span {
      font-size: larger;
    }
  }

  .originalLang {
    font-size: 15px;
    margin-top: -5px;
  }

  .languageSelectorWrapper {
    .langSl {
      align-items: center;
      display: flex;
      gap: 30px;
      margin-top: 10px;
      width: 100%;

      .sourceLan {
        width: 100%;

        label {
          font-size: 15px;
        }

        .css-3iigni-container,
        .css-b62m3t-container {
          font-size: 15px !important;
        }
      }
    }

    .language-input {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
      min-height: 40px;
      padding: 8px 12px;
    }

    .language-popup {
      background: #4267B2;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      left: 50%;
      max-height: 80vh;
      max-width: 800px;
      overflow-y: auto;
      position: fixed;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      z-index: 1000;
    }

    .popup-header {
		align-items: center;
		border-bottom: 1px solid #eee;
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
		padding: 10px 20px;
		position: sticky;
		top: 0;
		background: #4267b2;
		z-index: 88;

      h3 {
        margin: 0;
      }

      button,
      h3 {
        color: #fff;
        font-size: 23px;
      }

      button {
        align-items: center;
        background: #3d7a27;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        font-size: 24px;
        height: auto;
        justify-content: center;
        padding: 0 8px;
        width: auto;
        margin: 0;
      }
    }

    .language-grid {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      padding: 0 20px 20px 20px;

      button {
        background: #FFFFFF !important;
        border: 1px solid #ddd;
        border-radius: 20px;
        cursor: pointer;
        padding: 8px 12px;
        transition: all 0.2s;
        color: #000;

        &:hover {
          background: #f0f0f0;
        }

        &.selected {
          background: #45ad5e !important;
          ;
          border-color: #4caf50;
          color: #fff;
        }
      }
    }
  }

  .uplaodFiles {
    border: 2px dashed #ccc;
    border-radius: 10px;
    margin-top: 30px;
    padding: 20px;

    .uploadIcon {
      height: 80px;
      width: 80px;
      fill: #f17d3a;
    }

    .first {
      color: #666;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .supportFile {
      color: #666;
      font-size: 14px;
    }

    img {
      margin: 0 auto !important;
    }

    .showAllLoadedFiles {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      margin-top: 20px;
      padding: 20px;

      .file-card {
        background: #fff;
        border: 1px solid #e1e8ed;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        transition: all 0.3s ease;

        &:hover {
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transform: translateY(-2px);
        }

        .file-icon {
          color: #3498db;
          display: flex;
          justify-content: center;
          margin-bottom: 10px;

          svg {
            height: 40px;
            width: 40px;
          }
        }

        .file-info {
          text-align: center;

          .file-name {
            color: #2c3e50;
            font-size: 1rem;
            margin: 0 0 10px;
            word-break: break-all;
          }

          .file-status {
            color: #27ae60;
          }

          .file-status,
          .word-count {
            font-size: 0.9rem;
            margin: 5px 0;
          }

          .word-count {
            color: #7f8c8d;
          }
        }

        .cancel-btn {
          background: #e74c3c;
          border: none;
          border-radius: 5px;
          color: #fff;
          cursor: pointer;
          margin-top: auto;
          padding: 8px 15px;
          transition: background 0.3s;

          &:hover {
            background: #c0392b;
          }
        }
      }
    }
  }

  .showUploadedFiles {
    align-items: center;
    background: #e9edf1;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 5px 20px;

    .sameClr {
      color: #f17d3a;
    }

    .showUploadedFilesChild1 {
      align-items: center;
      display: flex;
      gap: 15px;

      button {
        background: #f17d3a;
        border: none;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        padding: 10px 15px;

        &:hover {
          background-color: #bd5c24;
        }
      }

      p {
        color: #666;
        font-size: 15px;
        font-weight: 500;
      }
    }

    .totalWords {
      margin-bottom: 0;
    }

    .totalUSD,
    .totalWords {
      color: #666;
      font-size: 15px;
    }
  }

  .showUploadedFile {
    background: #f17d3a;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: center;
    margin: 20px auto;
    padding: 10px 15px;
  }

  .checkoutBtn {
    display: flex;
    justify-content: center;
    margin-top: 10px;

    .buyNow {
      background-color: #f17d3a;
      border: none;
      border-radius: 5px;
      color: #fff;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      margin-top: 30px;
      padding: 10px 20px;

      &:hover {
        background-color: #9e4714;
      }
    }
  }

  .showAllLoadedFiles {
    background: #aa9a9a1a;
    border-radius: 5px;
    margin-top: 20px;
    padding: 30px;

    .file-card {
      align-items: center;
      background: #d6d9e7c2;
      border-radius: 5px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      padding: 10px;

      .file-name,
      .word-count {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 5px 0;
      }
    }
  }

  .slider-container {
    margin: 40px auto 0;
    max-width: 1200px;
    width: 100%;

    .step-indicator {
      align-items: center;
      margin-bottom: 20px;

      .step-number {
       background-color: #f17d3a;
		border-radius: 50%;
		color: #fff;
		display: inline-block;
		font-weight: 500;
		width: 35px;
		text-align: center;
		padding: 5px 0;
      }

      .step-text {
        font-size: larger;
        font-weight: 500;
        margin-left: 10px;
		display: inline;
      }
    }

    .slider-wrapper {
      align-items: center;
      display: flex;
      justify-content: center;
      position: relative;
      right: 20;

      .slider-viewport {
        overflow: hidden;
        width: 650px;

        .slider-track {
          display: flex;
          gap: 15px;
          overflow-x: scroll;
          scroll-behavior: smooth;
          scrollbar-width: none;
          -ms-overflow-style: none;
          cursor: grab;
          padding: 10px 0;
          -webkit-user-select: none;
          -moz-user-select: none;
          user-select: none;
        }
      }
    }
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .slider-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .category-card {
    align-items: center;
    background-color: #fff;
    border: 1px solid #20df80;
    border-radius: 10px;
    box-shadow: 0 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 120px;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 150px;
  }

  .category-card.active {
    background-color: #00e676;
    color: #333;
  }

  .category-icon {
    color: #ff7f32;
    font-size: 32px;
    margin-bottom: 10px;
  }

  .category-card.active .category-icon {
    color: #333;
  }

  .category-name {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
  }

  .nav-button {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #666;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    margin: 0 10px;
    width: 40px;
    z-index: 10;
  }

  .nav-button:hover {
    background-color: #f5f5f5;
  }

  .nav-button:active {
    transform: scale(0.95);
  }

  .pagination-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
  }

  .dot {
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    transition: all 0.3s ease;
    width: 10px;
  }

  .dot:hover {
    background-color: #ccc;
  }

  .dot.active {
    background-color: #ff7f32;
    transform: scale(1.2);
  }
}

@media (max-width: 592px) {
  .langSl {
    flex-direction: column;
  }

  .popup-header h3 {
    font-size: 20px !important;
  }

  .popup-header button {
    font-size: 18px !important;
  }

  .popup-header {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 13px;
  }
}