@import url("https://rsms.me/inter/inter.css");

body {
    position: absolute;
    font-family: var(--font-family);
    background-color: var(--body-background) !important;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    counter-reset: join-counter;

}

/* root */
:root {
    /* Color */
    --primary: #2470a0;
    --primary-dark: #0e486d;
    --secondary: #24a092;
    --secondary-dark: #0e6d62;
    --white: #fefefe;
    --tertiary: #fad3cf;
    --shade1: #020104;
    --shade2: #130f26;
    --shade3: #423f51;
    --shade4: #898793;
    --shade5: #e7e7e9;
    --error-light: #c54949;
    --error: #b71c1c;
    --error-dark: #921616;
    --success-light: #8dd181;
    --success: #71c562;
    --success-dark: #5a9e4e;
    --body-background: #f6f6f6;

    /* Font-Family */
    --font-family: inter;
}

/*width*/

.w-95 {
    width: 95% !important;
}

.w-90 {
    width: 90% !important;
}

.w-85 {
    width: 85% !important;
}

.w-80 {
    width: 80% !important;
}

.w-70 {
    width: 70% !important;
}

.w-65 {
    width: 65% !important;
}

.w-60 {
    width: 60% !important;
}

.w-55 {
    width: 55% !important;
}

.w-50 {
    width: 50% !important;
}

.w-45 {
    width: 45% !important;
}

.w-40 {
    width: 40% !important;
}

.w-35 {
    width: 35% !important;
}

.w-30 {
    width: 30% !important;
}

.w-20 {
    width: 20% !important;
}

.w-15 {
    width: 15% !important;
}

.w-10 {
    width: 10% !important;
}

.w-5 {
    width: 5% !important;
}

/* Fonts */
.caption {
    color: var(--shade3);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.header3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
}

.header2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.subtitle-body {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

.bold-body-primary {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary);
    width: 200px;
}

.bold-body-secondary {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--secondary);
    width: 200px;
}

.bold-body-data-qc {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--shade2);
    width: 200px;
}

.bold-body-18 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--secondary);
    width: 200px;
}

textarea {
    min-height: 25vh;
    padding: 10px;
    font-size: 16px !important;
    font-weight: 400;
    color: var(--shade2) !important;
}

.join-title-count::before {
    counter-increment: join-counter;
    content: "Join File " counter(join-counter);
}

.link-secondary {
    color: var(--shade3);
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
}

.link-secondary:hover,
.link-secondary:hover svg path {
    color: var(--secondary) !important;
    stroke: currentColor;
}

.card-heading-primary {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}

.card-heading-secondary {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;

}


.card-heading-hover {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    height: auto;
}

.card-heading-data-qc {
    font-size: 20px;
    font-weight: 600;
    color: var(--shade3);
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}

.body-font {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
}

.main-heading {
    font-size: 64px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0;
}

.switch-font {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    text-decoration: none;
}

/* CSS */
.main-container {
    background-image: url(/assets/images/Background_Image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
}

.error-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-items: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    color: var(--primary);
    padding: 28px 0;
    background-color: var(--white);
    margin: 0;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(149, 157, 165, 0.5);
}

.error-container img {
    margin: 0;
    height: 300px;
}

.error-container div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: uppercase !important;
}

.login-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 40%;
    padding-top: 5%;
}

.login-form {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: left;
    padding: 58px;
    border-radius: 10px;
}

.button-secondary:focus-visible,
.button-secondary:focus {
    color: var(--white);
    background-color: var(--secondary);
    outline: 2px solid var(--secondary-dark);
    box-shadow: 2px 2px var(--secondary-dark);
}


.form-control:focus {
    box-shadow: none !important;
}

.login-form input {
    border-radius: 0;
    width: 470px;
    border: 0;
    border-bottom: 0.25px solid var(--shade4);
}

.login-form input:focus {
    border-bottom: 0.5px solid var(--shade4);
}

.button-flex {
    display: flex;
    justify-items: center;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.recovery-message {
    width: 399px;
    display: none;
}

.choice-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--white);
    width: 100%;
    height: 100%;
    align-items: left;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px rgba(149, 157, 165, 0.5);
    cursor: pointer;
}

.choice-card hr {
    width: 100%;
    color: var(--shade4);
}

.choice-card img {
    width: 70px;
}

.hover-choice-card {
    position: absolute;
    display: flex;
    opacity: 0;
    flex-direction: column;
    gap: 30px;
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    align-items: left;
    padding: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px rgba(149, 157, 165, 0.5);
    color: var(--white);
    cursor: pointer;
}

.choice-card-title {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.secondary-card {
    background-color: var(--secondary);
}

.data-qc-card {
    background-color: var(--shade2);
}

.select-container {
    grid-area: content;
    width: 100%;
    height: 90vh;
}

.select-card {
    position: relative;
    width: auto;
    height: 350px;
}

.select-card:hover .choice-card {
    opacity: 0;
    transition: all 0.3s ease-in;
}

.select-card:hover .hover-choice-card {
    opacity: 1;
    transition: all 0.3s ease-in;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--white);
    display: flex;
    padding: 10px 30px;
    padding-left: 20px;
    width: 100vw;
    justify-items: center;
    align-items: center;
    box-shadow: 0px 4px 7px rgba(149, 157, 165, 0.2);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--white);
    display: flex;
    padding: 10px 30px;
    padding-left: 20px;
    width: 100vw;
    box-shadow: 0px 4px 7px rgba(149, 157, 165, 0.2);
}

.logo-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-items: center;
    align-items: center;
}

.logo-decor {
    width: 130px;
    height: 29px;
}

.main-logo-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-items: center;
    align-items: center;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-jobs-dropdown,
.config-dropdown {
    display: flex;
    flex-direction: row;
    gap: 35px;
    width: 100% !important;
}


.dropdown-p-text {
    display: flex;
    flex-direction: row;
    gap: 600px;
    width: 100%;
}

.client-jobs-dropdown .form-select,
.config-dropdown .form-select,
.input-form .form-select {
    height: 42px;
    cursor: pointer;
    border-color: var(--shade4) !important;
    color: var(--shade1);
    font-size: 14px;
}

.test-form-select {
    height: 42px;
    cursor: pointer;
    border-color: var(--shade4) !important;
    color: var(--shade1);
}

.config-dropdown form {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    grid-area: content;
    flex-direction: column;
    gap: 30px;
    margin: 1rem;
    /*width: 50%;*/
    padding: 2rem;
    /*height: fit-content;*/
    border-radius: 10px;
    background-color: var(--white);
    overflow-y: auto;
}

.input-form {
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.input-form-100 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-form-48 {
    display: flex;
    flex-direction: column;
    width: 48%;
}
.input-form-35 {
    display: flex;
    flex-direction: column;
    width: 35%;
}


.input-form-25 {
    display: flex;
    flex-direction: column;
    width: 25%;
}
.input-form-5 {
    display: flex;
    flex-direction: column;
    width: 5%;
}

.custom-input-field:focus-visible,
.custom-input-field:focus {
    outline-color: var(--secondary);
    border: 1px solid var(--secondary);
    outline: 0 !important;
    box-shadow: none !important;
}

.test-module-input-field:focus-visible,
.test-module-input-field:focus {
    outline-color: var(--primary);
    border: 1px solid var(--primary);
    outline: 0 !important;
    box-shadow: none !important;
}

.textbox-with-label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.custom-input-field, .test-module-input-field {
    height: 42px;
    border: 1px solid var(--shade4);
    border-radius: 3px;
    box-shadow: none;
    padding-left: 10px;
    color: var(--shade1);
    width: 100%;
    /*min-width: 248px;*/
}

.custom-input-field-job {
    height: 42px;
    border: 1px solid var(--shade4);
    border-radius: 3px;
    box-shadow: none;
    padding-left: 10px;
    color: var(--shade1);
    width: 100%;
}

.custom-input-field-email {
    height: 42px;
    border: 1px solid var(--shade4);
    border-radius: 3px;
    box-shadow: none;
    padding-left: 10px;
    color: var(--shade1);
    width: 100%;
}

.plan-job-wrapper {
    margin-top: 40px;
}

.nav-link:hover ,.sub-nav-link:hover{
    border-color: var(--shade5) var(--shade5) var(--shade5) !important;
    color: var(--secondary) !important;
}

.nav-tabs {
    border-bottom: 1px solid var(--secondary) !important;
}

.nav-profile-picture {
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.dropdown-p-text-job {
    display: flex;
    flex-direction: row;
    gap: 618px;
    width: 100%;
}

.search-bar {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 640px;
    height: 32px;
    background-color: var(--shade5);
    padding-left: 10px;
    padding: 7px;
    border-radius: 14px;
}

.search-field {
    background: none;
    border: none;
    width: 100%;
}

.search-field:focus-visible {
    outline: none;
}

.footer {
    display: flex;
    grid-area: footer;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--white);
    border-top: var(--shade5);
}

.footer,
.footer-push {
    height: 50px;
}

.main-body-wrapper {
    margin: 0px;
    width: 100vw;
    height: 100%;
}

.body-wrapper {
    margin: 0px;
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: 55px 1fr 50px;
    grid-template-areas:
    "nav header"
    "nav content"
    "nav footer";
    height: 100%;
}

.body-wrapper-collapse {
    margin: 0px;
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    grid-template-rows: 55px 1fr 50px;
    grid-template-areas:
    "nav header"
    "nav content"
    "nav footer";
    height: 100%;
}

.nav {
    position: fixed;
    grid-area: nav;
    left: 0;
    width: 250px;
    padding-top: 10px;
    margin-top: 55px;
    background-color: var(--white);
    height: 100%;
    box-shadow: 0px 4px 7px rgba(149, 157, 165, 0.2);
    transition: 0.1s ease-out;
}

.nav-collapse {
    display: flex !important;
    left: 0;
    position: fixed;
    width: 4.5rem;
    grid-area: nav;
    padding-top: 10px;
    margin-top: 55px;
    background-color: var(--white);
    height: 100%;
    box-shadow: 0px 4px 7px rgba(149, 157, 165, 0.2);
    transition: 0.1s ease-out;
}

.nav-collapse div {
    margin-top: auto;
    margin-bottom: 80px;
}

.nav-collapse div .nav-switch-button {
    width: 100%;
}

.nav-collapse .nav-item,
.nav-collapse .nav-item-margin,
.nav-collapse .nav-item-secondary,
.nav-collapse .nav-item-margin-secondary {
    width: 100%;
}

.nav-collapse .nav-item p,
.nav-collapse .nav-item-margin p,
.nav-collapse .nav-item-secondary p,
.nav-collapse .nav-item-margin-secondary p,
.nav-collapse div a p {
    display: none;
}

.nav-item-margin,
.nav-item-margin-secondary {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    gap: 10px;
    padding: 14px 14px 14px 21px;
    width: 230px;
    color: var(--shade3);
    cursor: pointer;
    text-decoration: none;
}

p
.collapse div, .nav-switch-button {
    width: 100%;
}

.nav-item, .nav-item-secondary {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 14px 14px 14px 21px;
    width: 250px;
    color: var(--shade3);
    cursor: pointer;
    text-decoration: none;
}

.nav-item:hover,
.nav-item:hover svg path,
.nav-item-margin:hover,
.nav-item-margin:hover svg path {
    color: var(--primary);
    fill: currentColor;
    transition: 0.2s ease-in;
}

.nav-item-secondary:hover,
.nav-item-secondary:hover svg path,
.nav-item-margin-secondary:hover,
.nav-item-margin-secondary:hover svg path {
    color: var(--secondary);
    fill: currentColor;
    transition: 0.2s ease-in;
}

.nav-item-secondary:active,
.nav-item-secondary:active svg path,
.nav-item-margin-secondary:active,
.nav-item-margin-secondary:active svg path {
    color: var(--secondary);
    fill: currentColor;
    transition: 0.2s ease-in;
}

.menu-icon {
    cursor: pointer;
}

.menu-icon svg:hover circle,
.menu-icon svg:hover ellipse,
.menu-icon svg:hover rect {
    color: var(--primary);
    fill: currentColor;
}

.dropdown a {
    text-decoration: none;
    height: auto;
    cursor: pointer;
}

a {
    cursor: pointer;
}

.nav div {
    margin-top: auto;
    margin-bottom: 80px;
}

.dropdown-item:active,
.dropdown-item:active svg path {
    color: var(--white) !important;
    fill: currentColor !important;
    background-color: var(--primary) !important;
}

.dropdown-menu {
    background-color: var(--white) !important;
    color: var(--shade3) !important;
    border: none !important;
    border-radius: 7px !important;
    margin-top: 20px !important;
}

/* Buttons */
.button-primary {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 9px 20px;
    border: 0;
    border-radius: 7px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    height: 42px;
    cursor: pointer;
    transition: 0.2s ease-in;
}

.nav-item-margin {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    gap: 10px;
    padding: 14px;
    padding-left: 21px;
    width: 230px;
    color: var(--shade3);
    cursor: pointer;
    text-decoration: none;
}

.nav-switch-button {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 7px 7px;
    border: 2px solid var(--shade3);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    height: 42px;
    cursor: pointer;
    align-items: center;
    color: var(--shade3);
    width: 220px;
}

#processing-nav, #test-nav, #data-qc-nav {
    display: contents;
}

.primary:hover,
.primary:hover svg path {
    color: var(--primary);
    fill: currentColor;
    stroke: currentColor;
    border: 2px solid var(--primary);
    transition: 0.2s ease-in;
}

.white:hover,
.white:hover svg path {
    color: var(--white);
    fill: currentColor;
    stroke: currentColor;
    border: 2px solid var(--white);
    transition: 0.2s ease-in;
}

.active,
.active svg path {
    color: var(--primary);
    fill: currentColor;
    font-weight: 600;
}

.active-secondary,
.active-secondary svg path {
    color: var(--secondary);
    fill: currentColor;
    font-weight: 600;
}

.secondary:hover,
.secondary:hover svg path {
    color: var(--secondary);
    stroke: currentColor;
    border: 2px solid var(--secondary);
    transition: 0.2s ease-in;
}

.button-primary:hover {
    color: var(--white);
    background-color: var(--primary-dark);
    transition: 0.2s ease-in;
}

.button-secondary {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 9px 20px;
    border: 0;
    border-radius: 7px;
    background-color: var(--secondary);
    /*border: #921616 5px;*/
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
}

.button-data-qc {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 9px 20px;
    border: 0;
    border-radius: 7px;
    background-color: var(--shade3);
    /*border: #921616 5px;*/
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
}


.button-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white) !important;
    transition: 0.2s ease-in;
}

.ghost-button-secondary {
    padding: 9px 20px;
    border: 0;
    border-radius: 7px;
    background-color: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
    gap: 10px;
}

.ghost-button-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    border-color: var(--white);
    transition: 0.2s ease-in;
}

.button-link {
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    border: 0;
    color: var(--primary);
    text-decoration: none;
}

.test-module-button-link {
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    border: 0;
    color: var(--primary);
    text-decoration: none;
}

.test-module-button-link:hover {
    color: var(--primary-dark);
    transition: 0.2s ease-in;
}

.secondary-button-link {
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    border: 0;
    color: var(--secondary);
    text-decoration: none;
    cursor: pointer;

}

.button-link:hover {
    color: var(--primary-dark);
    transition: 0.2s ease-in;
}

.secondary-button-link:hover {
    color: var(--secondary-dark);
    transition: 0.2s ease-in;
}

.form-select:focus {
    border-color: var(--secondary) !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.test-form-select:focus {
    border-color: var(--primary) !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.status-table {
    border: 1px solid rgb(206, 206, 206);
    width: 100%;
    margin-top: 1rem;
    background-color: white;
}

.status-table thead tr th,
.status-table tbody tr td ,
.mrf-file-table tbody tr td,
.mrf-file-table thead tr th, .mrf-index-table thead tr th, .mrf-index-table tbody tr td,.mrf-index-parse-table thead tr th,.mrf-index-parse-table tbody tr td{
    padding: 7px 14px;
    border-bottom: 1px solid rgb(206, 206, 206);
}

.status-table-success {
    color: var(--success-dark);
}

.status-table-pending {
    color: var(--primary);
}

.status-table-fail {
    color: var(--error-light);
}

.w-95 {
    width: 95% !important;
}

.plan-job-p {
    display: inline-flex;
    gap: 180px;
}

.table-action-option {
    /*display: flex;*/
    gap: 80px;
}

.mongo-table-action-option {
    gap: 80px;
}

.tabs {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.tabs-item {
    display: flex;
    flex-direction: row;
    color: var(--shade3);
    cursor: pointer;
    text-decoration: none;
}

.nav-link.active , .sub-nav-link.active{
    /*color: var(--primary) !important;*/
    /*background-color: var(--white) !important;*/
    /*border-color: var(--primary) var(--primary) var(--white) !important;*/

    color: var(--secondary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) var(--primary) var(--white) !important;
}
.nav-link.show , .sub-nav-link.show{
    /*color: var(--primary) !important;*/
    /*background-color: var(--white) !important;*/
    /*border-color: var(--primary) var(--primary) var(--white) !important;*/

    color: var(--secondary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) var(--primary) var(--white) !important;
}

.nav-link-secondary.active-secondary {
    color: var(--secondary) !important;
    background-color: var(--white) !important;
    border-color: var(--secondary) var(--secondary) var(--white) !important;
}

.nav-link, .sub-nav-link {
    color: var(--shade3) !important;
}


.refresh-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: #24a092;
    margin-top: 8px;
    color: var(--white);
}

.status-refresh-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    margin-top: 8px;
    color: var(--secondary);
}

.tooltip-container .tooltip-text {
    display: none;
    width: max-content;
    background-color: var(--shade4);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    padding: 6px 10px;
    z-index: 1;
    position: absolute;
    transform: translateY(-50%) !important;
    bottom: -12px !important;
    font-size: 10px;
    font-weight: 400;
    top: 4px;
    left: 105%;

}


.tooltip-container {
    position: relative;
}



.tooltip-container:hover .tooltip-text,
.tooltip-container:hover .tooltip-table {
    display: inline;
}

.tooltip-container .tooltip-text::after,
.tooltip-container .tooltip-table::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--shade4) transparent transparent;
}


.tooltip-container .tooltip-table {
    display: none;
    width: max-content;
    background-color: var(--shade4);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    z-index: 1;
    position: absolute;
    transform: translateY(-50%) !important;
    bottom: -50px !important;
    left: 0;
    font-size: 14px;
    font-weight: 400;
}

.tooltip-container .tooltip-table::after {
    top: 50%;
    right: 100%;
}

.tooltip-container .tooltip-text::after {
    bottom: 100%;
    left: 5px;
    transform: rotate(90deg);
}


.status-table, .mrf-file-table , .mrf-index-parse-table, .mrf-index-table{
    /*border-bottom: 1px solid rgb(206, 206, 206);*/

    width: 100% !important;
    height: auto;
    margin-top: 1rem;
    background-color: white;
}

.status-table tr, .status-table td, .status-table th , .mrf-file-table td,.mrf-file-table th,.mrf-file-table tr, .mrf-index-parse-table tr th td,.mrf-index-table tr th td {
    width: auto;
    vertical-align: middle;
    padding: 0.5rem 0.5rem;


}


.status-table td , .mrf-file-table td{
    border-bottom: 1px solid rgb(206, 206, 206);

}

/*tr, td, th{*/
/*    padding: 0.5rem 0.5rem;*/
/*    display: flex;*/
/*    width: 100% !important;*/
/*    align-items: center;*/
/*    vertical-align: middle;*/
/*    align-self: stretch;*/


/*}*/


/*tr{*/
/*    height: fit-content;*/
/*    display: flex;*/
/*    width: 100% !important;*/
/*    align-items: flex-end;*/
/*    !*text-align: center ;*!*/
/*}*/

/*th{*/
/*    height: fit-content;*/
/*    display: flex;*/
/*    width: 100% !important;*/
/*    align-items: center;*/
/*    !*text-align: center ;*!*/
/*    border-bottom-width: 0 !important;*/
/*} */


thead, tbody {
    width: 100% !important;
}

thead {
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

tbody {
    display: table-header-group;
    /* max-height: 400px; */
    overflow-y: auto;
}

.table-container {
    overflow-y: auto;
    height: 600px;
}

.table-header-primary {
    background-color: var(--primary);
    color: var(--white);
}

.table-header-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.table-header-data-qc {
    background-color: var(--shade3);
    color: var(--white);
}


.main-table {
    height: 10px;
    width: 100% !important;
}

.main-table thead tr, .main-table tbody tr td, .main-table thead tr th {
    width: auto;
    vertical-align: middle;
}

.main-table thead tr th, .report-summary-table thead tr th {
    border-bottom-width: 0 !important;

}

.main-table thead, .main-table tbody {
    width: 100% !important;
}

.main-table thead , .mrf-file-table{
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.main-table tbody, .report-summary-table tbody , .mrf-file-table{
    display: table-header-group;
    overflow-y: auto;
}

#config-form {
    visibility: hidden;
}

.select2-selection span {
    display: none;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    min-height: 42px !important;
}

.select2-container--default .select2-selection--multiple {
    display: flex !important;
    align-items: center;
}

.select2 {
    width: 100% !important;
}

.selection span {
    display: flex;
}

.selection span button,
.select2-selection__choice button span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: 1px solid var(--shade3) !important;
    border-radius: 3px !important;
    width: 20px !important;
    height: 20px;
    padding: 0 !important;
}

.selection span button span,
.select2-selection__choice button {
    display: flex !important;
    align-items: center !important;
    color: var(--shade3);
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: 10px;
    width: 10px !important;
    padding-bottom: 2px !important;
}

option:hover {
    background-color: var(--secondary) !important;
}

.select2-search textarea {
    display: none !important;
}

.select2-selection__choice {
    display: flex !important;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: var(--white);
    border: 1px solid var(--shade4) !important;
    border-radius: 3px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single {
    border: 1px solid var(--secondary) !important;
}

.selection span span,
.select2-selection__choice span {
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    width: 30px !important;
}

.select2-container .select2-selection--single {
    display: flex !important;
    flex-direction: row-reverse;
    align-items: center;
    padding-right: 30px;
    justify-content: space-between;
    width: 100%;
}

.select2-results {
    color: var(--shade3) !important;
}

.select2-dropdown {
    border-left: 1px solid var(--secondary) !important;
    border-right: 1px solid var(--secondary) !important;
    border-bottom: 1px solid var(--secondary) !important;
    border-radius: 0px 3px !important;
}

.select2-selection__rendered {
    width: 100%;
    padding-left: 10px !important;
}

.select2-results__option .select2-results__option--selectable {
    color: var(--shade3) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}

.select2-selection:focus-visible {
    outline: none !important;
}

.icon-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    border: 0;
    border-radius: 7px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
}

.icon-button:hover {
    background-color: var(--secondary-dark);
    color: var(--white) !important;
    transition: 0.2s ease-in;
}

.ghost-button-primary {
    padding: 9px 20px;
    border: 0;
    border-radius: 7px;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
}

.ghost-button-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
    transition: 0.2s ease-in;
}


.table-header-primary {
    background-color: var(--primary);
    color: var(--white);
}

/*#add-module-table{*/
/*    visibility:hidden;*/
/*}*/
.custom-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkbox-with-label {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
}

#modalForm {
    visibility: hidden;
}

.test-case-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*#show-config-table{*/
/*    visibility: hidden;*/
/*}*/
.input-form-100 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-form-75 {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.testModuleLabel {
    display: flex;
}

.testModuleLabel label {
    margin-right: 10px;
}

.index-view {
    color: var(--primary);
    cursor: pointer;
    font-size: 12px;
}

.index-info {
    margin-right: 10px;
}

/*#web-table {*/
/*    visibility: hidden;*/
/*}*/

.job-config {
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 25px
}

.job-config-box {
    padding-left: 20px;
    border: #0e6d62;
    margin: 10px;
    border: 1px solid #0e6d62;
    border-radius: 10px;
}

.job-config-input-form-100 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    padding-top: 20px;
    padding-right: 20px ;
}

.job-config-textbox-with-label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
}

.job-config-input-field {
    width: 50%;
}

.job-config-form-select {
    height: 42px;
    cursor: pointer;
    border-color: var(--shade4) !important;
    color: var(--shade1);
    font-size: 14px;
    width: 90%;
}

.job-config-custom-input-field {
    height: 42px;
    border: 1px solid var(--shade4);
    border-radius: 3px;
    box-shadow: none;
    padding-left: 10px;
    color: var(--shade1);
    width: 90%;
}

.job-config-header3 {
    font-size: 16px;
    font-weight: 500;
    padding-left: 10px;
}

/* Job */
.job-box {
    padding-right: 20px;
    margin: 10px;
    border: 1px solid #0e6d62;
    border-radius: 10px;
}

.job {
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 25px
}

.job-status-table {
    width: 98% !important;
    height: auto;
    margin: 1rem;
    background-color: white;
}

.job-table-header-secondary {
    background-color: var(--white);
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
    font-size: 14px;
}

.job-status-table-body {
    font-size: 13px;
}
.job-custom-input-field {
    height: 42px;
    border: 1px solid var(--shade4);
    border-radius: 3px;
    box-shadow: none;
    padding-left: 10px;
    color: var(--shade1);
    width: 90%;
}

.job-config-form {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.job-config-client-jobs-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 50% !important;
}

.job-see-history {
    display: block;
    text-align: right;
    color: #24a092;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 0px;
    text-decoration: none;
}

.job-see-history:hover {
    display: block;
    text-align: right;
    color: #24a092;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 0px;
    text-decoration: none;
}

/* Job Status */
.job-status-head {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: -55px;
    background-color: white;
    z-index: 100;
}

.job-status-head-paragraph {
    font-size: 18px;
    color: #24a092;
    margin-bottom: 0px;
}

.job-status-head-option {
    display: flex;
    gap: 40px;
    margin: 10px;
}

.job-status-body {
    margin-left: 15px;
}

.job-status-body-head {
    display: flex;
    column-gap: 20px;
    margin: 15px 20px 10px 5px;
}

.job-status-body-head-header5 {
    font-weight: 500;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 0px;
}

.job-status-refresh-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    color: var(--secondary);
}

.job-status-body-table-content {
    margin-left: 20px;
    margin-top: 20px;
}

.job-status-body-table-header-secondary {
    color: var(--secondary);
    background-color: var(--white);
    border: none;
    border-top: 1px solid;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    position: sticky;
    text-align: justify;
    height: 40px;
    vertical-align: middle;
    top: 20px;
    z-index: 100;
    border-bottom: 1px solid;
    padding: 0;
}

.job-status-body-body {
    font-size: 13px;
    /*height: 256rem;*/
}

.body-status-body-w-35 {
    width: 30% !important;
}

.body-status-body-w-15 {
    width: 17% !important;
}

.body-status-body-w-10 {
    width: 10% !important;
}

.table-status-body-row {
    height: 40px;
    border: none;
    border-bottom: 1px solid #EEF5FF;
}

.job-status-body-main-table {
    height: 20px;
}

.horizontal-line {
    border-top: 1px solid #DDE6ED;
}

.job-status-pop-up-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.job-status-pop-up {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    max-width: 80%;
    text-align: center;
    overflow-y: auto;
    max-height: 80vh;
}

.job-status-pop-up-overlay:target {
    display: block;
}

.job-status-pop-up-body-head {
    display: flex;
    column-gap: 20px;
    margin: 0px 5px 5px 5px;
    color: var(--secondary);
}

.job-status-pop-up-body-head-header5 {
    margin: 0px 0px 0px 10px;
}

.job-status-pop-up-body-table-content {
    margin-left: 10px;
    margin-top: 10px;
}

.job-status-pop-up-body-table-header-secondary {
    color: var(--secondary);
    background-color: var(--white);
    border: none;
    border-top: 1px solid;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    position: sticky;
    text-align: justify;
    height: 40px;
    vertical-align: middle;
    top: -25px;
    z-index: 100;
    border-bottom: 1px solid;
    padding: 0;
}

/* cluster */
.cluster-main-section {

}

.create-cluster-anchor a{
    background: var(--secondary);
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin: 0rem 0rem 1rem 0rem;
}

.create-cluster-anchor a:hover{
    background: var(--secondary-dark);
    color: #fff;
    cursor: pointer;
}

.cluster-table {
    margin: 20px 20px 20px 20px;
}

.cluster-table-body-header {
    color: var(--secondary);
    background-color: var(--white);
    border: none;
    border-top: 1px solid;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    position: sticky;
    text-align: justify;
    height: 40px;
    vertical-align: middle;
    top: 20px;
    z-index: 100;
    border-bottom: 1px solid;
}

.cluster-table-body-body {
    height: 40px;
    border: none;
    border-bottom: 1px solid #EEF5FF;
    font-size: 13px;
}

.cluster-table-body-body-row {
    height: 40px;
    border: none;
    border-bottom: 1px solid #EEF5FF;
}

.cluster-table-body-body-row:hover {
    height: 40px;
    border: none;
    border-bottom: 1px solid #EEF5FF;
    background: #EEF5FF;
}

.cluster-table-heading {
    font-weight: 500;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Create cluster */

.cluster-create-form {
    border: 1px solid var(--secondary-dark);
    border-radius: 10px;
    margin: 5px;
    padding: 15px 15px 15px 15px;
}

.cluster-create-form-workspace {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.cluster-workspace {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 5px;
}
.cluster-workspace-info {
    font-size: 16px;
    color: var(--secondary);
}

.cluster-workspace label {
    font-size: 13px;
    color: var(--secondary);
    margin-left: 5px;
}

.cluster-node {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.master-data-node {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 5px;
}

.master-data-node label {
    font-size: 13px;
    color: var(--secondary);
    margin-left: 5px;
}

.master-data-node div div {
    padding-bottom: 5px;
}

.master-data-node-heading {
    display: flex;
    flex-direction: row;
    /*gap: 40px;*/
    justify-content: space-around;
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary);
    margin-right: 85px;
    margin-bottom: 10px;
}

.master-data-node-heading p{
    margin-bottom: 0;
}

.create-cluster-error-msg {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    color: var(--error);
    border: 1px solid var(--error);
    padding: 10px;
    border-radius: 5px;
    width: 30%;
}

.create-cluster-error-msg p{
    margin: 0;
}

/*
Configure CLuster */

.configure-cluster {
    margin-top: 2rem;
}
.clusterInfo {
    border-radius: 4px;

    box-shadow: rgb(149 157 165 / 16%) 0px 0px 27px;
}

.tab1-content {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clusterOne {
    justify-content: center;
    gap: 3rem;
}

.clusterTwo {
    gap: 3rem;
}

.clusterButtons {
    margin-left: 27rem;
    height: 35px;
    margin-top: 9px;
}

/* Your general styles */
.container-configure {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 21px;
}

.title {
    color: #24a092;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    word-wrap: break-word;
}

.button-groups {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

/* Button styles (Bootstrap classes used for styling) */
.btn {
    height: 37px;
    padding: 8px 14px;
    border-radius: 7px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: Inter;
    font-weight: 700;
    word-wrap: break-word;
}
.processing-button {
    background: #898793 !important ;
    color: white !important;
    /*width: 10rem !important;*/
}

.success-button {
    background: var(--success-dark) !important;
    color: white !important;
}

.modal-header {
    border-bottom: none !important;
}

.modal-footer {
    border-top: none !important;
}

.tab2-information {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tab3-contents {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.backup-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.backupstatus-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.tab2-contents {
    padding: 10px;
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.job-name-no-of-worker {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 10px 30px 0 30px;
}

.job-name-no-of-worker > div {
    width: 48%;
    margin-bottom: 1rem;
}

.parameters-index-name {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 10px 30px 0 30px;
}

.parameters-index-name {
    display: flex;
    justify-content: space-between;
}

.parameters-index-name > div {
    width: 48%;
    margin-bottom: 1rem;
}

.create-index-button {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 10px 30px 10px 30px;
}

.index-backup-create-repo {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 10px;
    margin: 0 10px 0 10px;
}

.index-backup-create-repo > div {
    display: flex;
    flex-direction: row;
    padding: 5px 10px 5px 10px;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.index-backup-create-repo > div > div {
    width: 30vw;
}

.backup-section {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 10px;
    margin: 0 10px 0 10px;
}

.backup-section > div {
    display: flex;
    flex-direction: row;
    padding: 5px 10px 5px 10px;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.backup-section > div > div {
    width: 30vw;
}

.backupstatus-section {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 10px;
    margin: 0 10px 0 10px;
}

.backupstatus-section > div {
    display: flex;
    flex-direction: row;
    padding: 5px 10px 5px 10px;
    gap: 1rem;
    justify-content: space-between;
}

.button-group-config-cluster {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.button-group-config-cluster > div {
    width: 15vw;
}

.cluster-status-btn-lookalike {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-dark);
    color: #fff;
    border: none;
    cursor: auto;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    outline: none;
    font-size: 14px;
}


.cluster-status-btn-lookalike:hover {
    background-color: var(--secondary-dark);
}

.cluster-list-action-svg {
    display: flex;
    gap: 10px;
}

.cluster-action-edit-svg {
    cursor: pointer;
}

.cluster-action-delete-svg {
    cursor: pointer;
}

.backup-status-section {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 10px;
    margin: 0 10px 0 10px;
}

.tab4-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.index-view-status {
    margin: 5px;
    overflow-y: auto;
    max-height: 200px;
    background: #F3F8FF;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 5px;
}

.backup-view-status-section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.job-type-selector {
    display: flex;
    flex-direction: row;
    /*justify-content: space-between;*/
    gap: 10rem;
}

.job-qc-form-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*border: 1px solid #0e486d;
    border-radius: 5px;*/
    margin: 10px 10px 10px 10px;
    padding: 10px 10px 10px 10px;

}

.job-qc-form-layout > div {
    display: flex;
    flex-direction: column;
    /*gap: 5px;*/
    font-size: 18px;
}

.job-qc-form-layout > div input[type="input"] {
    width: 40%;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    margin-left: 10px;
}

.job-qc-form-layout > div label{
    font-size: 14px;
    font-weight: 500;
    color: #0e486d;
}

.job-qc-form-layout > div input[type = "submit"]{
    background-color: var(--shade3);
    cursor: pointer;
    color: var(--white);
    padding: 9px 20px;
    border-radius: 7px;
    border: #921616 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease-in;
    width: fit-content;
    height: fit-content;
    margin-top: 10px;
}

/* MRF PROCESSING*/

.mrf-processing-form-tab {
    margin: 5px 15px 15px 15px;
}

.mrf-processing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mrf-processing-form p {
    margin-bottom: 0px;
}

.mrf-processing-product select{
    width: 30vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.mrf-processing-client-job {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.mrf-processing-client-job select{
    width: 30vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.mrf-processing-job-configuration {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
}

.mrf-processing-job-configuration > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}

.mrf-processing-job-configuration > div > div{
   margin-left: 10px;
}

.mrf-processing-job-configuration select{
    width: 29vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.mrf-processing-job-configuration input{
    width: 30vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.mrf-processing-job-configuration > div > div {
    margin-left: 10px;
}

.mrf-processing-s3-path > input {
    width: 30vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

.mrf-processing-batch-configuration {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mrf-processing-batch-configuration input{
    width: 30vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}

/*mrf parse job*/
.mrf-parsing-form {
    display: flex;
    flex-direction: column;
    width: 50vw;
    padding: 20px;
    /*border: 1px solid #ccc;*/
    /*border-radius: 5px;*/
    float: left;
    gap: 1rem;
}

.parse-radio-group {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: flex-start;
    margin: 0px;
    padding: 10px;
}

.mrf-parsing-batch-configuration {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.mrf-parsing-batch-configuration input{
    width: 18vw;
    border: 1px solid var(--shade4);
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
}


.tab-content{
     display: none;
}
.tab-content.show {
    display: block;
}

.sub-nav-link{
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    text-decoration: none;
    margin-bottom: -1px;
    border: 1px solid transparent;
    background: 0 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
