body {
  margin-left: 100px;
  /* width of the side panel */
  /* //check if boostrap affect the  font-family: ; */
  font-family: "Lato", sans-serif !important;
  /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; */
  overflow-y: hidden;
}

.background-container {
  width: 100vw;
  height: 100vh;
  background: var(--dark-accent-main) !important;
}

.add-button {
  display: flex;
  padding: 4px !important;
}

.general-button {
  background-color: white;
  color: var(--main);
  border: 1px solid var(--main);
  padding: 5px 20px;
  margin: 0 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.general-button:hover {
  background-color: var(--main);
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

}

.general-select {
  padding: 4.5px;
  border-radius: 4px;
  border: 1px solid #5068a0;
  appearance: none;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 5"><path d="M0 0l5 5 5-5H0z"/></svg>') no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  padding-right: 30px;
  padding-left: 9px;
}

/* //Chat Response */
.chat-response {

  padding: 30px;
  margin-bottom: 10px;
  width: 95%;
  margin-top: 10px;
}

.chat-response .buttons-response {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-left: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.chat-response button {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #5068a0;
  padding: 5px 15px;
  color: #5068a0;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  line-height: 20px;
  background: #fff;

}

.chat-response button:hover {
  background-color: #6f82b5;
  color: white;
  font-weight: bold;
}

/* //Links */
.chat-response a {
  background-color: rgba(250, 250, 250, .9);
  color: rgba(192, 19, 67, 1);
  font-family: "Courier New", Courier, monospace;
  padding: 2px 2px;
  font-size: 0.9em;
  white-space: nowrap;
  border: 1px solid #d1d1d1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 500;
  margin: 5px 0;
}


.chat-response a:hover {
  background-color: rgba(250, 250, 250, .9);
  color: var(--dark-accent-main);
  border-color: var(--background-grey);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  font-weight: 600;
}

.chat-response a:active {
  background-color: #c0c0c0;
  transform: translateY(1px);
}

/* //Related Actions */
#action-buttons {
  font-weight: 600;
  padding: 0 40px;
}

#action-buttons img {
  background: #F3F3F3;
  border-radius: 50%;
}

#action-buttons img:hover {
  background-color: aliceblue;
  ;
}

#action-buttons ul {
  list-style: none;
  display: flex;
  padding-left: 20px;
  margin-top: 25px;
  gap: 1%;
  flex-wrap: wrap;
}

#action-buttons ul li {
  /*background-color: rgba(250, 250, 250, .9);
  color: rgba(192, 19, 67, 1);  
  font-family: "Monaco", "Menlo", "Consolas", "Courier New", monospace !important;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  white-space: nowrap;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 500;
  margin: 5px 0;*/

  background-color: rgba(250, 250, 250, .9);
  color: rgba(192, 19, 67, 1);
  font-family: "Courier New", Courier, monospace;
  padding: 2px 4px;
  border-radius: 10px;
  font-size: 0.9em;
  white-space: nowrap;
  border: 1px solid #d1d1d1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 500;
  margin: 5px 0;
}

#action-buttons ul li:hover {
  background-color: var(--background-grey);
  color: var(--dark-accent-main);
  border-color: var(--background-grey);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  font-weight: 600;

}

#action-buttons ul li:active {
  background-color: #c0c0c0;
  transform: translateY(1px);
}


#action-buttons ul li a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9em;
}

.btn-outline-primary:disabled,
.btn-outline-primary:disabled::before,
.btn-outline-primary:disabled::after {
  color: #6c757d;
  /* Gray text */
  border-color: #6c757d;
  /* Gray border */
  background-color: transparent;
}

.btn-outline-primary:disabled:hover {
  color: #6c757d;
  /* Keep text color the same on hover */
  border-color: #6c757d;
  /* Keep border color the same on hover */
  background-color: transparent;
  /* Keep background the same on hover */
}



.chat-response .summary-box .btn {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  background-color: #808080;
  border-radius: 4px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.chat-response .summary-box .btn:hover {
  background-color: #2980b9;
}

.chat-container {
  position: fixed;
  /* Fixes the container to a position */
  bottom: 8px;
  /* Aligns it to the bottom */
  left: 0;
  /* Aligns it to the left */
  width: calc(100% - 290px);
  /* Makes it full width */
  background-color: #fff;
  /* To match the existing design */
  padding: 10px 0;
  /* Add some padding top and bottom */
  margin-left: 282px;
  z-index: 3;
  padding: 15px 40px;
  /* To ensure it stays above other elements */
  transition: width 0.3s ease, margin-left 0.3s ease;
  border-bottom-right-radius: 20px;
}

.chat-message {
  margin-bottom: 15px;
}

.chat-area-container {
  display: flex;
  flex-direction: column;
}

.chat-area {
  bottom: 50px;
  position: absolute;
  overflow-y: auto;
  width: calc(100% - 450px);
  height: calc(100% - 108px);
  margin-left: 280px;
  background-color: #fff;
  top: 50px;
  padding-top: 40px;
  padding-left: 55px;
  padding-bottom: 40px;
  transition: width 0.3s ease, margin-left 0.3s ease;
  scrollbar-width: thin;
  /*  Firefox */
}

.chat-area::-webkit-scrollbar {
  width: 8px;
}

.chat-area::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.chat-area:hover::-webkit-scrollbar {
  display: block;
}

.chat-area-no-project {
  bottom: 100px;
  position: absolute;
  overflow-y: auto;
  width: calc(100% - 280px);
  height: calc(100% - 150px);
  /*padding-top: 50px;*/
  margin-left: 280px;
  padding-left: 15px;
}

.chat-form {
  display: flex;
  align-items: center;
  width: 100%;
  /* Adjust the width as needed */
  gap: 0px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.chat-form input:focus {
  outline: none;
  border: 2px solid var(--dark-accent-main);
}


.collapse-icon {
  position: absolute;
  top: 128px;
  left: 264px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.collapse-icon:hover {
  background-color: aliceblue;

}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9001;

  /* Add these lines */
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: white;
}

.project-panel {
  position: fixed;
  left: 8px;
  top: 50px;
  height: calc(100% - 58px);
  width: 274px;
  background-color: var(--background-grey);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  /* overflow-y: auto; */
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 4;
}

/* Style the buttons inside the tab */
.project-tab button {
  display: block;
  background-color: inherit;
  color: black;
  /*padding: 22px 10%;*/
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  padding-bottom: 8px;
}

.project-title {
  border-style: none none solid none;
  border-color: #d7d7d7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;

}

.project-title h1 {
  display: flex;
  align-items: center;
  color: var(--dark-accent-main);
}

.project-title h1 span {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20p;
  align-self: flex-start;
  margin-right: 10px;
  margin-top: -6px;
  font-weight: 900;
  color: var(--dark-accent-main);
  border: 2px solid var(--dark-accent-main);

}

.project-title a {
  color: var(--dark-accent-main);
}

.project-title a span {
  font-size: 30px;
}

.project-title .create-project-button span {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.project-title .create-project-button span:hover {
  transform: scale(1.1);
  color: var(--dark-accent-main);
  opacity: 0.8;
}

.project-tab {
  float: left;
  width: 100%;
  padding: 40px 0px 40px 0px;
  border-radius: 4px;
  height: 679px;
  overflow-y: auto;
  scrollbar-width: thin;
  /*  Firefox */
  scrollbar-color: #888 transparent;
  /* thumb y track */
}

.project-tab::-webkit-scrollbar {
  width: 8px;
}

.project-tab::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.project-tab::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.project-tab::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.project-tab .project-container {
  padding: 5px;
  width: 98%;
  margin-left: 1%;
}

.project-tab .project-container:hover {
  display: flex;
  align-items: center;
  background-color: #E0E0E0;
  opacity: 0.9;
  color: var(--dark-accent-main);
  border-radius: 6px;
  cursor: pointer;

}

.project-tab .project-container:hover button {
  color: var(--dark-accent-main)
}

.project-tab .project-container:hover .icon-more-options {
  border-color: var(--dark-accent-main)
}

.project-tab button {
  color: var(--dark-accent-main);
  transition: background-color 0.3s ease, font-weight 0.3s ease;
}

/* Change background color of buttons on hover */
.project-tab button:hover {
  font-weight: bold;
}

/* Create an active/current "tab button" class */
#activeDiv {
  background-color: var(--dark-accent-main);
  color: var(--text-ligth);
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px;
  width: 98%;
  margin-left: 1%;
}

#activeDiv .options-menu-project {
  background: lightgray !important;
}

#activeDiv .options-menu-project .tooltip-arrow-left-bar {
  border-right: 10px solid lightgray !important;
}


/* Create an active/current "tab button" class */
#active {
  color: var(--text-ligth);
  font-weight: bold;

}


.chat-input {
  width: 100%;
  padding: 10px 88px 10px 25px;
  border-radius: 23px;
  border: 1px solid #5068a0;
}


#chat_send_button {
  margin: 0;
  padding: 0;
  width: 60px;
  position: absolute;
  right: 26px;
  height: 30px;
  border-radius: 15px
}

#chat_send_button:focus {
  outline: none;
  box-shadow: none;
}

#chat_send_button:hover {
  background-color: var(--dark-accent-main);
  color: white;
}

#chat_send_button span {

  color: #700000;
  display: inline-block;
  transition: all 0.3s ease;
}

#chat_send_button:hover span {
  transform: rotate(-45deg);
  display: inline-block;
  color: white;
}

#chat_send_button:active span {
  opacity: 0;
  transform: translate(80px, -80px);
  /* transform: rotate(-45deg) scale(0);  */
}


/* Position the nested app container */
.nested-app-container {
  padding-left: 21px;
  padding-bottom: 11px;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  /* Align it with chat-form */
  z-index: 1;
  /* Optional: to ensure it stays above other elements */
}


.rounded-icon {
  width: 30px;
  /* Adjust to your preference */
  height: 30px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #fff;
}

.rounded-icon img {
  border-radius: 10px;
  height: auto;
  opacity: 0%;
}

.rounded-icon-populated {
  border-bottom: 4px solid #f6f6f6;
}


.rounded-icon-populated img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  height: auto;
  background: #ffffff;
  opacity: 100%;
}


.rounded-icon-selected {
  border-bottom: 4px solid rgb(209, 209, 255);
}


.rounded-icon-selected img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  height: auto;
  background: rgb(209, 209, 255);
  opacity: 100%;
}

.header-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: var(--dark-accent-main);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.header-Logo {
  margin-left: 70px;
}

.header-menu {
  margin-right: 68px;
}

.right-side-panel {
  position: fixed;
  flex-wrap: wrap;
  top: 50px;
  right: 8px;
  height: calc(100% - 124px);
  width: 180px;
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border-top-right-radius: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.query-icon {
  margin: 10px;
  padding: 10px;
  border-radius: 50%;
  background: #f8f8f8;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  cursor: pointer;
}

.column-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: #f5f5f5;
}

/* Styles for the column lists */
.column-list {
  width: 200px;
  height: 250px;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  overflow-y: auto;
}

/* Style for buttons */
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

button {
  margin: 5px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px;
  background-color: #007BFF;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* button:hover {
  background-color: #0056b3;
} */

.query-icon.completed {
  border-color: green;
}

.query-icon.pending {
  border-color: orange;
}

.dropdown {
  position: relative;
  display: inline-block;
}

h1 {
  font-size: 30px !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  width: 160px;
  height: 192px;
  z-index: 1000;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  background-color: var(--background-grey);
  border: #837b7b;
  border-radius: 5px;
  right: 10px;
  top: 50px;
  right: 8px;
}

.menu-user-name {
  font-size: 16px !important;
  margin-bottom: 14px;
  cursor: default;

}

.dropdown-content a {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  padding: 12px 6px;
  text-decoration: none;
  display: block;

}

.dropdown-content .menu-user-name:hover {
  font-size: 16px !important;
  opacity: 1 !important;
  color: var(--text-dark);
}

.dropdown-content a:hover {
  font-size: 15px;
  opacity: 0.8;
  color: var(--text-dark);
}

.dropdown:hover .dropdown-content {
  display: block;
}




.message-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F3F3F3;
  border-radius: 10px;
  padding: 10px;
  width: 95%;
}

.user-message {
  text-align: left;
  flex-grow: 1;
  padding: 10px;
}

.user-message b {
  color: grey;
}

.replay-container {
  margin-left: 10px;
  margin-right: 25px;
  border-radius: 10px;
  padding: 10px;
  display: flex;
}

.replay-container a img:hover {
  transform: scale(1.1);
}

.bot-message {
  font-weight: bold;
}

.window-container {
  display: none;
}

.icon {
  float: right;
  z-index: 100;
  display: none;
}

.icon-more-options {
  border: 1px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
}

#activeDiv .icon-more-options {
  border: 1px solid var(--text-ligth);
}

/* .icon-more-options img {
  display: flex;
  cursor: pointer;
}

.icon-more-options img:hover {
  border-radius: 50%;
  background-color: #6f82b5;
} */


.options-menu-project {
  display: flex;
  flex-direction: column;
  background: var(--dark-accent-main);
  position: absolute;

  z-index: 6;
  padding: 0px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-right: -5px;
  margin-right: -5px;
  height: 73px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
}

.tooltip-arrow-left-bar {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--dark-accent-main);
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.options-menu-project a {
  text-decoration: none;
  color: #d7d7d7;
  cursor: pointer;

}

.options-menu-project a:hover {
  background-color: steelblue;
  border-radius: 50%;
  display: flex;
  padding: 2px;

}


#active .icon {
  display: inline;
}



.dropdown:hover .dropdown-content {
  display: block;
}

.window-container {
  display: none;
}

.winbox {
  background-color: var(--dark-red);
}

/* //  New Modals styles  */
.custom-winbox-general {
  display: flex;
  background-color: var(--dark-accent-main) !important;
  border-radius: 4px;
}

.custom-winbox-general .custom-header {
  font-weight: 600;
  padding: 1px 10px;
}

.custom-winbox-general .custom-body {
  padding: 10px;
}

.custom-winbox-general .custom-body label {
  margin-bottom: 10px;
}

/* //Load mols Modal */
.custom-winbox-load-mols .custom-mol-cont {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.custom-winbox-load-mols .custom-mol-cont form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

.custom-winbox-load-mols .custom-mol-cont form {
  width: 100%;
}

.custom-winbox-load-mols .custom-mol-cont .drop-area-molecule {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}

.custom-winbox-load-mols .custom-mol-cont .drop-area-molecule.dragover {
  border-color: #333;
}


/* ///Edit create Delete Project */

.custom-winbox-edit-project .custom-body .input-group input:focus {
  outline: none !important;
  border: 1px solid;
  box-shadow: none;
}

.custom-winbox-edit-project .custom-body .input-group button {
  z-index: 1;
}

.custom-winbox-edit-project .custom-body #delete-content .general-button {
  position: absolute;
  right: 43px;

}

.custom-winbox-edit-project .custom-body #delete-content p strong {
  text-transform: uppercase;

}


.spinner {
  text-align: center;
  /* Align the container to center */
  position: relative;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 10px;
  border-radius: 5px;
  background-color: #2f00ff;
  color: #2f00ff;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.spinner::before,
.spinner::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.spinner::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #2f00ff;
  color: #2f00ff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}

.spinner::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #2f00ff;
  color: #2f00ff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: #2f00ff;
  }

  50%,
  100% {
    background-color: rgba(47, 0, 255, 0.2);
  }
}

.spinner2::before {
  content: '...';
  white-space: pre;
  /* Keeps the three dots in a row */
  animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {
  0% {
    color: rgba(0, 0, 0, 0);
    text-shadow:
      .25em 0 0 rgba(0, 0, 0, 0),
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  33% {
    color: white;
    text-shadow:
      .25em 0 0 rgba(0, 0, 0, 0),
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  66% {
    text-shadow:
      .25em 0 0 white,
      .5em 0 0 rgba(0, 0, 0, 0);
  }

  100% {
    text-shadow:
      .25em 0 0 white,
      .5em 0 0 white;
  }
}


/* //new spinner */
.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #5068a0;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {

  80%,
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  100%,
  0% {
    transform: scale(1.0);
  }
}


.idea-buttons {
  position: absolute;
  justify-content: center;
  margin: 20px;
  bottom: 0;
}

.idea-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.idea-button:hover {
  background-color: #0056b3;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.svg-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Adjust the gap between SVGs as needed */
  justify-content: flex-start;
  /* Align items to the start of the container */
}

.svg-chat-div {
  flex: 1 1 auto;
  /* Allow the SVG divs to grow and shrink */
  min-width: 100px;
  /* Minimum width for each SVG div */
  max-width: 100%;
  /* Allow SVGs to take up full width if needed */
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */
  margin: 5px;
  /* Add some margin around each SVG div */
  display: flex;
  flex-direction: column;
  /* Ensure the label is below the SVG */
  align-items: center;
  /* Center the SVG and label */
}

tbody td {
  padding: 0px 0px !important;
}


button[data-testid="reaction-arrow-open-angle"] {
  display: none !important;
}

button[data-testid="shape-ellipse"] {
  display: none !important;
}

button[data-testid="text"] {
  display: none !important;
}

button[data-testid="reaction-map"] {
  display: none !important;
}

button[data-testid="reaction-plus"] {
  display: none !important;
}

button[title="Fullscreen mode"] {
  display: none !important;
}

.svg-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  /* adjust as needed */
  height: 200px;
  /* adjust as needed */
  overflow: hidden;
  /* hide overflow if SVG is larger than cell */
}


.dt-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  flex-direction: column;
}

.dt-header-title {
  margin-right: 10px;
  user-select: none;
}

.dt-header-icons {
  display: flex;
  gap: 8px;
}

.dt-sort-icon,
.dt-filter-icon {
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  user-select: none;
}

.dt-sort-icon:hover,
.dt-filter-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dt-filter-controls {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.dt-filter-min,
.dt-filter-max {
  width: 100%;
  padding: 4px;
  margin: 2px 0;
  border: 1px solid #ddd;
  padding-left: 10px;
  border-radius: 4px;
}

.dataTables_wrapper {
  overflow: hidden;
  /* Important for scroll syncing */
}

.dataTables_scrollHead {
  overflow: hidden !important;
  /* Important for scroll syncing */
}

.dataTables_scrollBody {
  overflow-y: scroll !important;
  overflow-x: scroll !important;
}

/* Ensure header cells have relative positioning for filter dropdowns */
.dataTable thead th {
  position: relative;
}

.dt-sort-icon,
.dt-filter-icon {
  cursor: pointer;
  padding: 4px;
  margin-left: 4px;
}



.dt-header-icons {
  display: flex;
}



.dt-filter-active {
  display: block;
  outline: 1px solid #ddd;
}

td.dataTables_empty {
  text-align: center;
  height: 200px;
}

.inactive-icon {
  /*background: rgba(128, 147, 255, 0.0);*/
}

.active-icon {
  background: rgba(0, 38, 255, 0.3);
  outline: 2px midnightblue;
}

.dataTables_wrapper .paginate_button.disabled {
  display: none;
}


.download-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 9999;
  display: none;
}

.close-banner-button {
  color: black;
  margin-left: 20px;
  padding: 4px 12px;
  background-color: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.banner-success {
  background-color: rgb(225 233 253);
  border: 4px solid rgb(225 233 253);
  color: #3c763d;
}

.banner-error {
  background-color: #f2dede;
  border-bottom: 1px solid #ebccd1;
  color: #a94442;
}

.banner-default {
  background-color: #d9edf7;
  border-bottom: 1px solid #bce8f1;
  color: #31708f;
}

.search-item {
  cursor: pointer;
}

.btn:disabled {
  color: #ccc !important;
  /* Light gray color for disabled text */
}

/* Suggestions Box */
#suggestionsBox {
  padding: 2px;
  border-radius: 3px;
  min-width: 100px;
}

#suggestionsBox div.selected {
  background-color: #e0e0e0;
}