/******************************************************************************\
|                                                                              |
|                                 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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _branding.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        |
\******************************************************************************/
body {
  --primary-color: hsl(290, 10%, 60%);
}

/******************************************************************************\
|                                                                              |
|                                _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        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                _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        |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _modals.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        |
\******************************************************************************/
.modal {
  pointer-events: none;
  padding-bottom: 30px;
}
.modal .modal-dialog {
  display: flex;
  margin: auto;
  max-height: 75%;
}
.modal .modal-dialog .modal-content {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 10px 10px 50px 10px fade(black, 50%);
  pointer-events: auto;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: auto;
  width: 600px;
  min-width: 300px;
}
.modal .modal-dialog .modal-content .modal-header {
  flex-shrink: 0;
}
.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 {
    padding-bottom: 0;
  }
  .modal .modal-dialog .modal-header .modal-title {
    margin-right: 0;
  }
  .modal .modal-dialog .modal-header .buttons {
    margin-left: 0;
  }
  .modal .modal-dialog .modal-body .vertically.scrollable {
    max-height: none;
  }
  .modal .modal-dialog .modal-footer .notes {
    float: none;
    text-align: left;
  }
  .modal .modal-dialog .modal-footer .buttons {
    margin-bottom: 10px;
  }
  .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;
  }
}
@media (prefers-color-scheme: dark) {
  .modal-content {
    background-color: #404040 !important;
  }
}
/******************************************************************************\
|                                                                              |
|                          _dialog-transitions.scss                            |
|                                                                              |
|******************************************************************************|
|                                                                              |
|       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;
}

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

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

.modal.minimized {
  display: none;
}

/******************************************************************************\
|                                                                              |
|                                 _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 (C) 2024, 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;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  outline: none;
}
.btn + .btn {
  margin-left: 10px;
}
.btn:focus {
  outline: none !important;
}
.btn.btn-primary {
  background-color: var(--primary-color);
}
.btn.btn-primary:hover {
  background-color: color-mix(in srgb, rgb(0, 0, 127) 20%, var(--primary-color));
}

.buttons {
  text-align: center;
  margin-top: 20px;
}
.buttons .btn {
  padding: 10px 20px;
  margin-top: 10px;
}

.start.btn, .resume.btn {
  color: white;
  background: hsl(110, 20%, 50%) !important;
}
.start.btn:hover, .resume.btn:hover {
  background: hsl(110, 20%, 40%) !important;
}

@media (max-width: 479px) {
  .buttons btn {
    width: 100%;
  }
}
/******************************************************************************\
|                                                                              |
|                                _forms.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        |
\******************************************************************************/
.form-label, .control-label {
  float: left;
  width: 25%;
}

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

.form-control {
  font-size: inherit;
}

select.form-control {
  padding: 0 10px !important;
}

.separator {
  text-align: center;
  font-weight: bold;
}

.separator::before, .separator::after {
  content: "- ";
}

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

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

.country-code.input-group {
  width: 100px;
}

#country-selector {
  position: absolute;
}

#country-selector .dropdown-menu {
  position: relative;
  margin: 0;
  padding: 0;
}

#country-selector button img {
  margin-top: -3px;
  margin-left: 5px;
}

.country-code.input-group {
  width: 100px;
}

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 {
  max-width: 360px;
  width: auto;
}

/******************************************************************************\
|                                                                              |
|                              _surveyjs.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        |
\******************************************************************************/
body {
  --sjs-corner-radius: 10px;
}

.sd-body.sd-body--static,
.sv-header__content--static {
  max-width: 100%;
}

.sd-body.sd-body--static {
  padding-bottom: 20px;
}

.sd-progress__bar {
  height: 25px;
}

.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
  width: auto !important;
  min-width: 60px;
}
.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty):first-child {
  min-width: 200px;
}

body {
  --sjs-general-forecolor-light: black;
  --sjs-general-dim-forecolor-light: black;
  --sjs-primary-backcolor: hsl(110, 20%, 50%);
  --sjs-primary-backcolor-dark: hsl(110, 20%, 40%);
  --sjs-font-headertitle-color: inherit;
  --sjs-font-pagetitle-color: inherit;
}
body .sd-page .sd-page__description {
  --sjs-font-pagedescription-color: black;
  --sjs-general-dim-forecolor-light: black;
}

@media (prefers-color-scheme: dark) {
  body {
    --background: #404040;
    --background-dim: #404040;
    --sjs-general-backcolor-dim: #404040;
    --background-dim-light: #404040;
    --sjs-general-backcolor-dim-light: #404040;
    --sjs-editor-background: #404040;
    --sjs-editorpanel-backcolor: #404040;
    --lbr-popup-menu-background-color: #404040;
    --sjs-font-headertitle-color: white;
    --sjs-font-pagetitle-color: hsl(290, 10%, 90%);
    --sjs-general-dim-forecolor-light: white;
    --sjs-questionpanel-backcolor: #303030;
    --sjs-font-questiontitle-color: white;
    --sjs-font-questiondescription-color: lightgrey;
  }
  body .sv-list__item:hover .sd-list__item-body {
    background: grey !important;
  }
  body {
    --sjs-general-forecolor: white;
    -sjs-font-editorfont-color: white;
  }
  body .sd-page .sd-page__description {
    --sjs-font-pagedescription-color: white;
    --sjs-general-dim-forecolor-light: white;
  }
}
/******************************************************************************\
|                                                                              |
|                                  _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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _cards.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        |
\******************************************************************************/
.cards {
  width: 100%;
}
.cards .card {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  width: 300px;
  min-height: 600px;
  padding: 20px;
  background: hsl(30, 50%, 95%);
  border-radius: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
.cards .card .icon {
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 30px;
  width: 200px;
  height: 200px;
  border-radius: 25%;
}
.cards .card .icon i {
  width: 100px;
  font-size: 100px;
  background-color: white;
  border-radius: 50%;
}
.cards .card .icon img {
  max-width: 100%;
  max-height: 100%;
}
.cards .card .info {
  margin-top: 20px;
  flex-grow: 1;
}
.cards .card .info .name {
  font-size: 2em;
  font-weight: bold;
  min-height: 160px;
}
.cards .card .info .description {
  margin-bottom: 10px;
  min-height: 150px;
}
.cards .card .info .dates {
  margin-bottom: 25px;
}
.cards .card .info label {
  margin-right: 10px;
}
.cards .card .buttons {
  margin: 0;
}

@media (max-width: 479px) {
  .cards {
    text-align: center;
  }
}
/******************************************************************************\
|                                                                              |
|                                  _items.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|******************************************************************************|
|     Copyright (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
.items ol, .items ul:not(.nav-tabs) {
  padding: 0;
  list-style-position: inside;
  margin-bottom: 0;
}
.items ol li, .items ul:not(.nav-tabs) li {
  padding: 5px 10px;
  /*
  &:not(:last-child) {
  	border-bottom: 2px dashed $item-divider-color;
  }
  */
}
.items ol li:hover, .items ul:not(.nav-tabs) li:hover {
  background-color: rgb(159.8503937008, 159.8503937008, 198.1496062992);
}
.items ol li .icon, .items ul:not(.nav-tabs) li .icon {
  margin-right: 5px;
}
.items ol li a, .items ul:not(.nav-tabs) li a {
  cursor: pointer;
}
.items ol li .options, .items ul:not(.nav-tabs) li .options {
  float: right;
}
.items ol li .title {
  display: inline;
}
.items ul:not(.nav-tabs) li {
  display: flex;
  flex-direction: column;
}
.items ul:not(.nav-tabs) li .title {
  display: flex;
}
.items .items .department .list {
  margin-left: 10px;
}
.items .list label {
  color: grey;
}
.items table {
  width: 100%;
}
.items table th {
  padding: 5px 10px;
  padding-right: 20px;
  background: rgb(159.8503937008, 159.8503937008, 198.1496062992);
  white-space: nowrap !important;
}
.items table tr {
  /*
  &:not(:last-child) {
  	border-bottom: 2px dashed $item-divider-color;
  }
  */
}
.items table tr:hover {
  background-color: rgb(159.8503937008, 159.8503937008, 198.1496062992);
}
.items table tr td {
  vertical-align: top;
  padding: 5px 10px;
}
.items table tr td label {
  margin-top: 10px;
}
.items table tr td.duplicate {
  font-size: 0;
}
.items table tr td.year, .items table tr td.department, .items table tr td.amount {
  word-break: normal;
  font-weight: bold;
  vertical-align: top;
}
.items table tr td.first-name, .items table tr td.department {
  width: 50%;
}
.items table tr td.contributors {
  text-align: center;
}
.items table tr td.amount {
  white-space: nowrap !important;
}
.items table tr td a:hover {
  text-decoration: none;
}
.items table tr td .title {
  display: flex;
}
.items table tr td .title i {
  margin-right: 10px;
}
.items table tr td .expander {
  margin-right: -10px;
}

/******************************************************************************\
|                                                                              |
|                                 _trees.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|******************************************************************************|
|     Copyright (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
.tree .expander {
  width: 20px;
  text-align: center;
  margin-right: 5px;
}
.tree .expander i {
  margin-right: 0;
}
.tree:not(.expanded) .children {
  display: none;
}
.tree .item {
  display: flex;
}
.tree .select {
  margin-right: 7px;
}
.tree .select:first-child {
  margin-left: 25px;
}
.tree .count {
  margin-left: auto;
}
.tree .children .tree {
  padding: 0;
}
.tree .children .item {
  display: flex;
}
.tree .children .children {
  margin-left: 20px;
}
.tree:not(.expanded) > .item .expander .collapse {
  display: none;
}
.tree:not(.expanded) > .item .expander .expand {
  display: inline-block;
}
.tree.expanded > .item .expander .expand {
  display: none;
}
.tree.expanded > .item .expander .collapse {
  display: inline-block;
}

.tree > .item > .name {
  font-weight: bold;
}

/******************************************************************************\
|                                                                              |
|                                 _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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _layout.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        |
\******************************************************************************/
body {
  padding-top: 50px;
  padding-bottom: 20px;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-size: cover;
}
.hero + * {
  margin-top: 400px;
}

h1 {
  margin-top: 30px;
}
h1 i {
  float: left;
  padding-right: 5px;
}

.header .icon {
  width: 200px;
  height: 200px;
  padding: 30px;
  margin: 50px auto;
  background: var(--primary-color);
  border-radius: 25%;
}
.header .icon img {
  max-width: 100%;
  max-height: 100%;
}

p {
  margin: 20px 0;
}

.surveys {
  display: flex;
}

.panel {
  box-shadow: none;
}

@media (max-width: 767px) {
  .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
i.fa {
  margin-right: 5px;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #303030;
    color: hsl(290, 10%, 90%);
  }
  .breadcrumb {
    background-color: hsl(30, 10%, 30%);
  }
  .cards .card {
    background-color: hsl(30, 10%, 30%);
  }
  .cards .card .icon {
    background-color: #303030;
  }
  .well {
    background: #606060;
    border-color: grey;
    /*
    a, a:hover {
    	color: white;
    }
    */
  }
  .alert a, .alert a:hover {
    color: color-mix(in srgb, rgb(0, 0, 127) 20%, var(--primary-color));
  }
  .btn {
    background-color: hsl(30, 10%, 30%);
  }
  .btn:hover {
    color: white;
    background-color: hsl(30, 10%, 40%);
  }
}
/******************************************************************************\
|                                                                              |
|                              _typography.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        |
\******************************************************************************/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

h1, h2, h3 {
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

h2 {
  font-size: 150%;
}

/******************************************************************************\
|                                                                              |
|                                 _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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _navs.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        |
\******************************************************************************/
.navbar {
  display: flex;
  background-color: var(--primary-color);
  border: none;
}
.navbar #brand {
  color: white;
}
.navbar .logo {
  height: 40px;
  margin: 5px;
  float: left;
}
.navbar .navbar-nav > li > a {
  color: white;
}
.navbar .navbar-nav > li > a:hover {
  text-decoration: underline;
}
.navbar .navbar-form.navbar-right {
  padding-left: 30px;
  padding-right: 30px;
}

h1 {
  margin: 30px 0;
}
h1 i {
  color: var(--primary-color);
}

a {
  color: color-mix(in srgb, rgb(0, 0, 127) 20%, var(--primary-color));
}
a:hover {
  color: color-mix(in srgb, rgb(0, 0, 127) 20%, var(--primary-color));
}

.breadcrumb {
  margin-bottom: 30px;
}

@media (prefers-color-scheme: dark) {
  a {
    color: color-mix(in srgb, white 20%, var(--primary-color));
  }
  a:hover {
    color: color-mix(in srgb, white 20%, var(--primary-color));
  }
}
/******************************************************************************\
|                                                                              |
|                                  _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 (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                 _tables.scss                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|******************************************************************************|
|     Copyright (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
table {
  color: black;
  background-color: #f0f0f0;
  border-radius: 5px;
  width: 100%;
  text-align: left;
  overflow: hidden;
}
table thead {
  background-color: lightgrey;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
table tbody > div {
  padding: 10px 20px;
}
table th, table td {
  border-top: none !important;
  padding: 10px 20px;
  vertical-align: middle;
}
table th.date, table th.count, table th.flag, table td.date, table td.count, table td.flag {
  width: 150px;
}
table th a, table td a {
  color: black;
  text-decoration: underline;
}
table tr.children {
  display: block;
  margin-left: 20px;
}

@media (prefers-color-scheme: dark) {
  table {
    color: white;
    background-color: hsl(30, 10%, 30%);
  }
  table thead {
    background-color: hsl(30, 10%, 40%);
    color: hsl(290, 10%, 75%);
  }
  table a {
    color: hsl(290, 10%, 75%) !important;
  }
  table a:hover {
    color: white !important;
  }
}
/******************************************************************************\
|                                                                              |
|                              _tablesorter.scss                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|******************************************************************************|
|     Copyright (C) 2024, Data Science Institute, University of Wisconsin      |
\******************************************************************************/
.tablesorter-default .header,
.tablesorter-default .tablesorter-header {
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  background-position: center right;
  background-repeat: no-repeat;
  cursor: pointer;
  white-space: normal;
  border-top: 2px dashed var(--primary-color);
}

.tablesorter-default thead .headerSortUp,
.tablesorter-default thead .tablesorter-headerAsc,
.tablesorter-default thead .tablesorter-headerSortUp {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
  border-top: 2px solid var(--primary-color);
}

.tablesorter-default thead .headerSortDown,
.tablesorter-default thead .tablesorter-headerDesc,
.tablesorter-default thead .tablesorter-headerSortDown {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
  border-top: 2px solid var(--primary-color);
}

.tablesorter-default thead .sorter-false {
  background-image: none;
  cursor: default;
  padding: 4px;
}

.tablesorter-default .tablesorter-processing {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-image: url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=) !important;
}

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