.input-left-container {
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.input-left-container-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px;
    justify-content: space-between;
}
.auto-toggle-container {
    position: relative;
    display: flex;
    background-color: #f0f0f4;
    border-radius: 22px;
    padding: 4px;
    width: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 44px;
    border-radius: 22px;
    background: #F1F2F4;
  }
  
  .auto-slider {
    position: absolute;
    width: 73px;
    height: calc(100% - 8px);
    top: 4px;
    left: 4px;
    background-color: white;
    border-radius: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .auto-toggle-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: #718096;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }
  
  .auto-toggle-btn.auto-active {
    color: #0E0B29;
  }
  
  .auto-toggle-btn:focus {
    outline: none;
  }

  .auto-lock-img {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
  }

    .auto-help {
        cursor: pointer;
    }

    .vs-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1051;
    }
    .vs-modal-content {
        background-color: #fff;
        text-align: center;
        border-radius: 15px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        max-width: 418px;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: auto;
        padding: 32px;
    }
    .vs-modal-close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 20px;
        cursor: pointer;
        color: #131417;
    }
    
    .vs-modal-title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #2f3540;
    }
    
    .vs-modal-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
        color: #2f3540;
        text-align: left;
    }
    
    .vs-mode-section {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .vs-mode-title {
        font-size: 18px;
        font-weight: bold;
        color: #2f3540;
        margin-bottom: 8px;
    }
    
    .vs-mode-premium {
        display: flex;
        align-items: center;
        margin-top: 8px;
    }
    
    .vs-mode-premium-icon {
        color: #FFD700;
        font-size: 16px;
    }
    
    .vs-mode-list {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .vs-mode-list li {
        display: flex;
        align-items: flex-start;
        color: #2f3540;
    }
    
    .vs-mode-list li::before {
        content: "✓";
        color: #44C751;
        margin-right: 6px;
    }
    
    .vs-upgrade-button {
        padding: 12px;
        border-radius: 12px;
        background-image: linear-gradient(95deg, #9D3CEA 0%, #6D5AF8 48%, #6D5AF8 98%);
        color: white;
        border: none;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin-top: 8px;
    }
    
    .vs-upgrade-button:hover {
        opacity: 0.9;
    }
    
    .vs-arrow-icon {
        margin-left: 6px;
    }

    .auto-notice {
        position: absolute;
        top: 50px;
        left: 80px;
        z-index: 1000;
        width: 240px;
        display: none;
      }
      .auto-notice-content {
        
        background-color: #513CEA;
        color: #fff;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        text-align: left;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    /* 修改三角形指示器位置和方向 */
    .auto-notice-content::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #513CEA;
    }
    
    /* 当通知显示时的类 */
    .auto-notice.notice-show {
        display: block;
        animation: fadeIn 0.5s ease-out;
    }

    .textarea_mask {
        mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 60%, 
        rgba(0, 0, 0, 0) 100%);
    }

    .output_1_1 {
        width: 100%;
        height: 376px;
        overflow-y: auto;
        font-size: 16px;
        font-weight: 400;
        color: #131417;
        border: 1px solid #D0D0D0;
        word-break: break-word;
        flex-grow: 1;
        border-radius: 14px;
        /* font-family: var(--font_default); */
        padding: 12px;
        padding-right: 42px !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(229, 229, 229, 1) transparent;
    }
    .output_1_1[data-placeholder]:empty::before {
        content: attr(data-placeholder);
        color: #999;
        pointer-events: none;
    }

    /* Customize the color and width of the scrollbar */
    .output_1_1::-webkit-scrollbar {
        width: 10px;
        /* Set scrollbar width */
        border-radius: 10px;
        /*Set scrollbar fillet */
    }

    .output_1_1::-webkit-scrollbar-thumb {
        background-color: #008aff;
        /* Set the scrollbar color to blue */
    }

    .output_1_1::-webkit-scrollbar-track {
        background-color: transparent;
    }

    /* Apply similar styles in non WebKit browsers as well */
    .output_1_1 {
        scrollbar-width: thin;
        scrollbar-color: rgba(229, 229, 229, 1) transparent;
    }
    .outputCountWords {
        display: none;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }


  @media (max-width: 876px) {
    .input-left-container {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.input-left-container-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px;
    justify-content: center;
}
    .humanzieAiAll{
        width: 100%;
    }
    .humanizebtn1 {
        width: 100%;
    }
  }

  @media (max-width: 576px) {
    .input-left-container {
        margin-top: 0;
    }
    .auto-toggle-container {
        height: 36px;
    }
    .auto-toggle-btn {
        font-size: 14px;
    }
    .auto-slider {
        width: 68px;
    }
    .humanizecjbtn {
        font-size: 14px;
        padding: 6px 10px;
    }
    .cj-options {
        width: 110px;
    }
    .cj-option {
        font-size: 14px;
    }
    .humanizemodelbtn {
        font-size: 14px;
        padding: 6px 10px;
    }
    .model-options {
        width: 120px;
    }
    .model-option {
        font-size: 14px;
    }
    .language-change {
        padding: 0;
        margin-top: 0;
        margin-bottom: 16px;
    }
    .vs-modal-content {
        padding: 24px;
    }
    
    .vs-modal-title {
        font-size: 18px;
    }
    
    .vs-modal-description {
        font-size: 14px;
    }
    
    .vs-mode-title {
        font-size: 16px;
    }
    
    .vs-mode-premium-icon {
        font-size: 14px;
    }

    .auto-notice {
        top: 44px;
        left: 30px;
    }
    .outputText {
        padding-right: 24px !important;
    }
  }