@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;
  padding-left: 30px;
  padding-right: 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-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 {
  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 {
  /*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 {
  color: var(--shade3) !important;
}

.refresh-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  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: 5px 10px;
  z-index: 1;
  position: absolute;
  transform: translateY(-50%) !important;
  bottom: -40px !important;
  left: 0;
  font-size: 14px;
  font-weight: 400;
}

.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: auto;
  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: 10 !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;*/
/*}*/

/* NEW CHANGES */

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

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

.status-table thead tr {
  padding: 7px 14px;
  border-bottom: 1px solid rgb(206, 206, 206);
}

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

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

.download-path {
}

.downloadheader {
  font-weight: 500 !important;
}

.path-design {
  font-size: 14px;
  color: grey;
}

.main-section-content {
  margin-top: 5rem;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  width: 95%;
  gap: 2rem;
}

.cluster-header {
  background: var(--primary);
  color: var(--body-background);
}

.input-section {
  display: flex;
  gap: 11rem;
}

.maxwidth-section {
  max-width: 30%;
}

.modal-button {
  background: var(--secondary) !important;
  border: none !important;
}

.modalcustom-footer {
  border-top: none !important;
  justify-content: center !important;
}

.cluster-form {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.button-cluster {
  width: 10%;
  background: var(--primary) !important;
  border: none !important;
}

.label-heading {
  font-weight: 600;
}

.label-colorheading {
  font-weight: 600;
  font-size: small;
  color: var(--secondary);
}

.form-select {
  font-size: 14px !important;
}

/* 
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;
}
