/******************************************************************************\
|                                                                              |
|                                 styles.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  _index.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _colors.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _coloring.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                          _animation-keyframes.scss                           |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
@keyframes blinking-keyframes {
  50% {
    opacity: 0;
  }
}
@keyframes flickering-keyframes {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bouncing-keyframes {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.1);
  }
  66% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes jumping-keyframes {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-25%);
  }
  66% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tilting-keyframes {
  0% {
    transform: rotate(0);
  }
  33% {
    transform: rotate(-10deg);
  }
  66% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes contracting-keyframes {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes expanding-keyframes {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes flipping-keyframes {
  0% {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    moz-transform: rotateY(90deg);
    ms-transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
}
@keyframes growing-keyframes {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes growing-bounce-keyframes {
  0% {
    transform: scale(0);
  }
  75% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shimmying-keyframes {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-5%);
  }
  66% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes squeezing-keyframes {
  0% {
    transform: scaleX(1);
  }
  33% {
    transform: scaleX(1.1);
  }
  66% {
    transform: scaleX(0.9);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes shrinking-keyframes {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes shrinking-bounce-keyframes {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes spinning-keyframes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinning3d-keyframes {
  from {
    transform: rotateY(0deg);
    moz-transform: rotateY(0deg);
    ms-transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
    moz-transform: rotateY(360deg);
    ms-transform: rotateY(360deg);
  }
}
@-webkit-keyframes spinning3d-keyframes {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}
/******************************************************************************\
|                                                                              |
|                              _animations.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.blinking {
  animation: blinking-keyframes 1s step-start;
}

.flickering {
  animation: flickering-keyframes 1s ease-in-out;
}

.bouncing {
  animation: bouncing-keyframes 0.3s ease-in-out;
}

.jumping {
  animation: jumping-keyframes 0.3s ease-in-out;
}

.tilting {
  animation: tilting-keyframes 0.3s ease-in-out;
}

.contracting {
  animation: contracting-keyframes 0.3s ease-in-out;
}

.expanding {
  animation: expanding-keyframes 0.3s ease-in-out;
}

.uncontracted {
  transform: scale(1.1);
}

.flipping {
  animation: flipping-keyframes 0.3s ease-in-out;
}

.growing-bounce {
  animation: growing-bounce-keyframes 0.3s ease-in-out;
}

.shimmying {
  animation: shimmying-keyframes 0.3s ease-in-out;
}

.spinning {
  animation: spinning-keyframes 0.3s linear;
}

.squeezing {
  animation: squeezing-keyframes 0.3s ease-in-out;
}

.shrinking-bounce {
  animation: shrinking-bounce-keyframes 0.3s ease-in-out;
}

/******************************************************************************\
|                                                                              |
|                           _dialog-transitions.less                           |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.modal.opening {
  -webkit-animation: opening 0.5s;
  -moz-animation: opening 0.5s;
  -ms-animation: opening 0.5s;
  -o-animation: opening 0.5s;
  animation: opening 0.5s;
}

@keyframes opening {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.modal.closing {
  -webkit-animation: closing 0.5s;
  -moz-animation: closing 0.5s;
  -ms-animation: closing 0.5s;
  -o-animation: closing 0.5s;
  animation: closing 0.5s;
}

@keyframes closing {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.modal.closed {
  display: none;
}

/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.modal {
  pointer-events: none;
  padding-bottom: 30px;
}
.modal .modal-dialog {
  display: flex;
  margin: auto;
  margin-top: 100px;
}
.modal .modal-dialog .modal-content {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: auto;
  margin: auto;
  width: 600px;
  min-width: 300px;
}
.modal .modal-dialog .modal-content .modal-header h1 {
  font-size: 24px;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header.ui-draggable-handle {
  cursor: move;
}

@media (min-width: 768px) and (max-height: 550px) {
  .modal {
    text-align: center;
  }
  .modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
}
.modal.backdrop {
  pointer-events: all;
  background-color: fade(black, 25%);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-extents {
  width: 100%;
  margin: auto;
}

@media (min-width: 480px) {
  .modal .modal-dialog .modal-header {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .modal .modal-dialog .modal-body.flexible {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .modal .modal-dialog .modal-footer {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .modal .modal-dialog .modal-footer .buttons {
    float: right;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .modal .modal-dialog .modal-footer .buttons .btn, .modal .modal-dialog .modal-footer .buttons .btn + .btn {
    margin-bottom: 5px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body .vertically.scrollable {
    max-height: 220px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body {
    overflow: auto;
  }
}
body[device=desktop] .modal.in .modal-dialog {
  transform: translateZ(0);
}

@media (max-width: 480px) {
  .modal-extents {
    height: auto !important;
    margin: 0;
  }
  .modal {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-bottom: 0;
  }
  .modal .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0 !important;
  }
  .modal .modal-dialog .modal-content {
    width: 100%;
    height: 100%;
    border: none;
  }
  .modal .modal-dialog .modal-content .modal-header .modal-title {
    margin-right: 0;
  }
  .modal .modal-dialog .modal-content .modal-header .buttons {
    margin-left: 0;
  }
  .modal .modal-dialog .modal-content .modal-body {
    flex-grow: 1;
  }
  .modal .modal-dialog .modal-content .modal-body .vertically.scrollable {
    max-height: none;
  }
  .modal .modal-dialog .modal-content .modal-footer .notes {
    float: none;
    text-align: left;
  }
  .modal .modal-dialog .modal-content .modal-footer .buttons {
    margin-bottom: 10px;
  }
  .modal .modal-dialog .modal-content .modal-footer .btn + .btn {
    margin-left: 0;
  }
  .modal .modal-dialog:not(.maximized) {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _buttons.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.btn {
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #303030;
  background-color: color-mix(var(--primary-color), transparent 90%);
  border-width: 1px;
  border-style: solid;
  border-color: color-mix(var(--primary-color), transparent 50%);
}
.btn:focus, .btn:hover, .btn:active, .btn:active:hover {
  background-color: color-mix(var(--primary-color), transparent 90%);
  border-color: color-mix(var(--primary-color), transparent 50%);
  outline: none;
}
.btn i {
  margin-right: 5px;
}
.btn a {
  color: grey;
  text-decoration: none;
}
.btn i, .btn span {
  pointer-events: none;
}
.btn.btn-sm {
  padding: 5px 7px;
}
.btn.begin i {
  color: green;
}
.btn.resume i {
  color: orange;
}

.btn-primary {
  color: white;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary a {
  color: black;
}
.btn-primary:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  outline: none;
}

.send.btn {
  color: white;
  background: hsl(150, 60%, 40%);
}
.send.btn a {
  color: white;
}
.send.btn:focus, .send.btn:hover, .send.btn:active {
  background: hsl(150, 60%, 30%);
}

.buttons .btn {
  margin-top: 5px;
  margin-right: 5px;
}

.journey-round .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid transparent;
}
.journey-round .round-name {
  color: #111827;
}
.journey-round .state {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.journey-round .btn.begin,
.journey-round .btn.resume,
.journey-round .btn.review {
  background: color-mix(var(--primary-color), transparent 90%);
  border-color: color-mix(var(--primary-color), transparent 50%);
}
.journey-round .btn.begin .state,
.journey-round .btn.resume .state,
.journey-round .btn.review .state {
  color: #0369a1;
}
.journey-round .btn.locked {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
}
.journey-round .btn.locked .round-name,
.journey-round .btn.locked .state {
  color: #9ca3af;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  .buttons {
    padding: 0;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  _forms.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
fieldset {
  margin: 20px 0;
}

.form-label, .control-label {
  float: left;
  width: 25%;
}

.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}

.required label:after,
label.required:after,
span.required:after {
  content: "*";
  color: #c2002f;
  margin-left: 5px;
}

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

.inline-radio {
  margin-right: 15px;
}
.inline-radio input {
  margin-right: 5px;
}

/*
 * validation styles
 */
label.error {
  font-weight: bold;
  color: #c2002f;
  padding-top: 0;
  background: url(../images/forms/error.png) 5px 0px no-repeat;
  padding-left: 30px;
}

label.error:empty {
  display: none;
}

label.error.valid {
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border: 1px solid #c2002f;
}

/*
 * popover styles
 */
.popover {
  max-width: 360px;
  width: auto;
}

@media (max-width: 480px) {
  .form-label, .control-label {
    width: 100%;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _layout.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
body {
  --primary-color: hsl(210, 50%, 50%);
}

#brand, .brand {
  font-family: Arial;
  color: var(--primary-color) !important;
  font-weight: bold;
}

.navbar .logo {
  display: inline-flex;
  float: left;
  width: 40px;
  height: 40px;
  margin: 0;
  margin: 5px;
  margin-right: 10px;
  color: white;
  background: var(--primary-color);
  border-radius: 25%;
}
.navbar .logo span {
  font-size: 14px;
  font-weight: bold;
  margin: auto;
}

/******************************************************************************\
|                                                                              |
|                                  _chats.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        Sleek ChatGPT-style chat UI styling.                                  |
|                                                                              |
\******************************************************************************/
#page.chat {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  background-image: none;
  overflow: hidden;
}
#page.chat .main.container {
  width: 100%;
  max-width: none;
  height: calc(100% - 50px);
  overflow: hidden;
  padding: 0;
}
#page.chat .main.container .content {
  width: 100%;
  height: 100%;
}
#page.chat .main.container .content .chat {
  width: 100%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  padding: 16px 20px 12px;
  display: flex;
  flex-direction: column;
}
#page.chat .footer {
  display: none;
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.chat-topbar .resume-later.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
.chat-topbar .resume-later.btn:hover, .chat-topbar .resume-later.btn:focus, .chat-topbar .resume-later.btn:active {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.chat-topbar .resume-later.btn i {
  font-size: 13px;
}

#page.chat .progress-bar {
  flex-shrink: 0;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
  height: 6px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  color: #6b7280;
}
#page.chat .progress-bar .bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
  transition: width 0.25s ease;
}
#page.chat .progress-bar .readout {
  display: none;
}
#page.chat .progress-bar:empty {
  display: none;
}

#page.chat .messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 20px;
  min-height: 0;
}
#page.chat .messages + form {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.message {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.message > i, .message img.icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  margin: 0;
}
.message .comment-bubble {
  display: inline-block;
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  max-width: calc(100% - 56px);
  line-height: 1.5;
  color: #111827;
  font-size: 15px;
}
.message .comment-arrow {
  display: none;
}
.message .comment-inner {
  white-space: pre-line;
  word-wrap: break-word;
}
.message.user {
  flex-direction: row;
  margin: 0 0 18px 0;
}
.message.user .comment-bubble {
  background: #f4f4f5;
}
.message.response {
  flex-direction: row-reverse;
  margin: 0 0 18px 0;
}
.message.response .comment-bubble {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.typing-indicator {
  display: inline;
  gap: 6px;
}

.dots .dot {
  font-size: 5px;
  animation: pulse 1.4s infinite;
  margin: auto 2px;
  vertical-align: middle;
}
.dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}
#page.chat .new-message,
#page.chat .composer {
  flex-shrink: 0;
}

.composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 14px;
}

.composer-input {
  position: relative;
  flex-grow: 1;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 10px 56px 10px 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.composer-input:focus-within {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.composer-input .chat-input {
  width: 100%;
  min-height: 24px;
  max-height: 200px;
  overflow-y: auto;
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
}
.composer-input .chat-input:focus {
  outline: none;
}
.composer-input .chat-input:empty::before {
  content: attr(data-placeholder);
  color: #9ca3af;
  pointer-events: none;
}
.composer-input .send.btn {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 40px;
  height: 40px;
  min-width: 36px;
  padding: 0;
  border-radius: 50%;
  background: #111827;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.composer-input .send.btn i {
  font-size: 14px;
  margin: 0;
  color: white;
}
.composer-input .send.btn:hover, .composer-input .send.btn:focus, .composer-input .send.btn:active, .composer-input .send.btn:active:hover {
  background: #000;
  border: none;
}
.composer-input .send.btn:disabled, .composer-input .send.btn[disabled] {
  background: #d1d5db;
  color: white;
  cursor: not-allowed;
}

.composer .finish.btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  background: #22c55e;
  color: white;
  border: 1px solid transparent;
}
.composer .finish.btn i {
  color: white;
  font-size: 13px;
}
.composer .finish.btn:hover, .composer .finish.btn:focus, .composer .finish.btn:active {
  background: #16a34a;
  border-color: transparent;
}
.composer .finish.btn.hidden {
  display: none;
}

#page.chat > .buttons,
#page.chat .chat > .buttons {
  flex-shrink: 0;
  text-align: center;
  margin: 12px 0 16px;
}
#page.chat > .buttons .return.btn,
#page.chat .chat > .buttons .return.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: white;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
}
#page.chat > .buttons .return.btn:hover, #page.chat > .buttons .return.btn:focus, #page.chat > .buttons .return.btn:active,
#page.chat .chat > .buttons .return.btn:hover,
#page.chat .chat > .buttons .return.btn:focus,
#page.chat .chat > .buttons .return.btn:active {
  background: #000;
}
#page.chat > .buttons .return.btn i,
#page.chat .chat > .buttons .return.btn i {
  color: white;
}

.ratings {
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 6px 12px;
  text-align: right;
}
.ratings label {
  margin: 5px 8px 5px 5px;
  color: #6b7280;
}
.ratings .rating {
  display: inline-flex;
  padding: 0;
}
.ratings .rating + .rating {
  margin-left: 8px;
}
.ratings .rating .btn {
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
}

@media (max-width: 600px) {
  #page.chat .main.container .content .chat {
    padding: 12px 12px 8px;
  }
  .composer-input {
    padding: 8px 50px 8px 16px;
  }
  .composer-input .send.btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .composer .finish.btn span {
    display: none;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _headings.less                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
h1 {
  font-size: 200%;
  margin-top: 0;
  margin-bottom: 30px;
}

h2 {
  font-size: 150%;
  margin-top: 30px;
  margin-bottom: 15px;
}

h3 {
  font-size: 125%;
  margin-top: 10px;
  margin-bottom: 10px;
}

h1, h2, h3 {
  font-weight: bold;
}
h1 .icon, h2 .icon, h3 .icon {
  height: 1em;
  margin-right: 10px;
}
h1 i, h2 i, h3 i {
  float: left;
  padding-right: 10px;
}

/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _journey.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.journey-intro {
  margin-bottom: 24px;
  color: #4b5563;
}

.main.container:has(.journey-path) {
  max-width: 1240px;
}

.journey-path {
  position: relative;
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 10px 0 10px 0;
}
.journey-path section:nth-of-type(even) {
  flex-direction: row-reverse;
}
.journey-path .module-icon {
  display: none;
}

.journey-section {
  display: flex;
  position: relative;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  row-gap: 12px;
  align-items: start;
  justify-items: center;
  margin: 0;
}

.journey-node-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-row: 1;
}

.journey-section:nth-of-type(odd) .module-rounds {
  margin-left: 10%;
}
.journey-section:nth-of-type(odd) .journey-node-wrap {
  grid-column: 1;
}

.journey-section:nth-of-type(even) .module-rounds {
  margin-right: 10%;
}
.journey-section:nth-of-type(even) .journey-node-wrap {
  grid-column: 2;
}

.journey-connector {
  display: block;
  width: 30%;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
  pointer-events: none;
}
.journey-connector svg path {
  stroke: hsla(220, 50%, 80%, 0.5);
  stroke-width: 8;
  stroke-linecap: round;
  fill: none;
  vector-effect: non-scaling-stroke;
  marker-end: url(#arrow-end);
}

.journey-connector svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.module-node {
  position: relative;
  width: 50%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 50px;
  background-color: color-mix(var(--primary-color), transparent 90%);
  border-width: 1px;
  border-style: solid;
  border-color: color-mix(var(--primary-color), transparent 50%);
}
.module-node .module-icon {
  font-size: 48px;
  line-height: 1;
}
.module-node .module-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
.module-node .module-title {
  font-size: 75%;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 10px;
}
.module-node .module-subtitle {
  font-size: 150%;
  font-weight: bold;
  margin: 10px;
}
.module-node .module-summary {
  margin: 10px;
}
.module-node .module-state {
  margin-top: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.module-node .module-status-icon {
  display: none;
}

.journey-section.module-current .module-node .module-state {
  background: white;
  color: #1f7a3a;
}

.journey-section.module-completed .module-node .module-state {
  background: rgba(255, 255, 255, 0.25);
}

.journey-section.module-locked .module-node .module-state {
  background: rgba(255, 255, 255, 0.4);
  color: #4b5563;
}

.module-status-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0e5f95;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.module-callout {
  position: absolute;
  top: -14px;
  right: -10px;
  background: white;
  color: #0a6bb3;
  border-radius: 999px;
  border: 2px solid #98d3ff;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 13px;
  display: none;
  box-shadow: 0 8px 16px rgba(9, 36, 60, 0.12);
}

.module-callout.visible {
  display: block;
}

.module-rounds {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  grid-row: 2;
}

.journey-section:nth-of-type(odd) .module-rounds {
  grid-column: 1;
}

.journey-section:nth-of-type(even) .module-rounds {
  grid-column: 2;
}

.module-description {
  max-width: 400px;
  text-align: center;
  margin-bottom: 30px;
  color: #4b5563;
}

.journey-rounds {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
  width: 100%;
}

.journey-section.module-locked .module-node {
  cursor: not-allowed;
}

.journey-section.module-locked .module-status-icon {
  color: #6b7280;
}

.journey-section.journey-section-future .module-node {
  border-style: dashed;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .module-rounds, .journey-path {
    padding: 0;
  }
  .module-rounds, .journey-section {
    margin: 20px;
  }
  .journey-section {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .journey-section:nth-of-type(odd) .journey-node-wrap,
  .journey-section:nth-of-type(even) .journey-node-wrap,
  .journey-section:nth-of-type(odd) .module-rounds,
  .journey-section:nth-of-type(even) .module-rounds {
    grid-column: 1;
  }
  .module-node {
    width: 75%;
  }
  .module-node .module-state {
    font-size: 12px;
    padding: 2px 8px;
  }
  .module-rounds {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .module-description,
  .journey-rounds {
    max-width: 240px;
  }
  .journey-connector {
    height: 50px;
  }
}
/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _layout.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
body {
  font-family: ui-sans-seri, sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 16px;
}

.header.well {
  padding: 50px;
  background: hsla(210, 50%, 90%, 0.5);
  border-color: color-mix(var(--primary-color), transparent 50%);
}
.header.well .headline {
  font-size: 45px;
  line-height: 1.25em;
}
.header.well .description {
  color: hsl(220, 10%, 50%);
  margin: 20px 0;
}

.well {
  border-radius: 10px;
  border-color: hsl(220, 10%, 70%);
  background: hsl(220, 10%, 90%);
}
.well h2 {
  font-size: 75%;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.panel {
  background: white;
  padding: 20px;
}
.panel h2 {
  margin: 0;
}

.session-status {
  text-align: center;
}

/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _layout.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.main.container {
  padding-top: 80px;
}

#page {
  background-color: hsl(220, 10%, 98%);
  margin-top: 80px;
  min-height: calc(100% - 80px);
}
#page.chat {
  height: calc(100% - 80px);
}

/*
section {
	background: white;
	padding: 20px;
	border-radius: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: colors.$very-light-grey;
	margin: 20px 0;

	h2 {
		margin-top: 0;
	}
}
*/
#footer {
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  section {
    padding: 10px;
  }
}
/******************************************************************************\
|                                                                              |
|                                _spinners.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.spinner {
  display: none;
  position: absolute;
  border-width: 25px;
  border-style: solid;
  border-top-width: 25px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  object-fit: cover;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.5);
  border-top-color: green;
}

.loading.spinner, .loading .spinner {
  display: block !important;
  animation: spinning-keyframes 2s linear infinite;
  -webkit-transform: rotateZ(360deg);
}

/******************************************************************************\
|                                                                              |
|                                 _tables.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|       This defines various CSS styles used in this application.              |
|                                                                              |
|       Author(s): Abe Megahed                                                 |
|                                                                              |
|       This file is subject to the terms and conditions defined in            |
|       'LICENSE.txt', which is part of this source code distribution.         |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
table {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
table th, table td {
  padding: 10px 20px;
}
table thead {
  background: lightgrey;
}
table tbody {
  background: white;
}
table .btn {
  margin: 0 10px;
}

table.numbered {
  counter-reset: row-number;
}
table.numbered tr:not(.ui-sorplaceholder):not(.unnumbered) td:first-child::before {
  content: counter(row-number) ".";
  counter-increment: row-number;
  display: inline-block;
  min-width: 25px;
  margin-right: 5px;
}
table.numbered tr:not(.ui-sorplaceholder).unnumbered td:first-child {
  padding-left: 3em;
}

table.numbered.constant-width td:first-child::before {
  display: inline-block;
  min-width: 1.5em;
  margin-right: 0.5em;
  text-align: right;
}

table.numbered.count-bubbles td:first-child::before {
  content: counter(row-number);
  display: inline-block;
  min-width: 24px;
  height: 24px;
  text-align: center;
  background: white;
  border-radius: 12px;
}

/******************************************************************************\
|                                                                              |
|                                 _index.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                              _breadcrumbs.less                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.breadcrumb {
  margin-bottom: 50px;
}
.breadcrumb i {
  margin-right: 5px;
}

/******************************************************************************\
|                                                                              |
|                                 _modals.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _navbars.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|       Copyright 2026, Data Science Institute, University of Wisconsin        |
\******************************************************************************/
.navbar {
  background: white;
  border: none;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
}
.navbar .navbar-nav > li > a {
  color: var(--primary-color);
}
.navbar .navbar-nav > li > a i.fa {
  margin-right: 5px;
}

#brand {
  color: black;
  font-style: bold;
}

.nav-tabs {
  margin-bottom: 20px;
}

.navbar-right {
  display: flex;
  min-height: 50px;
}
.navbar-right .buttons {
  display: flex;
  height: 100%;
  margin: auto;
}
.navbar-right .buttons .btn {
  margin: auto;
}
.navbar-right .buttons .btn + .btn {
  margin-left: 10px;
}

a {
  color: grey;
}
a:hover {
  color: grey;
}

@media (max-width: 480px) {
  .navbar-right {
    display: block;
    height: auto;
  }
  .navbar-right .buttons {
    display: block;
    padding: 10px;
    margin-left: 0;
  }
  .navbar-right .buttons .btn {
    width: 100%;
  }
  .navbar-right .buttons .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
