@charset "UTF-8";
/* ==========================================================================
   Dark skin
   ========================================================================== */
/* Colors */
/* dark syntax highlighting (base16) */
.author__urls.social-icons .svg-inline--fa,
.page__footer-follow .social-icons .svg-inline--fa {
  color: inherit;
}

/* ==========================================================================
   Variables
   ========================================================================== */
/*
   Typography
   ========================================================================== */
/* paragraph indention */
/* system typefaces */
/* sans serif typefaces */
/* serif typefaces */
/* type scale */
/* headline scale */
/*
   Colors
   ========================================================================== */
/* accent — used for callouts/highlights across page/people/publi */
/* project status badges */
/* project category (mindmap + cards) */
/* avatar palette — deterministic hash slot -> color */
/* collaboration-project surface tokens (derived from background/text/primary) */
/* YIQ color contrast */
/* brands */
/* links */
/* notices */
/* syntax highlighting (base16) */
/*
   Breakpoints
   ========================================================================== */
/*
   Grid
   ========================================================================== */
/*
   Other
   ========================================================================== */
/* ==========================================================================
   MIXINS
   ========================================================================== */
/*
   em function
   ========================================================================== */
/*
   Bourbon clearfix
   ========================================================================== */
/*
  * Provides an easy way to include a clearfix for containing floats.
  * link http://cssmojo.com/latest_new_clearfix_so_far/
  *
  * example scss - Usage
  *
  * .element {
  *   @include clearfix;
  * }
  *
  * example css - CSS Output
  *
  * .element::after {
  *   clear: both;
  *   content: "";
  *   display: table;
  * }
*/
/*
   Compass YIQ Color Contrast
   https://github.com/easy-designs/yiq-color-contrast
   ========================================================================== */
/*
   Themeable <select> chevron — bakes a theme color into an inline SVG data URI
   so the arrow follows the active skin instead of a hardcoded fill.
   ========================================================================== */
pre.email {
  background: rgb(29.6, 33.6, 41.6);
  padding: 1.5em;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.9em;
}

.edit-link {
  color: rgb(174.9, 176.4, 179.4);
  font-size: 0.8em;
  text-decoration: none;
  margin-left: 0.25rem;
}
.edit-link:hover {
  color: #eaeaea;
}

#main.regular-main {
  margin-top: 1em;
}

table.projects {
  width: 100%;
  border-collapse: collapse;
  /* Responsive table - horizontal on desktop, vertical on mobile */
}
table.projects th {
  text-align: left;
  padding: 0.4em 0.75em;
  border-bottom: 2px solid #ccc;
}
table.projects th.details {
  padding: 0.4em 0.75em;
  border-bottom: 2px solid #ccc;
}
table.projects td {
  padding: 0.4em 0.75em;
  border-bottom: 1px solid #eee;
}
table.projects th.deps {
  width: 10%;
}
@media (min-width: 768px) {
  table.projects tr td:first-child {
    width: 1%;
  }
  table.projects tr td:nth-child(2) {
    width: 2%;
  }
  table.projects tr td:last-child {
    width: 1%;
  }
}
@media (max-width: 767px) {
  table.projects thead {
    display: none;
  }
  table.projects tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  table.projects td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid #eee;
  }
  table.projects td:last-child {
    border-bottom: none;
  }
  table.projects td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.75em;
    width: 45%;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}

.dry-run {
  background: #ee5f5b;
  border: 1px solid #d67f05;
  padding: 0.75em 1em;
  border-radius: 4px;
}

.page-footer--alternate-location {
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: bold;
}
.page-footer--alternate-location a img {
  background-color: white;
  height: 1em;
}

form .date label, .captcha-container .date label {
  display: inline;
}
form .date input, .captcha-container .date input {
  width: 20%;
  max-width: 10em;
}
form .checkbox, .captcha-container .checkbox {
  display: inline;
  width: auto;
}
form select, .captcha-container select {
  background-color: inherit;
}
form input[type=file], .captcha-container input[type=file] {
  width: 100%;
  display: block;
}
form .aquila_people_list, .captcha-container .aquila_people_list {
  margin-top: 1em;
  padding-bottom: 1em;
  border: solid 1px;
  border-color: red;
}
form .aquila_people_list .checkbox, .captcha-container .aquila_people_list .checkbox {
  display: block;
  margin-bottom: 1em;
  font-weight: bold;
}
form .aquila_people_list .aquila_people, .captcha-container .aquila_people_list .aquila_people {
  font-weight: normal;
  padding-left: 3em;
}
form .aquila_people_list input, .captcha-container .aquila_people_list input {
  margin-right: 0.5em;
}
form .confirm_pdf, .captcha-container .confirm_pdf {
  margin: 1em;
  padding: 1em;
  border: solid red 1px;
}
form .confirm_pdf.confirmed, .captcha-container .confirm_pdf.confirmed {
  border: solid green 2px;
}
form .confirm_pdf input, .captcha-container .confirm_pdf input {
  margin-left: 1em;
}

.feature__item {
  border: 1px solid gray;
  padding: 5px;
}

.feature__wrapper.featured_post::after {
  content: " ";
  width: 100%;
  padding-top: 1em;
}

.hero--main-bg {
  background-image: url("/assets/images/main_smaller.jpg");
}

.text--error {
  color: #ee5f5b;
  font-weight: bold;
}

.text--success {
  color: #3fa63f;
  font-weight: bold;
}

.text--warning {
  color: #d67f05;
  font-weight: bold;
}

.text--muted {
  color: rgb(174.9, 176.4, 179.4);
}

.mt-sm {
  margin-top: 0.5em;
}

.mt-md {
  margin-top: 1em;
}

.mt-lg {
  margin-top: 1.5em;
}

.mt-xl {
  margin-top: 2em;
}

.ml-sm {
  margin-left: 0.5em;
}

.ml-md {
  margin-left: 1em;
}

.ml-lg {
  margin-left: 2em;
}

.mr-md {
  margin-right: 1em;
}

.list--none {
  list-style: none;
}

.list--plain {
  list-style: none;
  padding: 0;
}
.list--plain li {
  margin-bottom: 0.5em;
}

#results {
  margin-top: 1em;
}

.search-results__section-heading {
  font-weight: 600;
  font-size: 1.1em;
  margin: 1.5em 0 0.75em;
  padding: 0.5em 0;
  color: #eaeaea;
  border-bottom: 2px solid #00adb5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-results__section-heading:first-of-type {
  margin-top: 0.5em;
}

.search-result {
  margin-bottom: 1em;
  width: 100%;
}
.search-result:last-child {
  margin-bottom: 0;
}

.search-result__link {
  color: #00adb5;
  text-decoration: none;
  font-weight: 500;
}
.search-result__link:hover {
  text-decoration: underline;
}

.search-result__type {
  color: rgb(135.5, 138, 143);
  font-size: 0.9em;
  margin-top: 0.25em;
}

.form--inline {
  display: inline;
}

.form--flex {
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-top: 0.5em;
  flex-wrap: wrap;
}

.input--medium {
  width: 20em;
}

.td--nowrap {
  white-space: nowrap;
}

.credentials-table {
  border-collapse: collapse;
  margin: 1em 0;
}
.credentials-table th {
  text-align: left;
  padding: 0.25em 0.75em 0.25em 0;
}

.col--code {
  width: 10em;
}

.col--narrow {
  width: 3em;
}

.col--action {
  width: 5em;
}

.collab-projects__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1.5em;
}
.collab-projects__header h1 {
  margin: 0;
}

.badge--active {
  background-color: #3fa63f;
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-size: 0.6em;
  vertical-align: middle;
}

.badge--inactive {
  background-color: rgb(174.9, 176.4, 179.4);
  color: #3d4144;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-size: 0.6em;
  vertical-align: middle;
}

.lead-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0;
  margin-bottom: 1em;
}

.lead-team-grid__item {
  flex: 0 0 33.33%;
  padding: 0.15em 0;
}

@media (max-width: 767px) {
  .lead-team-grid__item {
    flex: 0 0 50%;
  }
}
.dep-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.3em;
}

.edit-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.4em;
}

.project-actions {
  margin: 1.5em 0;
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
}

.project-update {
  margin-bottom: 1.25em;
  padding: 0.65em 0.85em;
  border-left: 3px solid #2a9d8f;
}

.project-update__title {
  margin-top: 0;
  margin-bottom: 0.2em;
}

.update-permalink {
  margin-left: 0.4em;
  color: #aaa;
  font-size: 0.75em;
  vertical-align: middle;
  text-decoration: none;
}
.update-permalink:hover {
  color: #2a9d8f;
}

.project-update__meta {
  color: #666;
  font-size: 0.9em;
  margin: 0 0 0.5em;
}

.project-update__body {
  margin: 0;
}

.form__hint {
  font-size: 0.85em;
  color: #888;
  margin: -0.4em 0 0.4em;
}

.filename-pattern {
  display: inline-block;
  color: #099;
  font-weight: bold;
}

.filename-preview {
  color: #099;
}

.download-count {
  font-weight: bold;
  color: #ee0;
}

.arxiv-icon {
  padding: 0 0.2em;
  vertical-align: baseline;
}

.orcid-link {
  vertical-align: top;
}

.orcid-icon {
  width: 1em;
  margin-right: 0.5em;
}

.select--location {
  background-color: rgb(31.45, 35.7, 44.2);
  border: 2px solid rgb(80.6, 84.6, 92.6);
}

.deploy-info {
  margin-top: 2em;
  font-size: 0.85em;
  color: rgb(76.4, 80.4, 88.4);
}

.log-notice {
  margin-bottom: 1.2rem;
}
.log-notice p {
  margin: 0;
}

.log-filter-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.87em;
}

.log-filter-label {
  color: rgb(174.9, 176.4, 179.4);
  margin-right: 0.2rem;
}

.log-filter-btn {
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(234, 234, 234, 0.18);
  color: rgb(174.9, 176.4, 179.4);
}
.log-filter-btn.is-active.log-filter-btn--all {
  background: rgba(234, 234, 234, 0.12);
  border-color: rgba(234, 234, 234, 0.3);
  color: #eaeaea;
}
.log-filter-btn.is-active.log-filter-btn--info {
  background: rgba(59, 156, 186, 0.2);
  border-color: #3b9cba;
  color: rgb(176.6, 215.4, 227.4);
}
.log-filter-btn.is-active.log-filter-btn--warning {
  background: rgba(214, 127, 5, 0.2);
  border-color: #d67f05;
  color: rgb(238.6, 203.8, 155);
}
.log-filter-btn.is-active.log-filter-btn--error {
  background: rgba(238, 95, 91, 0.2);
  border-color: #ee5f5b;
  color: rgb(248.2, 191, 189.4);
}

.log-meta {
  font-size: 0.85em;
  color: rgb(174.9, 176.4, 179.4);
  margin-bottom: 0.8rem;
}

.log-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.log-entry {
  background: rgba(234, 234, 234, 0.04);
  border: 1px solid rgba(234, 234, 234, 0.09);
  border-left: 3px solid rgb(80.6, 84.6, 92.6);
  border-radius: 5px;
  padding: 0.55rem 0.9rem;
}
.log-entry--info {
  border-left-color: #3b9cba;
}
.log-entry--warning {
  border-left-color: #d67f05;
}
.log-entry--error {
  border-left-color: #ee5f5b;
}

.log-entry-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.log-date {
  font-size: 0.78em;
  color: rgb(174.9, 176.4, 179.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.log-level-badge {
  font-size: 0.72em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1em 0.45em;
  border-radius: 3px;
  flex-shrink: 0;
}
.log-entry--info .log-level-badge {
  background: rgba(59, 156, 186, 0.2);
  color: rgb(176.6, 215.4, 227.4);
}
.log-entry--warning .log-level-badge {
  background: rgba(214, 127, 5, 0.2);
  color: rgb(238.6, 203.8, 155);
}
.log-entry--error .log-level-badge {
  background: rgba(238, 95, 91, 0.2);
  color: rgb(248.2, 191, 189.4);
}

.log-message {
  font-family: Monaco, Consolas, "Lucida Console", monospace;
  font-size: 0.83em;
  word-break: break-word;
}
.log-entry--info .log-message {
  color: rgb(215.8, 235.2, 241.2);
}
.log-entry--warning .log-message {
  color: rgb(246.8, 229.4, 205);
}
.log-entry--error .log-message {
  color: rgb(251.6, 223, 222.2);
}

.log-trace-toggle {
  margin-top: 0.45rem;
}

.log-trace-summary {
  font-size: 0.78em;
  color: rgb(174.9, 176.4, 179.4);
  cursor: pointer;
  user-select: none;
}

.log-trace-pre {
  margin: 0.4rem 0 0;
  font-size: 0.76em;
  color: rgb(174.9, 176.4, 179.4);
  overflow-x: auto;
  background: rgba(234, 234, 234, 0.06);
  padding: 0.5rem 0.7rem;
  border-radius: 3px;
  white-space: pre-wrap;
  word-break: break-all;
}

.log-pagination {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.9em;
}

.admin-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.admin-tile {
  background: rgba(234, 234, 234, 0.06);
  border: 1px solid rgba(234, 234, 234, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.admin-tile__header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-left: 3px solid #00adb5;
  background: rgba(234, 234, 234, 0.04);
}

.admin-tile__header .fa-solid {
  width: 1.1em;
  text-align: center;
}

.admin-tile__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.admin-tile__list li {
  margin: 0;
  padding: 0;
}

.admin-tile__list a {
  display: flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.4rem 1rem;
  color: rgb(174.9, 176.4, 179.4);
  text-decoration: none;
  font-size: 0.9em;
  transition: background 0.12s, color 0.12s;
}

.admin-tile__list a:hover {
  background: rgba(234, 234, 234, 0.07);
  color: #eaeaea;
}

.admin-tile__list .fa-solid {
  width: 1em;
  text-align: center;
  color: rgb(174.9, 176.4, 179.4);
  font-size: 0.9em;
  flex-shrink: 0;
}

/* Colour accents */
.admin-tile--warning .admin-tile__header {
  border-left-color: #d67f05;
}

.admin-tile--warning .admin-tile__header .fa-solid {
  color: #d67f05;
}

.admin-tile--danger .admin-tile__header {
  border-left-color: #ee5f5b;
}

.admin-tile--danger .admin-tile__header .fa-solid {
  color: #ee5f5b;
}

.admin-tile--primary .admin-tile__header {
  border-left-color: #00adb5;
}

.admin-tile--primary .admin-tile__header .fa-solid {
  color: #00adb5;
}

.admin-tile--info .admin-tile__header {
  border-left-color: #3b9cba;
}

.admin-tile--info .admin-tile__header .fa-solid {
  color: #3b9cba;
}

.forgejo-icon {
  height: 1em;
  width: auto;
}

.page-actions {
  margin-top: 2em;
}

:root {
  --proj-muted-clr: rgb(135.5, 138, 143);
  --mindmap-bg: rgb(29.6, 33.6, 41.6);
  --cat-infrastructure: #0891b2;
  --cat-infrastructure-border: rgb(6, 108.75, 133.5);
  --cat-infrastructure-highlight: rgb(94.45, 183.5, 204.95);
  --cat-software: #7c3aed;
  --cat-software-border: rgb(93, 43.5, 177.75);
  --cat-software-highlight: rgb(169.85, 126.95, 243.3);
  --cat-science: #059669;
  --cat-science-border: rgb(3.75, 112.5, 78.75);
  --cat-science-highlight: rgb(92.5, 186.75, 157.5);
  --cat-other: #d97706;
  --cat-other-border: rgb(162.75, 89.25, 4.5);
  --cat-other-highlight: rgb(230.3, 166.6, 93.15);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.2em 0.65em;
  border-radius: 1em;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.status-badge .status-dot {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.s-active {
  background: rgb(30.6, 63.6, 62.6);
  color: #9bd5c3;
}

.s-review {
  background: rgb(37, 53.4, 88.6);
  color: rgb(167.8, 192.6, 247);
}

.s-paused {
  background: rgb(73, 57.4, 42.8);
  color: rgb(239.8, 200.6, 155.4);
}

.s-stale {
  background: rgb(51, 56.4, 67.2);
  color: rgb(195.8, 198.6, 204.2);
}

.s-completed {
  background: rgb(40.6, 46.6, 57.8);
  color: rgb(175, 179, 185.4);
}

.proj-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.proj-toolbar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.proj-search-box {
  position: relative;
  flex: 1 1 200px;
}
.proj-search-box input {
  width: 100%;
  padding: 0.45rem 0.75rem 0.45rem 2.1rem;
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  color: #eaeaea;
  font-size: 0.9rem;
  box-sizing: border-box;
  margin-bottom: 0;
}
.proj-search-box input::placeholder {
  color: rgb(135.5, 138, 143);
}
.proj-search-box input:focus {
  outline: none;
  border-color: #00adb5;
}

.proj-search-icon {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(135.5, 138, 143);
  pointer-events: none;
  font-size: 0.85rem;
}

.proj-filter-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.proj-filter-btn {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  background: transparent;
  color: rgb(135.5, 138, 143);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.proj-filter-btn:hover {
  border-color: #00adb5;
  color: #eaeaea;
}
.proj-filter-btn--on {
  background: #00adb5;
  border-color: #00adb5;
  color: #fff;
}

.proj-filter-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  border-radius: 0.75em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.1em 0.45em;
  margin-left: 0.3em;
  min-width: 1.4em;
  text-align: center;
  vertical-align: middle;
}

.proj-table-wrap {
  overflow-x: auto;
}
.proj-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.proj-table-wrap th:not(.th-project),
.proj-table-wrap td:not(:nth-child(2)) {
  white-space: nowrap;
  width: 1%;
}
.proj-table-wrap th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid rgb(80.6, 84.6, 92.6);
  color: rgb(135.5, 138, 143);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proj-table-wrap td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
  vertical-align: middle;
}
.proj-table-wrap tr:last-child td {
  border-bottom: none;
}

.proj-project-id {
  font-family: Monaco, Consolas, "Lucida Console", monospace;
  font-size: 0.8rem;
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.25rem;
  padding: 0.15em 0.45em;
  color: rgb(135.5, 138, 143);
}

.proj-project-title {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 500;
}
.proj-project-title:hover {
  color: #00adb5;
  text-decoration: underline;
}

.proj-meta-count {
  font-size: 0.85rem;
  color: rgb(135.5, 138, 143);
  font-weight: 500;
}

.proj-created-cell {
  font-size: 0.8rem;
  color: rgb(135.5, 138, 143);
}

.proj-update-cell {
  font-size: 0.8rem;
  color: rgb(135.5, 138, 143);
}
.proj-update-cell.upd-green {
  color: #059669;
}
.proj-update-cell.upd-orange {
  color: #d97706;
}
.proj-update-cell.upd-red {
  color: #dc2626;
}

.proj-avatar-stack {
  display: flex;
  align-items: center;
}

.proj-team-avatar, .proj-sidebar-av, .proj-av {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.avatar--c0 {
  background-color: #2563eb;
  color: #fff;
}

.avatar--c1 {
  background-color: #059669;
  color: #fff;
}

.avatar--c2 {
  background-color: #7c3aed;
  color: #fff;
}

.avatar--c3 {
  background-color: #c2410c;
  color: #fff;
}

.avatar--c4 {
  background-color: #0891b2;
  color: #fff;
}

.avatar--c5 {
  background-color: #be185d;
  color: #fff;
}

.avatar--c6 {
  background-color: #d97706;
  color: #fff;
}

.avatar--c7 {
  background-color: #374151;
  color: #fff;
}

.proj-av {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.65rem;
  margin-left: -0.4rem;
  border: 2px solid #252a34;
}
.proj-av:first-child {
  margin-left: 0;
}
.proj-av--more {
  background: rgb(80.6, 84.6, 92.6);
  color: rgb(135.5, 138, 143);
}

.proj-detail-header {
  background: rgb(52.26, 56.91, 66.21);
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}

.proj-detail-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.proj-breadcrumb {
  font-size: 0.8rem;
  color: rgb(135.5, 138, 143);
  margin-bottom: 0.6rem;
}
.proj-breadcrumb a {
  color: rgb(135.5, 138, 143);
  text-decoration: none;
}
.proj-breadcrumb a:hover {
  color: #00adb5;
}
.proj-breadcrumb span {
  margin: 0 0.3em;
}

.proj-id-badge {
  font-family: Monaco, Consolas, "Lucida Console", monospace;
  font-size: 0.75rem;
  background: rgb(80.6, 84.6, 92.6);
  border-radius: 0.25rem;
  padding: 0.15em 0.5em;
  color: rgb(135.5, 138, 143);
  margin-right: 0.5rem;
}

.proj-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 600px) {
  .proj-header-top {
    flex-direction: column;
  }
  .proj-header-top .proj-header-actions {
    flex-shrink: unset;
    width: 100%;
  }
}

.proj-header-main {
  flex: 1;
}

.proj-header-title {
  font-size: 1.5rem;
  margin: 0.25rem 0;
  color: #eaeaea;
}

.proj-header-meta {
  margin-top: 0.4rem;
}

.proj-header-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.proj-category-label {
  font-size: 0.85rem;
  color: rgb(135.5, 138, 143);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0;
}

.proj-cat-icon {
  color: rgb(135.5, 138, 143);
  font-size: 0.8rem;
}

.proj-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1.25rem;
  border-bottom: 2px solid rgb(80.6, 84.6, 92.6);
}

.proj-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgb(135.5, 138, 143);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s, border-color 0.15s;
}
.proj-tab-btn:hover {
  color: #eaeaea;
}
.proj-tab-btn.is-active {
  color: #eaeaea;
  border-bottom-color: #00adb5;
  font-weight: 500;
}

.proj-tab-count {
  font-size: 0.72rem;
  background: rgb(80.6, 84.6, 92.6);
  border-radius: 1em;
  padding: 0.05em 0.5em;
}

.proj-tab-panel {
  display: none;
}

.proj-tab-panel.is-active {
  display: block;
}

.proj-card {
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.proj-card__header {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgb(135.5, 138, 143);
}

.proj-card__body {
  padding: 1rem;
}
.proj-card__body--flush {
  padding: 0;
}
.proj-card__body--border-top {
  border-top: 1px solid rgb(80.6, 84.6, 92.6);
}

.proj-card form {
  background: transparent;
  padding: 0;
  margin: 0;
}

.proj-muted {
  color: rgb(135.5, 138, 143);
  font-size: 0.9rem;
  margin: 0;
}

.proj-overview-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 800px) {
  .proj-overview-layout {
    grid-template-columns: 1fr;
  }
}

.proj-overview-main {
  min-width: 0;
}

.proj-dep-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
}
.proj-dep-item:last-child {
  border-bottom: none;
}

.proj-dep-arrow {
  color: rgb(135.5, 138, 143);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.proj-dep-link {
  text-decoration: none;
}
.proj-dep-link:hover {
  text-decoration: underline;
}

.proj-dep-title {
  font-weight: 500;
  color: #eaeaea;
}

.proj-sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}
.proj-sidebar-stat:last-child {
  margin-bottom: 0;
}

.proj-sidebar-stat__label {
  font-size: 0.82rem;
  color: rgb(135.5, 138, 143);
}

.proj-sidebar-big-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #eaeaea;
}

.proj-sidebar-av {
  width: 2rem;
  height: 2rem;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.proj-sidebar-recent-update {
  font-size: 0.88rem;
}

.proj-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.proj-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 100px;
}

.proj-team-avatar {
  width: 3rem;
  height: 3rem;
  font-size: 1.1rem;
}

.proj-team-name {
  font-weight: 500;
  font-size: 0.88rem;
  text-align: center;
}

.proj-team-role {
  font-size: 0.75rem;
  color: rgb(135.5, 138, 143);
}

.proj-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
}
.proj-link-item:last-child {
  border-bottom: none;
}

.proj-link-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.proj-link-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.proj-link-url {
  font-size: 0.78rem;
  color: rgb(135.5, 138, 143);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proj-link-url:hover {
  text-decoration: underline;
}

.proj-link-ext {
  color: rgb(135.5, 138, 143);
  font-size: 0.8rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.proj-link-ext:hover {
  color: #00adb5;
}

.proj-update-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.proj-update-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.proj-update-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #00adb5;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.proj-update-line {
  width: 2px;
  flex: 1;
  background: rgb(80.6, 84.6, 92.6);
  margin-top: 0.35rem;
}

.proj-update-body {
  flex: 1;
  min-width: 0;
}

.proj-update-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.proj-update-permalink {
  font-size: 0.7rem;
  color: rgb(135.5, 138, 143);
  text-decoration: none;
}
.proj-update-permalink:hover {
  color: #00adb5;
}

.proj-update-author {
  font-size: 0.8rem;
  color: rgb(135.5, 138, 143);
  margin-bottom: 0.5rem;
}

.proj-update-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.proj-update-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.proj-update-links li a {
  font-size: 0.8rem;
  color: #00adb5;
  text-decoration: none;
  border: 1px solid #00adb5;
  border-radius: 0.25rem;
  padding: 0.15em 0.5em;
}
.proj-update-links li a:hover {
  background: #00adb5;
  color: #fff;
}

.proj-reply-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(135.5, 138, 143);
  font-size: 0.75rem;
  padding: 0 0.25rem;
  line-height: 1;
  vertical-align: baseline;
}
.proj-reply-btn:hover {
  color: #00adb5;
}

.proj-edit-update-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(135.5, 138, 143);
  font-size: 0.75rem;
  padding: 0 0.25rem;
  line-height: 1;
  vertical-align: baseline;
}
.proj-edit-update-btn:hover {
  color: #00adb5;
}
.proj-edit-update-btn--late {
  color: rgb(207.95, 89, 90.5);
}
.proj-edit-update-btn--late:hover {
  color: #ef4444;
}

.proj-update-edit {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  background: rgb(47.9, 52.65, 62.15);
}

.proj-comments {
  margin-top: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid rgb(80.6, 84.6, 92.6);
}

.proj-comment {
  padding: 0.4rem 0;
  font-size: 0.85rem;
}
.proj-comment + .proj-comment {
  border-top: 1px solid rgb(80.6, 84.6, 92.6);
}

.proj-comment-author {
  font-weight: 600;
}

.proj-comment-date {
  color: rgb(135.5, 138, 143);
  font-size: 0.8rem;
  margin-left: 0.4rem;
}

.proj-comment-private {
  font-size: 0.75rem;
  color: rgb(149.8, 88.9, 3.5);
  font-style: italic;
  margin-left: 0.4rem;
  background: rgb(58.24, 52.2, 46.36);
  border: 1px solid rgb(98.95, 71.75, 35.55);
  border-radius: 0.2rem;
  padding: 0.05em 0.35em;
}

.proj-comment-body {
  margin: 0.25rem 0 0;
  white-space: pre-wrap;
}

.proj-comment-form {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.proj-comment-textarea {
  width: 100%;
  resize: vertical;
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.25rem;
  font-family: inherit;
  box-sizing: border-box;
}

.proj-comment-form-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.proj-comment-public-label {
  font-size: 0.8rem;
  color: rgb(135.5, 138, 143);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.proj-comment-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin: 0;
}

.btn--sm {
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
}

.proj-edit-layout {
  max-width: 720px;
}

.proj-form-group {
  margin-bottom: 1rem;
}
.proj-form-group:last-child {
  margin-bottom: 0;
}

.proj-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #eaeaea;
}

.proj-form-hint {
  font-weight: 400;
  color: rgb(135.5, 138, 143);
  font-size: 0.8rem;
}

.proj-form-input {
  display: block;
  width: 100%;
  padding: 0.45rem 0.7rem;
  background: rgb(58.8, 63.3, 72.3);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  color: #eaeaea;
  font-size: 0.9rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.proj-form-input:focus {
  outline: none;
  border-color: #00adb5;
}
.proj-form-input::placeholder {
  color: rgb(135.5, 138, 143);
}
.proj-form-input--narrow {
  width: auto;
}

textarea.proj-form-input {
  resize: vertical;
}

.proj-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23gb(135.5, 138, 143)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}

.proj-form-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.proj-admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
}
.proj-admin-list-item:last-child {
  border-bottom: none;
}

.proj-admin-list-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.proj-admin-list-item__primary {
  font-weight: 500;
  font-size: 0.9rem;
}

.proj-admin-list-item__secondary {
  font-size: 0.78rem;
  color: rgb(135.5, 138, 143);
}

.proj-card--danger {
  border-color: rgb(143.96, 77.96, 82.76);
}
.proj-card--danger .proj-card__header {
  color: rgb(197.6, 96, 98);
  border-bottom-color: rgb(143.96, 77.96, 82.76);
}

.proj-alert {
  padding: 0.65rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.proj-alert--error {
  background: rgb(67.3, 45.9, 54.4);
  border: 1px solid rgb(143.96, 77.96, 82.76);
  color: rgb(248.4, 178.8, 178.8);
}

.proj-update-link-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proj-update-link-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.proj-update-link-row input {
  flex: 1;
  min-width: 140px;
}

.proj-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.proj-checkbox-label input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.mindmap-wrap {
  overflow-x: auto;
  padding: 1rem 0;
  min-height: 400px;
}

#mindmap-network {
  width: 100%;
  height: 70vh;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 4px;
  background: rgb(29.6, 33.6, 41.6);
}

.mindmap-legend {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-bottom: 1em;
  font-size: 0.9em;
}

.mindmap-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.mindmap-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mindmap-dot--infrastructure {
  background: #0891b2;
}

.mindmap-dot--software {
  background: #7c3aed;
}

.mindmap-dot--science {
  background: #059669;
}

.mindmap-dot--other {
  background: #d97706;
}

.mindmap-controls {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75em;
  font-size: 0.85em;
}

.mindmap-ctrl-label {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: rgb(174.9, 176.4, 179.4);
}
.mindmap-ctrl-label input[type=range] {
  width: 90px;
  accent-color: #00adb5;
}
.mindmap-ctrl-label select {
  background: rgb(31.45, 35.7, 44.2);
  color: #eaeaea;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 4px;
  padding: 2px 4px;
}

.mindmap-ctrl-val {
  min-width: 3em;
  color: rgb(174.9, 176.4, 179.4);
  font-size: 0.9em;
}

#mindmap-edge-color {
  width: 32px;
  height: 22px;
  padding: 0;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 3px;
  cursor: pointer;
  display: none;
}

#mindmap-loading {
  text-align: center;
  padding: 2em;
  color: rgb(174.9, 176.4, 179.4);
}

#mindmap-network .vis-navigation .vis-button {
  background-color: rgba(234, 234, 234, 0.12);
  border: 1px solid rgba(234, 234, 234, 0.25);
  border-radius: 4px;
  filter: invert(1) brightness(1.8);
  opacity: 0.75;
  transition: opacity 0.15s, background-color 0.15s;
}
#mindmap-network .vis-navigation .vis-button:hover {
  background-color: rgba(234, 234, 234, 0.28);
  opacity: 1;
}

.proj-img-paste-zone {
  border: 2px dashed rgb(80.6, 84.6, 92.6);
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgb(135.5, 138, 143);
  font-size: 0.88rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: border-color 0.15s, background 0.15s;
}
.proj-img-paste-zone:hover {
  border-color: #00adb5;
  background: rgba(0, 173, 181, 0.05);
}

.proj-img-paste-hint {
  pointer-events: none;
}

.proj-img-thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.proj-img-thumb {
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid rgb(80.6, 84.6, 92.6);
}
.proj-img-thumb--error {
  border-color: #ef4444;
  opacity: 0.7;
}
.proj-img-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-img-thumb__remove {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.proj-img-thumb__remove:hover {
  background: rgba(0, 0, 0, 0.8);
}

.proj-img-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.25);
}
.proj-img-progress__bar {
  height: 100%;
  width: 0;
  background: #00adb5;
  transition: width 0.1s linear;
}

.proj-img-error {
  color: rgb(237.5, 117.8, 117.8);
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

.proj-update-images {
  margin-bottom: 0.75rem;
}

.proj-update-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  max-height: 320px;
}

.proj-update-slide {
  display: none;
}
.proj-update-slide.is-active {
  display: block;
}
.proj-update-slide img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.proj-slide-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.proj-slide-btn {
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
  cursor: pointer;
  color: #eaeaea;
  transition: background 0.15s;
}
.proj-slide-btn:hover {
  background: rgb(80.6, 84.6, 92.6);
}

.proj-slide-counter {
  color: rgb(135.5, 138, 143);
  min-width: 3rem;
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.proj-updates-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  color: rgb(135.5, 138, 143);
  font-size: 0.9rem;
}

.proj-updates-list.is-loading {
  min-height: 12rem;
  opacity: 0.4;
  pointer-events: none;
}

.proj-updates-pagination {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.proj-page-indicator {
  font-size: 0.85rem;
  color: rgb(135.5, 138, 143);
  min-width: 4rem;
  text-align: center;
}

.proj-help-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.35em;
  border: 1px solid rgb(135.5, 138, 143);
  border-radius: 50%;
  color: rgb(135.5, 138, 143);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  position: relative;
  vertical-align: middle;
}
.proj-help-tip:hover, .proj-help-tip:focus-visible {
  outline: none;
  border-color: #00adb5;
  color: #00adb5;
}
.proj-help-tip::after {
  content: attr(data-tip);
  position: fixed;
  left: var(--tip-left, 50%);
  top: var(--tip-top, auto);
  bottom: var(--tip-bottom, auto);
  transform: translateX(-50%);
  width: max-content;
  max-width: 260px;
  padding: 0.5em 0.7em;
  background: rgb(52.26, 56.91, 66.21);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.375rem;
  color: #eaeaea;
  font-size: 0.78rem;
  font-weight: 400;
  text-align: left;
  white-space: normal;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease;
  pointer-events: none;
}
.proj-help-tip:hover::after, .proj-help-tip:focus-visible::after, .proj-help-tip.is-open::after {
  opacity: 1;
  visibility: visible;
}

.proj-table-wrap th.th-tip {
  position: relative;
  padding-right: 1.5rem;
}
.proj-table-wrap th.th-tip .proj-help-tip {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  margin-top: -0.55em;
  margin-left: 0;
}

.driver-popover.driver-popover {
  background: rgb(52.26, 56.91, 66.21);
  color: #eaeaea;
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 0.5rem;
}
.driver-popover.driver-popover .driver-popover-title {
  color: #eaeaea;
}
.driver-popover.driver-popover .driver-popover-description {
  color: rgb(194.6, 195.6, 197.6);
}
.driver-popover.driver-popover .driver-popover-arrow-side-top {
  border-top-color: rgb(52.26, 56.91, 66.21);
}
.driver-popover.driver-popover .driver-popover-arrow-side-bottom {
  border-bottom-color: rgb(52.26, 56.91, 66.21);
}
.driver-popover.driver-popover .driver-popover-arrow-side-left {
  border-left-color: rgb(52.26, 56.91, 66.21);
}
.driver-popover.driver-popover .driver-popover-arrow-side-right {
  border-right-color: rgb(52.26, 56.91, 66.21);
}
.driver-popover.driver-popover .driver-popover-progress-text {
  color: rgb(135.5, 138, 143);
}
.driver-popover.driver-popover .driver-popover-navigation-btns button {
  background: #00adb5;
  color: #fff;
  border: none;
  text-shadow: none;
  border-radius: 0.3rem;
}
.driver-popover.driver-popover .driver-popover-navigation-btns button:hover {
  background: rgb(0, 147.05, 153.85);
}
.driver-popover.driver-popover .driver-popover-close-btn {
  color: rgb(135.5, 138, 143);
}
.driver-popover.driver-popover .driver-popover-close-btn:hover {
  color: #eaeaea;
}

.view-as-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75em;
  padding: 0 1em;
  line-height: 1.8;
  font-size: 0.72rem;
  background: #252a34;
  border-bottom: 1px solid rgb(80.6, 84.6, 92.6);
}
.view-as-bar--active {
  justify-content: space-between;
  background: rgb(82, 61.25, 40.5);
  color: #fff;
}

.view-as-bar__label {
  font-weight: 500;
}

.view-as-bar__form {
  margin: 0;
  padding: 0;
  background: transparent;
}

.view-as-bar__button {
  background: none;
  border: 1px solid currentColor;
  border-radius: 0.25rem;
  padding: 0 0.5em;
  line-height: 1.5;
  font-size: 0.72rem;
  color: inherit;
  cursor: pointer;
}
.view-as-bar__button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.captcha-container {
  margin: 1em 0;
  padding: 1em;
  background: rgb(31.45, 35.7, 44.2);
  border: 1px solid rgb(80.6, 84.6, 92.6);
  border-radius: 4px;
}

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