.ai-tool-title {
    color: #062431;
    text-align: center;
    font-family: Barlow;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal !important;
    text-transform: uppercase;
    padding: 80px 0px 40px !important;
}
.ai-tool-heading {
    color: #062431;
    font-family: Barlow;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal !important;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}
.ai-tool-wrapper {
    margin: 0 auto;
    display: flex;
    max-width: 728px;
    width: 100%;
    height: auto;
    padding: 40px 74px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    border: 0.5px solid #DBE1E8;
    background: #FFF;
    box-shadow: 0px 5px 12px 0px rgba(6, 36, 49, 0.05);
}
.ai-tool-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 12px;
}
.ai-tool-input,
.ai-tool-textarea {
    width: 100%;
    border-radius: 4px !important;
    border: 1px solid #BAC8CE !important;
    background: #FFF;
    display: flex;
    height: 40px;
    padding: 8px 12px;
    color: #7A8E96;
    text-overflow: ellipsis;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.ai-tool-input {
    overflow: hidden;
}

.ai-tool-textarea  {
    height: 110px;
    padding: 18px 12px 12px;
    &:focus-visible {
        border: none;
        outline: none;
    }
}

#ai-describe-counter {
    color: #062431b8;
    font-family: Barlow;
    font-size: 12px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal !important;
}

.ai-tool-input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 4px;

}

.ai-tool-input:focus-visible {
    outline: none;
}
.ai-tool-submit {
    display: flex;
    padding: 8px 28px 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(180deg, #FF7C47 0%, #FC1D5A 100%);
    color: #FFF;
    text-align: center;
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 200% */
    text-transform: uppercase;
}




/* custom dropzone */
.dropzone {
    border: none !important;
    min-height: unset !important; 
    padding: 0 !important;
}
.custom-dropzone-area {
    border-radius: 4px;
    border: 1px dashed #BAC8CE;
    background: #FFF;
    text-align: center;
    background: #FFF;
    max-width: 580px;
    width: 100%;
    min-height: 110px;
}
.custom-dropzone-message {
    color: #FC1D5A;
    font-size: 18px;
    font-family: Barlow;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 43px auto 0;
}
.custom-dropzone-text {
    color:  #0095FF;
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal; /* 142.857% */
    text-transform: uppercase;
}
.custom-dropzone-icon {
    line-height: normal;
}
.custom-preview-list {
    margin-top: 16px;
}
.custom-preview-item {
    display: flex;
    align-items: center;
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(252,29,90,0.08);
    padding: 8px 16px;
    margin-bottom: 8px;
    gap: 16px;
}
.custom-preview-thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #FF7C47;
}
.custom-preview-details {
    flex: 1;
    text-align: left;
}
.custom-preview-filename {
    font-weight: 700;
    color: #062431;
    margin-right: 8px;
}
.custom-preview-size {
    color: #7A8E96;
    font-size: 12px;
}
.custom-preview-progress {
    background: #FDE3DB;
    border-radius: 4px;
    height: 6px;
    margin: 6px 0;
    width: 100%;
}
.custom-preview-upload {
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #FF7C47 0%, #FC1D5A 100%);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s;
}
.custom-preview-error {
    color: #FC1D5A;
    font-size: 12px;
}
.custom-preview-remove {
    background: none;
    border: none;
    color: #FC1D5A;
    font-size: 24px;
    cursor: pointer;
    margin-left: 8px;
}