.tool-section {
    background-color: var(--color-skyblue);
    min-height: 90vh;
}

.recent-batches,
.tool {
    max-width: 720px;
    margin: 32px auto 0;
}

.tool {
    min-height: 300px;
    background: none;
    display: flex;
    flex-direction: column;
    gap: unset;
    padding: unset;
}

.main-tool {
    background-color: white;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drag-n-drop-text {
    line-height: 24px;
    font-weight: 600;
}

.drag-n-drop-text small {
    line-height: 20px;
    width: unset;
}

.batch-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    height: fit-content;
}

.batch-head .text,
.batch-head .text span {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
}

.start-batch {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #7D1AE8;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    transition: all 0.2s ease-in-out;
}

.start-batch:hover {
    color: #5500C0;
}

.black-text-lg {
    font-size: 16px;
    line-height: 24px;
    color: black;
    font-weight: 600;
}

.grey-text-sm {
    font-size: 12px;
    line-height: 16px;
    color: #9DA9B5;
}

.file-count {
    padding: 2px 6px;
    background-color: #F1F3F7;
    border-radius: 99px;
    display: flex;
    align-items: center;
}

.file-count * {
    font-size: 12px;
    line-height: 16px;
}

.upload-area {
    min-height: 112px;
    height: 252px;
    width: 100%;
    border: 2px dashed #DDDDF8;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.upload-area:hover {
    background-color: #f8f9fc;
}

.browse-dropbtn label {
    padding: 8px 32px;
}

.browse-dropbtn label span {
    font-weight: 500;
}

.uploaded-files {
    border: 1px solid #EAEAEA;
    height: 100%;
    max-height: 336px;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
}

.uploaded-files::-webkit-scrollbar,
.batches::-webkit-scrollbar {
    background-color: transparent;
}

.uploaded-files::-webkit-scrollbar-thumb,
.batches::-webkit-scrollbar-thumb {
    background-color: #D8DEE6;
}

.uploaded-file {
    width: 100%;
    border-bottom: 1px solid #EAEAEA;
    background-color: #ffffff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.uploaded-files .uploaded-file:last-child {
    border-bottom: none;
}

.file-name {
    font-size: 14px;
    line-height: 20px;
    color: black;
}

.uploaded-cross {
    cursor: pointer;
}

.uploaded-footer button {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    border: none;
    transition: all 0.2s ease-in-out;
}

.uploaded-footer button:first-child {
    padding: 8px 24px;
    background-color: #F1F3F7;
    color: black;
}

.uploaded-footer button:first-child:hover {
    background-color: #E3E7ED;
}

.uploaded-footer button:last-child {
    padding: 8px 16px;
    background-color: #7D1AE8;
    color: white;
}

.uploaded-footer button:last-child:hover {
    background-color: #5500C0;
}

.recent-head {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: black;
}

.batch-count {
    font-size: 14px;
    line-height: 20px;
    color: #9DA9B5;
}

.batches {
    max-height: 332px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.batch-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.batch-card:hover {
    background-color: #fdfdfd;
}

.folder {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #F1F3F7;
}

.batch-no {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: black;
}

.ellipse {
    width: 4px;
    height: 4px;
    background-color: #9DA9B5;
    border-radius: 50%;
}

.gray-text-sm {
    font-size: 12px;
    line-height: 16px;
    color: #9DA9B5;
}

.load-btn {
    padding: 12px 28px;
    background-color: #FFFFFF;
    width: 100%;
    color: black;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px;
    border: none;
    transition: all 0.2s ease-in-out;
}

.pagination {
    padding: 6px;
    border-radius: 999px;
    border: 0.5px solid #EAEAEA;
    box-shadow: 0px 10px 15px -3px #0000001A,
        0px 4px 6px -4px #0000001A;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    z-index: 10;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}


.pagination .file-no {
    font-size: 12px;
    line-height: 16px;
    color: #363B42;
    font-weight: 500;
}

.pagination .btn {
    cursor: pointer;
}

.pagination .btn path {
    transition: all 0.2s ease-in-out;
}

.pagination .btn:disabled path {
    stroke: #EAEAEA;
}

.pagination .btn:hover path {
    stroke: #000000;
}

.js-image-to-show {
    border-radius: 4px;
    border: 1px solid #EAEAEA;

}

.failed-response {
    border-radius: 99px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 16px;
    color: #ee212b;
    background-color: #ee212b15;
    width: fit-content !important;
    height: fit-content !important;
}

.progress-flg {
    border-radius: 99px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 16px;
}

.progress-flg.blue {
    color: #2563EB;
    background-color: #2563EB14;
}

.progress-flg.green {
    color: #16A34A;
    background-color: #16A34A14;
}

.progress-flg.purple {
    color: #7C3AED;
    background-color: #7C3AED14;
}

.batch-head .text {
    border-bottom: 1px solid #EAEAEA;
}

.tabs {
    padding: 2px;
    border-radius: 8px;
    background-color: #F1F3F7;
    display: flex;
    align-items: center;
    height: 34px;
}

.tabs button {
    background-color: transparent;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 18px;
    color: #9DA9B5;
    border: none;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.disabled-tabs {
    cursor: not-allowed;
}

.tabs button.active {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.right-actions div {
    height: 32px;
    width: 32px;
}

.uploaded-file .loading {
    position: relative;
    z-index: 0;
}

.uploaded-file .loading img {
    pointer-events: none;
}

.uploaded-file .loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 50%;
    pointer-events: none;
    z-index: 1;
}

.loader img {
    animation: spin 1s linear infinite;
}

.pagination .btn.disabled {
    cursor: not-allowed;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}