@import url("https://fonts.googleapis.com/css?family=Montserrat");

/* THIS IS THE ONE WE USE */
body {
  font-family: "Montserrat", sans-serif;
  /* display: flex; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
}

.katex * {
  font-family:
    KaTeX_Main,
    Times New Roman,
    serif !important;
}

html,
body {
  height: 100%;
  margin: 0;
  /* overflow-y: hidden; */
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 4%;
  width: 100%;
  background: linear-gradient(
    180deg,
    var(--demo-lightgrey) 70%,
    var(--demo-grey) 100%
  );
  text-align: center;
  justify-content: center;
  font-size: 12px;
}

footer {
  bottom: 0;
  height: 4%;
  left: 0;
  position: static;
  /* position: static; relative */
  width: 100%;
  justify-content: center;
  font-size: 12px;
  text-decoration: underline;
  background: linear-gradient(
    180deg,
    var(--demo-lightgrey) 70%,
    var(--demo-grey) 100%
  );
}

.footer > a {
  color: blue;
}

.footer > a:hover {
  text-decoration: underline;
}

/* define the colors of Solid State AI logo */
:root {
  --logo-blue: #9c2626;
  --logo-grey: #828180;
  --demo-green: #00a07b;
  --demo-lightgrey: #f2f2f2;
  --demo-grey: #d2d2d2;
  --demo-darkgrey: #626262;
}

/* ================== */

#title1,
#title2,
#title3,
#title4,
#title5 {
  display: none;
}

/* ================== */
.title {
  display: inline-flex;
  height: 120px;
  background: var(--demo-lightgrey);
  background: linear-gradient(
    180deg,
    var(--demo-lightgrey) 70%,
    var(--demo-grey) 100%
  );

  align-items: center;
  /* box-shadow: 10px 10px 5px var(--demo-lightgrey);     */
}

h1 {
  font-size: 50px;
  margin: 20px 20px;
  color: var(--demo-green);
  text-align: center;
}

ul {
  justify-content: center;
}

li {
  text-align: center;
  list-style: none;
}

a:link,
a:visited {
  color: #5d6063;
  text-decoration: none;
  /* font-size: 12px; */
}

a:hover {
  /* font-size: 1.1em; */
  font-weight: bold;
  color: var(--demo-green);
}

.title > h2 {
  display: inline-block;
  text-align: center;
  justify-content: space-between;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: auto;
  color: var(--demo-darkgrey);
  width: 70%;
  font-size: 35px;
}

.user-session-info {
  font-size: 14px;
  width: 25%;
  /* margin-left: 10%; */
  margin-right: 3%;
  padding: 5px 5px;
  color: var(--demo-darkgrey);
}

.user-session-info > p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.user-session-info > p > em {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--demo-green);
}

.logout-button {
  padding: 2px 5px;
  border: 1px solid var(--logo-grey);
  border-radius: 2px;
  color: var(--logo-grey);
}

.app {
  display: flex;
  flex-flow: column;
}

.logo {
  position: relative;
  left: 8px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 3;
}

.page {
  display: flex;
  overflow: hidden;
  flex-flow: row;
}

.panel {
  /*
  position: absolute;
  display: flex;
  */
  flex-direction: column;
  justify-content: center;
  margin: 10px;
  background-color: var(--demo-lightgrey);
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  /* border: 1px solid #f3f3f3; */
}

.panel > h1 {
  font-size: 1.2em;
  text-align: center;
  margin: 5px auto;
  border-bottom: 1px solid white;
}

button {
  display: flex;
  justify-content: center;
  padding: 8px 12px;
  margin: 5px 0px;
  border: none;
  background: 0;

  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

button:active,
button:hover,
button:focus {
  outline: none;
  background: var(--demo-green);
  color: white !important;
}

/* ======== LOGIN SCREEN ========== */

.login-dialog {
  width: 700px;
  height: 500px;
}

.login-handler {
  /* height: 25px; */
  align-items: center;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  font-size: 13px;
}

.radio-label span:last-child {
  font-size: 13px !important;
  font-family: "Montserrat", sans-serif !important;
}

.form-margin {
  margin-bottom: 5px;
}

.login-form {
  overflow-y: scroll;
  /* width: 90%; */
  padding: 30px;
}

.login-form > p {
  padding-top: 20px;
  padding-bottom: 10px;
  color: var(--demo-green);
}

.login-handler > label {
  /* flex-grow: 1; */
  width: 60%;
  color: var(--demo-darkgrey);
}

.based-input > label {
  color: var(--demo-darkgrey);
}

.login-handler > input {
  width: 150px;
  overflow-x: scroll;
  font-style: oblique;
  flex-grow: 1;
}

input[type="checkbox"] {
  height: 18px !important;
  width: 18px !important;
  overflow-x: hidden !important;
}

.session-objects {
  display: flex;
  flex-direction: column;
}

.session-object-input {
  height: 50px;
  align-items: center;
  justify-content: space-between;
}

.session-object-input > label {
  max-width: 150px;
  padding-right: 10px;
}

.session-object-input > select {
  width: 500px;
  overflow-x: scroll;
}

.learning-param-input {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.learning-param-slider {
  width: 100px;
}

.login-handler:last-of-type {
  border-top: 1px solid white;
  font-weight: bold;
  height: 50px;
  justify-content: center;
}

/* .login-handler:last-of-type > label {
  width: 350px;
  color: var(--demo-green);
  overflow-x: scroll;
} */

/* .login-handler:last-of-type > input[type=submit]  {
  max-width: 200px;
  color: var(--demo-green);
  font-style: normal;
  justify-content: space-around;
} */

.learning-param {
  height: 40px;
}

.form-group {
  display: flex;
  min-height: 25%;
  flex-flow: row;
  font-size: 0.8em;
  /* justify-content: space-around; */
  align-items: center;
  padding: 10px 0px;
}

.form-group > label {
  width: 250px;
  text-align: left;
  padding-right: 10px;
  color: var(--demo-darkgrey);
}

.form-group > input {
  max-width: 400px;
  font-size: 0.8em;
  overflow-x: scroll;
  text-align: left;
  padding: 0px;
}

.mocvd-extractor-config {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
}

.mocvd-extractor-config > input {
  width: 250px;
}

.mocvd-source-control-form {
  display: flex;
  flex-direction: column;
}

.mocvd-source-control-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
  /* max-height: 100px; */
  border: #00a07b;
  border-style: solid;
  border-radius: 2px;
  transition: max-height 0.4s ease;
}

.mocvd-source-uploaded-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-height: 60px;
  overflow-y: scroll;
  border: 1px solid var(--demo-grey);
}

.mocvd-source-uploaded-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: left;
  width: 100%;
  padding: 2px;
  font-size: 0.8em;
  border-bottom: 1px solid var(--demo-lightgrey);
}

.mocvd-dialog {
  width: 1200px;
  margin: 10px;
  height: 800px;
}

/* .learning-param:last-of-type > input {
  align-items: center;
  justify-content: center;
} */

/* ======== LOADING SCREEN ========== */

.fill-screen {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.popup-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  background-color: var(--demo-lightgrey);
  border-radius: 5px;
  justify-content: space-around;
  align-items: center;
  text-align: left;

  box-shadow:
    0 4px 1000px 1000px rgba(0, 0, 0, 0.3),
    0 6px 20px 0 rgba(0, 0, 0, 0.39);

  margin: 20px;
}

.loading-dialog {
  width: 500px;
  height: 200px;
  color: var(--logo-grey);
}

.loading-progress {
  width: 400px;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.loading-progress-bar {
  width: 300px;
  height: 50px;
  padding-right: 20px;
}

/* ======== NAVIGATION PANEL ========== */

.nav {
  width: 15%;
}

/* Style the accordion section */
.accordion__section {
  display: flex;
  flex-direction: column;
}

/* Style the accordion chevron icon */
.accordion__icon {
  margin-left: auto;
  transition: transform 0.4s ease;
}

/* Style to rotate icon when state is active */
.rotate {
  transform: rotate(90deg);
}

/* Style the accordion content panel. Note: hidden by default */
.accordion__content {
  background-color: white;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__section > button {
  width: 100%;

  font-size: 16px;
  border-bottom: 1px solid white;
}

button.logout-button {
  position: relative;
  z-index: 3;
}

em {
  position: absolute;
  margin-left: 100px;
}

.dropdown-btn {
  width: 100%;
  font-size: 13px;
  justify-content: left;
}

.dropdown-btn:hover {
  background: var(--logo-grey);
  color: white;
}

/* ======== TOP SHELF ========== */

.top {
  top: 0;
  height: 20px;
  text-align: center;
  margin: 20px 0;
}

.top > p {
  color: var(--demo-darkgrey);
}

.top-shelf {
  width: 70%;
  /* margin: 0 auto; */
}

.pipeline {
  width: 80%;
  height: 80px;
  display: flex;
  flex-direction: column;
  margin: 5px auto;
}

.pipeline-flow {
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pipeline-node {
  display: flex;
  flex: 1;
  flex-direction: row;
}

.pipeline-node:last-child {
  flex: 0.1;
}

.dot {
  height: 35px;
  width: 35px;
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid #888;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.edge {
  /* width: 130px; */
  /* width: 100%; */
  position: relative;
  top: 15px;
  height: 1px;
  display: flex;
  flex: 1;
  opacity: 0.6;
  border: 3px dashed #888;
}

.edge:hover {
  border: 3px dashed var(--demo-green);
}

.pipeline-labels {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pipeline-labels > li {
  font-size: 14px;
}

.actions-list {
  opacity: 0.7;
  max-width: 250px;
  overflow-x: auto;
  max-height: 150px;
  font-size: 12px;
  cursor: pointer;
}

.actions-list > li:hover {
  color: white;
  font-size: 1.03em;
  font-weight: bold;
  opacity: 1;
}

.tooltip {
  color: var(--demo-grey);
  opacity: 0.7 !important;
  /* font-size: 12px; */
  max-width: 300px;
  overflow-x: scroll !important;
  max-height: 150px;
  font-size: 12px;
  cursor: pointer;
}

.tooltip:hover {
  opacity: 0.9 !important;
  color: var(--demo-grey);
}

.show-more-token {
  color: white;
  font-size: 0.9em;
  cursor: pointer;
}

.show-more-token:hover {
  font-weight: bold;
  font-size: 0.94em;
}

/* ======== MAIN BODY ========== */

.topshelf-canvas-spacer {
  height: 50px;
}

.main-body {
  width: 65%;
  justify-content: center;
  margin-left: 5%;
  /* margin: 0 auto; */
}

.main-body-full {
  width: 90%;
  justify-content: center;
  margin-left: 5%;
}

.canvas {
  width: 100%;
  height: 700px;
  justify-content: center;
  margin-bottom: 150px;
}

.plotly-canvas {
  width: 100%;
  height: 100%;
}

/* ======== DATA SUMMARY ========== */

.table-subheader {
  display: flex;
  flex-direction: row;
  width: 100%;
}

/*
.table-container {
  overflow: visible;
}
*/

.table-subheader-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  /* border: 1px solid #e5e5e5; */
  margin: 0 80px 0 10px;
}

.table-subheader-meta {
  /* border: 1px solid #ddd; */
  font-size: 15px;
  /* height: 32px; */
  color: #666;
  opacity: 0.65;
  font-style: normal;
  margin: 0;
  padding: 5px;
}

.table-subheader-meta:hover,
.table-subheader-meta:active {
  background: inherit;
  color: inherit;
  opacity: 1;
  border-bottom: 1px solid var(--demo-green);
}

.txn {
  width: 100%;
  color: var(--logo-grey);
  margin: 20px auto 50px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.txn-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.txn-meta > p {
  padding: 5px;
}

.txn-table {
  /* overflow-x: auto; */
  display: flex;
  /* width: 100%; */
  flex-flow: column nowrap;
  font-size: 0.8rem;
  margin: 0.5rem;
  line-height: 1.5;
  flex: 1 1 auto;
  overflow: visible;
}

.txn-table-clear {
  border: 1px solid #ddd;
  font-size: 14px;
  color: #aaa;
  font-style: normal;
  margin: 0;
  padding: 5px;
  border-radius: 3px;
}

/* for double scroll bars */
.sc-kfYoZR.cAVVrM {
  max-width: 100vw;
  overflow-x: auto;
  /*overflow: visible;*/
}

.txn-header {
  display: none;
  font-weight: 1000;
  /* background-color: var(--demo-lightgrey); */
  cursor: pointer;
  font-size: 1.1em;
  margin: 0 10px;
  padding: 0 10px;
  /* width: 100%; */
  display: flex;
  flex-flow: row nowrap;
}

.txn-data {
  width: 100px;
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0.5em;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #d0d0d0;
  overflow: visible;
  background-color: cadetblue;
}

.txn-header > .txn-data {
  white-space: normal;
  font-style: oblique;
  border-bottom: 2px solid var(--logo-grey);
}

.txn-row {
  font-size: 1.1em;
  margin: 0 10px;
  padding: 0 10px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}

.txn-row:nth-of-type(even) {
  background-color: var(--demo-lightgrey);
}

.txn-row:nth-of-type(odd) {
  background-color: white;
}

.txn-row:hover,
.txn-data:hover {
  color: var(--demo-green);
}

/* .txn-row:focus,
.txn-row:active {
  background: var(--demo-green);
  color: white;
  opacity: 0.7;
} */

.custom-context {
  border: solid 1px #ccc;
  display: inline-block;
  margin: 5px;
  background: white;
  color: var(--logo-grey);
  cursor: pointer;
  font-size: 14px;
}

.custom-context-item {
  border-bottom: dotted 1px #ccc;
  padding: 5px 25px;
}

.custom-context-item-last {
  padding: 5px 25px;
}

.custom-context-item:hover,
.custom-context-item-last:hover {
  font-weight: bold;
  color: #333;
}

/* ======== CONFIG PANEL ========== */

/* ======== PARAMETERS PANEL ========== */

textarea {
  /*
    min-height: 50px;
  max-height: 100px;
  overflow: hidden;
  */
  border: none;
  padding-left: 5px;
  resize: none;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
  /*remove the resize handle on the bottom right*/
  font-size: 12px;
}

.params {
  width: 17%;
  height: auto;
  overflow: hidden;
  right: 10px;
  position: -webkit-sticky;
  /* Safari */
  position: fixed;
  top: 30;
  transition: width 0.6s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.params:hover {
  width: 20%;
}

.param-input {
  color: var(--demo-green);
  font-size: 0.9em;
  text-overflow: ellipsis;
  text-align: left;
  display: flex;
  flex-direction: row;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}

.param-input > h3 {
  color: var(--demo-green);
  font-size: 0.9em;
  text-overflow: ellipsis;
  text-align: right;
}

.param-input:last-of-type {
  border-bottom: 1px solid white;
}

.param-input:hover {
  background: white;
}

.params-button-layout {
  display: flex;
  align-items: space-around;
}

.param-input-field {
  margin-left: 10px;
  height: 20px;
  font-family: "Montserrat", sans-serif;
  color: black;
  border-color: lightgray;
}

.params-button-layout > button {
  width: 40%;
  height: 10%;
  font-size: 16px;
  margin: 5px auto;
}

/* .params-button-layout > button:first-of-type {
  opacity: 0.7;
} */

.params-button-layout > button:first-of-type:hover {
  background: var(--logo-grey);
  color: white;
}

select {
  float: right;
  padding: 8px 12px;
  border: 2px solid #78788c;
  background: 0;
  color: #5a5a6e;
  cursor: pointer;
  transition: all 0.3s;
}

input,
.redirect-form-button {
  /* width: 20%; */
  font-size: 14px;
  /* background: none; */
  outline: none;
  resize: none;
  text-align: center;
  border: 0;
  padding: 1px;
  color: #999;
  transition: all 0.2s;
}

input:focus,
input:hover {
  color: var(--logo-grey);
  border-bottom: 1px solid var(--demo-green);
  /* padding-bottom: 1px 0px 1px 0px; */
}

.param-input-field:focus {
  width: auto;
}

input[type="submit"],
.redirect-form-button {
  min-width: 15%;
  max-width: 300px;
  display: flex;

  justify-content: center;
  padding: 8px 12px;
  border: none;
  background: 0;

  /* color: #555; */
  color: var(--demo-green);

  cursor: pointer;
  transition: all 0.3s;
}

input[type="submit"]:hover,
.redirect-form-button:hover {
  background: var(--demo-green);
  color: white;
}

/* ======== QUERY COMPOSER ========= */

.launch-query-composer {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.query-rows {
  width: 100%;
  max-height: 300px;
  display: flex;
  flex-flow: column;
  align-content: left;
}

.query-command-index {
  width: 30px;
  margin: 0px 20px 0px 0px;
}

.query-command {
  width: 100%;
  display: flex;
  padding: 10px 20px 0px 20px;
  /* margin: 0px 0px 0px 10px; */

  flex-flow: row;
  flex-direction: row;
  justify-content: space-between;
}

.query-command-delete {
  /* width: 20px; */
  text-align: center;
  margin: 0px 0px 0px 20px;
  color: var(--demo-darkgrey);
}

.query-command-add {
  text-align: center;
  font-size: 1em;
  /* margin: 0px 0px 0px 20px; */
}

.query-selector-item {
  min-width: 100px;
  font-size: 1.1em;
}

.query-selector-item:default {
  color: var(--demo-lightgrey);
}

.query-error-message {
  font-size: 12px;
  font-style: italic;
  color: red;
}

.cmd-control {
  width: 100%;
  display: flex;
  flex-flow: row;
  flex-direction: row;
  align-items: center;
  align-content: center;
  margin: 20px 0px 30px 0px;
  justify-content: center;
}

.query-command > label {
  font-size: 0.8em;
  color: var(--demo-green);
  /* display: none; */
}

.cmd-control > label {
  font-size: 0.8em;
  color: var(--demo-green);
  /* display: none; */
}

.popup-dialog > h3 {
  color: var(--logo-grey);
  padding: 20px;
  /* margin-bottom: 40px; */
}

/* ======== ACTIONS PANEL ========== */

.actions {
  width: 100%;
  max-height: 60px;
  overflow: auto;
  background: var(--demo-green);
  color: var(--demo-lightgrey);

  margin: 5px;
  align-items: center;
  align-content: center;

  opacity: 0.7;

  border: solid 1px var(--demo-green);
  border-radius: 0;

  position: fixed;
  bottom: 0;
  right: 0;

  /* transition: width 0.6s; */
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

/* .actions:hover {
  width: 50%;
} */

.actions-element {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.actions-element > button {
  background: inherit;
  color: inherit;
  font-size: 15px;
  font-style: italic;

  width: flex;
  /* height: 25px; */
  align-content: center;
  justify-content: center;
  flex: 1;

  overflow-x: auto;
}

.actions-element > button:last-of-type {
  color: white;
  width: 100px;
  flex: initial;
  font-style: normal;
  font-size: 16px;
}

.actions-element > button:last-of-type:hover {
  font-weight: bold;
}

/* .actions-element > button:hover {
  background: inherit;
  /* font-weight: bold; */
/* }  */

/* ======== MISCELLANEOUS ========== */

#loader {
  color: #008cff;
  height: 40px;
  left: 45%;
  position: absolute;
  top: 45%;
  width: 30%;
}

.category-list {
  background-color: var(--demo-green);
  color: white;
  margin-top: 50px;
}

.category-data {
  padding: 0.5em;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0px;
  white-space: nowrap;
}

.category-form {
  margin-top: 2px;
  display: flex;
  flex-flow: column;
}

.error {
  color: red;
}

input:required::after {
  content: "*";
  color: red;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.MuiButton-outlinedPrimary:hover {
  background-color: #00a07b !important;
  color: #fff !important;
  cursor: pointer !important;
}

.text-field {
  min-width: 170px !important;
}

.text-field-130 {
  min-width: 81px !important;
}
.text-field-130 input {
  font-size: 12px !important;
}
/* Chrome, Safari, Edge, Opera */
.text-field-130 ::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.text-field-130 input[type="number"] {
  -moz-appearance: textfield;
}

.text-field-130 label {
  font-size: 13px !important;
}

.text-field label {
  font-size: 14px !important;
}

.select-field {
  width: 170px !important;
}

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

.second-grid {
  margin-top: 10px !important;
}

.table-header th {
  font-size: 11px !important;
}

.table-checkbox label {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.submit-form {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.output-contaniner {
  margin-top: 30px !important;
  padding: 30px !important;
}

.output-contaniner > .cIIClV {
  overflow-y: visible !important;
}

.output-contaniner .cIIClV {
  overflow-y: visible !important;
}

.form-height {
  max-height: 260px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.form-container {
  width: 98%;
}

#compound-select {
  border-radius: 4px;
  margin-left: 5px;
  border: 1px solid rgba(0, 0, 0, 0.23);
}

.paper-full {
  width: 100%;
}

.form-select {
  width: 850px;
  border: 1px solid rgba(0, 0, 0, 0.23) !important;
  border-radius: 6px !important;
  padding: 10.5px 12px !important;
}

.flow-label {
  display: block;
  padding-bottom: 5px !important;
  color: #000 !important;
}

.text-field-flow {
  input {
    text-align: left !important;
  }
}

.empty-space {
  min-height: 665px;
}

.select-error {
  border-color: #f44336 !important;
}

.form-row {
  margin-bottom: 18px;
  display: grid;
}

.MuiFormHelperText-contained {
  margin-left: 0px;
}

.card-header {
  padding-bottom: 0;
  font-weight: bolder;
  color: #000;
  text-shadow: 0 0 black;
}

.card-paper {
  padding-left: 10px;
  padding-right: 10px;
}

.form-select-border {
  border: 1px solid rgba(0, 0, 0, 0.23) !important;
  border-radius: 6px !important;
  padding: 10.5px 12px !important;
}

.update-database {
  margin-top: 12px !important;
}

.config-title {
  min-width: 730px;
}

.table-grid {
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.23);
}

.table-grid tr > td:first-child {
  padding: 10px;
  text-align: center;
}

.tab-view {
  min-height: 675px;
  min-width: 730px;
}

.modal-version {
  min-width: 860px;
  margin-top: 16px !important;
}

.latex-text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 4px;
  max-width: 300px;
  max-height: 150px; /* Adjust as needed */
  overflow-x: auto;
  overflow-y: auto; /* Enables vertical scrolling if content exceeds max-height */
  white-space: nowrap; /* Ensures LaTeX text stays in a single line */
  padding: 4px; /* Optional: for spacing */
}

.latex-tex-v1 {
  max-width: 600px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap; /* Ensures LaTeX text stays in a single line */
}

.latex-label {
  color: var(--demo-green);
  font-size: 0.9em;
  text-overflow: ellipsis;
  text-align: right;
  margin-left: 15px;
}

.latex-grid {
  display: flex;
  align-items: center;
}

.grid-input > .MuiOutlinedInput-multiline {
  padding: 12px 8px !important;
}

.latex-scroll > ::-webkit-scrollbar {
  width: 0.1em;
  height: 0.2em;
}

.latex-scroll > ::-webkit-scrollbar-thumb {
  background: var(--demo-green);
}

.grid-input > .MuiFormHelperText-root.Mui-error {
  background-color: #f2f2f2 !important;
  margin: 0px !important;
}

.filter-container {
  display: flex;
  overflow-x: auto;
  width: fit-content;
  height: 70px;
}

.table-container-grid {
  overflow-x: auto;
}

.filter-container > .MuiFormControl-root {
  width: 150px;
  margin-top: 10px;
}

.filter-container > .MuiOutlinedInput-root {
  font-size: smaller !important;
}

.filter-container > .MuiFormControl-root .MuiInputLabel-outlined {
  z-index: -1 !important;
  font-size: smaller !important;
}

.MuiTablePagination-toolbar > .MuiTypography-colorInherit {
  color: var(--logo-grey) !important;
}
.MuiTablePagination-toolbar > .MuiTablePagination-input {
  color: var(--logo-grey) !important;
}

.btn-secondary {
  color: white !important;
  background-color: #5180cc !important ;
}
.btn-secondary:hover {
  color: white !important;
  background-color: #3567b8 !important ;
}

.btn-secondary:disabled {
  color: rgba(0, 0, 0, 0.26) !important;
  box-shadow: none !important;
  background-color: rgba(0, 0, 0, 0.12) !important;
}

.predictParams > p {
  margin-left: 0px !important;
}
