@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  background-color: #272822;
  color: #f8f8f2;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
  scrollbar-color: #75715e #272822; }

h1 {
  font-size: 1.4em; }

h2 {
  font-size: 1.2em; }

h3 {
  font-size: 1em; }

h1, h2, h3 {
  font-family: "Roboto Condensed";
  font-weight: normal;
  color: #e6db74; }

blockquote {
  font-style: italic; }

a,
a:visited {
  color: #66d9e8; }

.hidden-data {
  display: none; }

.codehilite pre {
  overflow: auto;
  line-height: 150%;
  padding: 10px; }

#container {
  display: flex;
  flex-direction: column;
  height: 100%; }

#centered-container {
  display: grid;
  justify-content: center;
  margin-top: 10px;
  width: 100%; }
  #centered-container #start-text {
    max-width: 558px; }
  #centered-container #header-bar {
    max-width: 598px; }
  #centered-container #login {
    max-width: 602px; }

#header-bar {
  display: flex;
  justify-content: center;
  margin: 0 auto; }

#header-logo {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: solid 1px black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px; }

#chat-area {
  background-color: #272822;
  overflow: auto;
  overflow-x: hidden;
  padding: 10px 10px 0 10px; }

#code-editor {
  background-color: #1e1f1c;
  overflow: auto; }

#code-editor-options {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px;
  z-index: 1; }
  #code-editor-options option {
    background-color: #272822;
    color: #f8f8f2; }
  #code-editor-options select,
  #code-editor-options button {
    padding: 4px;
    background-color: transparent;
    border: none;
    color: #f8f8f2; }

#workspace-placeholder {
  position: absolute;
  font-family: "Roboto Condensed";
  font-size: 1.2em;
  color: gray;
  text-align: center; }

#connected-status {
  display: none;
  padding: 10px;
  text-align: center;
  font-family: "Roboto Condensed"; }

#control-box {
  margin-bottom: 10px; }
  #control-box button {
    font-size: 0.6em;
    padding: 5px;
    border: none;
    color: black;
    background-color: #eeeeec;
    border-radius: 4px;
    cursor: pointer; }
    #control-box button:hover {
      text-decoration: underline; }

#loading {
  margin-bottom: 10px; }

#start-text {
  margin-top: 0;
  padding: 10px 20px;
  border: 1px solid #49483e;
  border-radius: 4px;
  background-color: #3e3d32;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
  #start-text p {
    margin: 0;
    margin-block-end: 10px; }
  #start-text ul {
    padding-left: 18px; }

#start-info button {
  width: 100%; }

#response {
  margin-bottom: 10px;
  word-wrap: break-word; }
  #response p {
    margin: 0;
    margin-block-end: 10px; }

.why-sigmund {
  background-color: #272822;
  color: #e6db74;
  padding: 20px !important;
  margin: 40px 10px 10px;
  border-radius: 4px; }
  .why-sigmund p {
    font-size: 1.2em;
    font-family: "Roboto Condensed";
    margin: 0; }

@media (min-width: 768px) {
  #container {
    flex-direction: row; }

  .CodeMirror {
    height: calc(100vh - var(--connected-status-height, 0px)) !important; }

  #code-editor {
    flex: 1;
    height: 100vh; }

  #chat-area {
    width: 600px;
    height: calc(100vh - 10px); }

  #workspace-placeholder {
    top: 10%;
    width: calc(-620px + 100vw); } }
@media (max-width: 767px) {
  #code-editor {
    height: 190px; }

  #chat-area {
    height: calc(100vh - 200px); }

  #workspace-placeholder {
    top: calc(100vh - 200px);
    margin: 50px; } }
.link-button,
.link-button:visited {
  display: block;
  padding: 10px;
  border: 1px solid #49483e;
  border-radius: 4px;
  color: #fff;
  background-color: #e6db74;
  text-decoration: none;
  text-align: center;
  cursor: pointer; }

input#submit,
button#start {
  width: 100%;
  padding: 10px;
  border: none;
  color: #fff;
  background-color: #e6db74;
  border-radius: 4px;
  cursor: pointer; }

button#attach,
button#cancel,
button#expand,
button#send {
  font-size: 1.2em;
  height: 100%;
  border: none;
  color: #e6db74;
  background: none;
  cursor: pointer; }

button#cancel {
  display: none; }

button#send:disabled {
  color: #cccccc; }

.mode-buttons,
.login-buttons,
.model-buttons {
  padding: 0 !important;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 100%; }
  .mode-buttons button,
  .login-buttons button,
  .model-buttons button {
    flex-grow: 1;
    border: none;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s; }
    .mode-buttons button img,
    .login-buttons button img,
    .model-buttons button img {
      width: 40px;
      height: 40px;
      margin-bottom: 5px; }
    .mode-buttons button span,
    .login-buttons button span,
    .model-buttons button span {
      font-size: 14px; }
    .mode-buttons button.active,
    .login-buttons button.active,
    .model-buttons button.active {
      background-color: #e6db74;
      color: white; }
    .mode-buttons button:hover,
    .login-buttons button:hover,
    .model-buttons button:hover {
      background-color: #e0e0e0; }

.model-buttons img {
  margin-bottom: 10px !important;
  margin-top: 10px; }

.model-buttons-wrapper {
  display: flex;
  flex-direction: column; }

.model-buttons-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px; }
  .model-buttons-row button {
    flex: 1; }

@media (max-width: 600px) {
  .model-buttons {
    flex-direction: column;
    align-items: stretch; } }
.menu select,
#container select,
#container button,
#container input {
  font-family: "Roboto", sans-serif; }

#container select,
#container input[type="text"],
#container input[type="password"] {
  outline: none;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #49483e;
  border-radius: 4px;
  background-color: #3e3d32;
  color: #f8f8f2; }
  #container select:focus,
  #container input[type="text"]:focus,
  #container input[type="password"]:focus {
    background-color: #49483e; }
#container input[type="submit"] {
  background-color: #49483e;
  color: #f8f8f2;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  transition: background-color 0.3s; }
  #container input[type="submit"]:hover {
    background-color: #272822; }

.form-group label {
  display: block;
  margin-bottom: 5px; }
.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  box-sizing: border-box; }

#sign-out {
  width: 100%;
  margin: auto;
  text-align: right;
  font-size: 0.6em;
  margin-bottom: 10px; }

.login-text {
  text-align: center;
  margin-bottom: 30px; }

.login-failed {
  color: #f92672; }

#login div {
  padding: 0; }

.menu-icon {
  cursor: pointer;
  position: fixed;
  background-color: white;
  top: 10px;
  right: 10px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #49483e;
  transition: background-color 0.3s ease; }
  .menu-icon:hover {
    color: #e6db74; }

.menu {
  border-radius: 4px;
  display: none;
  position: fixed;
  border: 1px solid #49483e;
  background: #3e3d32;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000; }
  .menu .close {
    margin-top: 5px;
    margin-right: 10px; }
  .menu .model-recommendations {
    font-family: "Roboto Condensed";
    font-size: small;
    display: block; }
  .menu input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1em;
    height: 1em;
    border: 2px solid #272822;
    background-color: #272822;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    transition: background-color 0.2s ease; }
    .menu input[type="checkbox"]:checked {
      background-color: #e6db74;
      border-color: #e6db74; }
      .menu input[type="checkbox"]:checked::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 0.75em;
        color: #272822;
        line-height: 1; }
  .menu.active {
    display: block; }
  .menu div {
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease; }
    .menu div.responsive:hover {
      background-color: #272822; }
  .menu select {
    font-size: 1em;
    background: none;
    border: none; }
    .menu select:focus-visible {
      outline: none; }
  .menu .tool-item {
    padding: 5px 0; }
  .menu .model-buttons,
  .menu .login-buttons {
    margin-bottom: 10px; }
    .menu .model-buttons button,
    .menu .login-buttons button {
      background-color: #49483e;
      color: #f8f8f2;
      cursor: pointer;
      transition: background-color 0.3s ease; }
      .menu .model-buttons button.active,
      .menu .login-buttons button.active {
        background-color: #272822;
        color: #e6db74; }
        .menu .model-buttons button.active small,
        .menu .login-buttons button.active small {
          color: #e6db74; }
      .menu .model-buttons button:hover,
      .menu .login-buttons button:hover {
        background-color: #272822;
        color: #f8f8f2; }
        .menu .model-buttons button:hover small,
        .menu .login-buttons button:hover small {
          color: #f8f8f2; }
  .menu small,
  .menu small a {
    font-family: "Roboto Condensed";
    color: #f8f8f2; }
  .menu #login {
    display: none; }

.menu-divider {
  border: none;
  height: 1px;
  background-color: #49483e;
  margin: 8px 0; }

.scrollable-menu {
  overflow-y: auto; }
  .scrollable-menu::-webkit-scrollbar {
    width: 8px; }
  .scrollable-menu::-webkit-scrollbar-thumb {
    background-color: #49483e;
    border-radius: 10px; }
    .scrollable-menu::-webkit-scrollbar-thumb:hover {
      background-color: #999; }

.search-conversations {
  display: flex;
  width: 100%;
  margin-bottom: 10px; }
  .search-conversations input {
    flex-grow: 1;
    padding: 4px;
    border: 1px solid #49483e;
    border-radius: 4px; }

@media (min-width: 768px) {
  .menu {
    left: 50%;
    top: 50%;
    padding: 10px;
    transform: translate(-50%, -50%); }

  .scrollable-menu {
    max-height: 80vh; }

  #return-to-chat {
    display: none; } }
@media (max-width: 767px) {
  .menu {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none; }
    .menu .close {
      float: none;
      text-align: center; }
    .menu .why-sigmund {
      margin-top: 20px !important; } }
.message-loading {
  color: gray; }

.message-loading,
.message-user,
.message-ai {
  margin-bottom: 10px; }

.message-ai,
.message-user {
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }

.message-ai {
  margin-right: 10%;
  background-color: #3e3d32;
  color: #f8f8f2; }

.message-user {
  color: #e6db74;
  white-space: pre-wrap;
  margin-left: 10%;
  background-color: #3e3d32;
  color: #e6db74; }

.message-info {
  margin-bottom: 10px;
  font-size: 0.8em;
  color: #49483e; }

.message-error {
  border-left: 4px solid #f92672;
  background-color: #3e3d32; }
  .message-error strong {
    color: #f92672; }

.message-delete {
  float: right;
  padding: 0;
  border: none;
  background: none;
  display: none;
  font-size: 0.6em;
  color: #75715e; }

.message-user:hover .message-delete,
.message-ai:hover .message-delete {
  display: block; }

.message-workspace,
.message-timestamp,
.message-answer-model,
.message-sources {
  font-family: "Roboto Condensed";
  font-size: 0.6em;
  text-align: right;
  color: #75715e;
  white-space: normal; }

.message-workspace .workspace-content,
.message-workspace .workspace-language {
  display: none; }

.message .message-notification {
  border-top: solid 1px #75715e;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #75715e;
  font-size: 0.8em; }

.message .image-generation {
  margin: 10px 0;
  border: solid 1px #75715e;
  border-radius: 4px;
  padding: 8px;
  background-color: white; }
  .message .image-generation img {
    width: 100%; }

.thinking_block_signature {
  display: none; }

.thinking_block_content {
  font-family: "Roboto Condensed";
  font-size: 0.6em;
  color: #75715e;
  padding-left: 10px;
  border-left: solid 1px #75715e;
  margin-bottom: 10px; }

#user-message {
  border-top: solid 1px;
  padding-top: 10px;
  font-size: 0.6em;
  margin-bottom: -10px; }

#message-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 120px;
  position: sticky;
  bottom: 0;
  padding: 10px;
  background-color: #272822;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }

.expanded-message-box {
  height: 80vh; }

#message-container {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 10px;
  border: 1px solid #49483e;
  border-radius: 4px;
  background-color: #3e3d32; }

#button-container {
  display: flex;
  flex-direction: column;
  align-self: flex-start; }

textarea#message {
  border: none;
  flex-grow: 1;
  height: 100%;
  background-color: #3e3d32;
  color: #e6db74; }
  textarea#message:focus {
    outline: none; }
  textarea#message:disabled {
    background: none; }

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center; }
  .modal.active {
    display: block; }

.modal-content {
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  background-color: #3e3d32;
  color: #f8f8f2;
  margin: 15% auto;
  padding: 10px;
  width: 80%; }
  .modal-content h2 {
    margin-top: 0;
    color: #f92672;
    font-size: 24px; }
  .modal-content p {
    line-height: 1.6; }
  .modal-content ul {
    margin: 15px 0;
    padding-left: 20px; }
  .modal-content li {
    margin: 8px 0; }
  .modal-content input {
    background-color: #3e3d32;
    color: #f8f8f2; }

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
.modal-reload-button {
  background-color: #49483e;
  color: #f8f8f2;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  transition: background-color 0.3s; }
  .modal-reload-button:hover {
    background-color: #272822; }

.delete-convo,
.delete-attachment,
.close {
  color: #f8f8f2;
  float: right;
  padding: 0px !important; }
  .delete-convo:hover,
  .delete-attachment:hover,
  .close:hover {
    color: #e6db74;
    cursor: pointer; }

#message-counter,
#footer-bar {
  color: gray;
  font-size: 0.7em;
  text-align: right;
  font-family: "Roboto Condensed";
  margin-top: 8px;
  margin-bottom: 8px; }

#message-counter {
  display: none; }

#footer-bar a {
  color: gray; }

#page-notification {
  border-radius: 4px;
  color: #fff;
  background-color: #e6db74;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 10px;
  margin-bottom: 10px;
  font-size: 0.8em; }
  #page-notification a {
    color: #fff; }

#usage-counter {
  position: relative;
  height: 1.4em;
  border-radius: 3px;
  overflow: hidden;
  border: solid 1px #49483e; }

#usage-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: width 0.3s ease; }
  #usage-bar.usage-low {
    background: #e6db74; }
  #usage-bar.usage-medium {
    background: #e6db74; }
  #usage-bar.usage-high {
    background: #f92672; }

#usage-label {
  font-family: "Roboto Condensed";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7em;
  white-space: nowrap;
  z-index: 10; }
  #usage-label.usage-low {
    color: gray; }
  #usage-label.usage-medium, #usage-label.usage-high {
    color: white; }

#usage-limit-warning {
  background: #f92672;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: none; }
  #usage-limit-warning a {
    color: white; }
  #usage-limit-warning.shown {
    display: block !important; }

.conversations input {
  margin-right: 10px;
  outline: none;
  background-color: #3e3d32;
  color: #f8f8f2; }
  .conversations input:focus {
    background-color: #49483e; }
.conversations .conversation-title {
  color: #f8f8f2;
  cursor: pointer;
  line-height: 1.5em; }
  .conversations .conversation-title:hover {
    color: #e6db74; }

#code-editor-options {
  background-color: #272822;
  border-radius: 4px 0px 0px 0px; }
  #code-editor-options button {
    color: #f8f8f2; }
  #code-editor-options select {
    margin-bottom: 0px; }
    #code-editor-options select:focus, #code-editor-options select:active {
      color: #e6db74; }

/*# sourceMappingURL=style.monokai.css.map */
