﻿@charset "UTF-8";
.rooster-navbar {
  padding: 0;
  margin: 0;
  height: 50px;
  margin-bottom: 20px;
  background: #c0c7ff;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-content: center;
  gap: 20px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.rooster-navbar .logo {
  padding: 0;
  margin: 4px 0 0 4px;
  align-self: start;
  background-color: transparent;
  border-radius: 30px;
  height: 55px;
  width: 55px;
  background-size: 57px;
  background-image: url("/assets/images/logo.svg");
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 2px 2px 4px 0px rgba(100, 100, 100, 0.75);
}
.rooster-navbar .rooster-navbar-content {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.rooster-navbar .rooster-navbar-content .rooster-navbar-title {
  font-variant-caps: all-small-caps;
  font-size: 1.2rem;
}
.rooster-navbar .rooster-navbar-content .rooster-navbar-links-container {
  width: 150px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.rooster-navbar .rooster-navbar-content .rooster-navbar-links-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  clip-path: polygon(0 100%, 25px 0, 100% 0, 100% 100%);
  z-index: 1;
}
.rooster-navbar .rooster-navbar-content .rooster-navbar-links-container .rooster-navbar-links {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  margin-left: 20px;
  z-index: 2; /* To ensure content stays above the border */
  padding-left: 10px;
  height: 100%;
}
.rooster-navbar .rooster-navbar-content .rooster-navbar-links-container .rooster-navbar-links .rooster-navbar-link .nav-link {
  font-size: 1.1rem;
}

.prefs-day {
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .prefs-day,
  .prefs-user-notice {
    width: 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .prefs-day,
  .prefs-user-notice {
    width: 1100px;
  }
}

.prefs-day-date {
  position: absolute;
  z-index: 10;
  left: -10px;
  top: -10px;
  box-shadow: 8px 5px 7px rgba(49, 50, 51, 0.65);
  width: 90px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px 0;
  align-items: center;
  background-color: white;
  border: 1px solid #999;
}
.prefs-day-date div {
  text-align: center;
  line-height: 1;
}

.prefs-containers {
  position: relative;
  border: 1px solid #999;
  height: 115px;
  overflow: hidden;
  background-color: #f0f0f0;
  transition: height 0.5s ease-in-out;
}

.prefs-day-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  width: 100%;
  padding: 10px 30px;
  padding-left: 100px;
}
@media only screen and (min-width: 768px) {
  .prefs-day-container {
    flex-direction: row;
  }
}
.prefs-day-container .prefs-day-summary {
  margin-top: 10px;
  font-size: 0.9rem;
}
@media only screen and (min-width: 768px) {
  .prefs-day-container .prefs-day-summary {
    font-size: 1.1rem;
    transform: translateY(-5px);
    align-self: center;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .prefs-day-container .prefs-day-summary {
    font-size: 1.4rem;
  }
}

.prefs-dayparts-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 330px;
  width: 100%;
  padding: 10px 30px;
  position: absolute;
  top: -330px;
  transition: top 0.5s ease-in-out;
  background: #ffe19e;
}
.prefs-dayparts-container .prefs-dayparts-summary {
  padding-top: 20px;
  padding-left: 70px;
  min-height: 80px;
}
.prefs-dayparts-container .prefs-day-parts-wrapper {
  display: flex;
  flex-direction: row;
  flex-shrink: 1;
  gap: 0px;
  border: 1px dotted #000;
  background-color: white;
  overflow-x: auto;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content {
  white-space: nowrap;
  border: 1px solid #000;
  padding: 10px;
  max-width: 215px;
  min-width: 200px;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-name,
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-name {
  font-size: 1.1rem;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-time {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-time .day-parts-content-time-separator {
  font-size: 1.5rem;
  font-weight: normal;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-content .day-parts-content-description {
  margin-top: 4px;
  color: #999;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-prefs-duty {
  padding: 10px 0 0 0;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-prefs-container {
  min-width: 80px;
  display: flex;
  flex-direction: row;
  gap: 0px;
}
.prefs-dayparts-container .prefs-day-parts-wrapper .day-parts-prefs-container .prefs-radio {
  transform: scale(0.75);
}

.prefs-mode-toggle {
  margin: 2px;
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  height: 30px;
}
.prefs-mode-toggle .prefs-mode-toggle-btn {
  border-radius: 5px;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: white;
  border: 1px solid #0d6efd;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out, border 0.25s ease-in-out;
}
.prefs-mode-toggle .prefs-mode-toggle-btn::before {
  display: flex;
  width: 100%;
  height: 100%;
  color: #0d6efd;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: transform 0.25s ease-in-out;
}
.prefs-mode-toggle .prefs-mode-toggle-btn.btn-toggle-detail {
  width: 40px;
}
.prefs-mode-toggle .prefs-mode-toggle-btn.btn-toggle-detail::before {
  font-size: 1rem;
  content: "❮";
  transform: rotateZ(-90deg);
  margin-left: -2px;
}
.prefs-mode-toggle .prefs-mode-toggle-btn.btn-reset-parts {
  background-color: #dc3545;
  border: 1px solid #dc3545;
  padding: 10px;
  font-size: 0.9rem;
  line-height: 0.8;
  color: white;
}

.prefs-day.open .prefs-containers {
  height: 330px;
}
.prefs-day.open .prefs-dayparts-container {
  top: 0px;
}
.prefs-day.open .prefs-mode-toggle .prefs-mode-toggle-btn {
  background-color: #dc3545;
  border: 1px solid #dc3545;
}
.prefs-day.open .prefs-mode-toggle .prefs-mode-toggle-btn.btn-toggle-detail::before {
  content: "❮";
  transform: rotateZ(90deg);
  margin-left: -3px;
}
.prefs-day.open .prefs-mode-toggle .prefs-mode-toggle-btn::before {
  align-items: normal;
  font-weight: normal;
  color: white;
}

.prefs-panel {
  min-width: 80px;
  display: flex;
  padding-top: 10px;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .prefs-panel {
    gap: 30px;
    padding-top: 25px;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .prefs-panel {
    gap: 40px;
    margin-left: 60px;
  }
}
.prefs-panel.small {
  gap: 0px;
}
.prefs-panel.small .prefs-radio {
  transform: scale(0.75);
}

.prefs-radio {
  position: relative;
  cursor: pointer;
}
.prefs-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.prefs-radio .icon {
  width: 45px;
  height: 45px;
  color: #626262;
  border: 3px solid #626262;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s, border-color 0.3s;
}
.prefs-radio .icon:hover {
  color: #000;
  border: 3px solid #000;
}
.prefs-radio .icon::before {
  padding-bottom: 7px;
}
.prefs-radio .icon.star::before {
  content: "★"; /* Unicode for a star */
  font-size: 40px;
}
.prefs-radio .icon.checkmark::before {
  content: "✔"; /* Unicode for a checkmark */
  font-size: 30px;
}
.prefs-radio .icon.cross::before {
  content: "✖"; /* Unicode for a cross */
  font-size: 30px;
}
.prefs-radio input[type=radio]:checked + .icon {
  /*background-color: #007bff;
  color: white;
  border-color: #007bff;*/
  box-shadow: 2px 2px 10px rgba(49, 50, 51, 0.65);
  transform: scale(1.1);
  color: white;
  border: none;
}
.prefs-radio input[type=radio]:checked + .icon.star {
  background-color: #ffea00;
  color: #725e00;
}
.prefs-radio input[type=radio]:checked + .icon.checkmark {
  background-color: #35b343;
}
.prefs-radio input[type=radio]:checked + .icon.cross {
  background-color: #d50c0c;
}

.rostertool-container {
  position: relative;
}
.rostertool-container .member-item.member-selected {
  background-color: #ffedae;
}
.rostertool-container .member-item .e-card {
  height: 100%;
  background: transparent;
}
.rostertool-container .member-item .e-card .e-card-content {
  padding: 0;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.rostertool-container .member-item .member-item-content {
  position: relative;
  height: 100%;
}
.rostertool-container .member-item .member-item-content .member-item-props {
  position: absolute;
  height: 16px;
  padding: 2px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.rostertool-container .member-item .member-item-content .member-item-name {
  height: 100%;
  padding: 8px 5px 5px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rostertool-container .member-item .member-item-content .member-item-name span {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.rostertool-statistics {
  position: sticky;
  top: 0;
  height: 100px;
  z-index: 10;
  display: block;
  overflow-y: hidden;
}
.rostertool-statistics .rostertool-statistics-panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-flow: column wrap;
  padding: 10px;
  transition: transform ease-out 250ms;
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-general {
  background-color: #fff;
  transform: translateY(-100%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-general.show-dutydetails {
  transform: translateY(0%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-general.show-memberdetails {
  transform: translateY(-200%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-general.show-memberwithdutydetails {
  transform: translateY(-200%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-memberdetails.show-memberdetails {
  transform: translateY(-200%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-dutydetails {
  transform: translateY(-100%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-dutydetails.show-dutydetails {
  transform: translateY(0%);
}
.rostertool-statistics .rostertool-statistics-panel.rostertool-statistics-memberwithdutydetails.show-memberwithdutydetails {
  transform: translateY(-300%);
}
.rostertool-statistics .stats-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 25%;
}
.rostertool-statistics .stats-item .stats-header {
  width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  padding-right: 15px;
}
.rostertool-statistics .stats-item .stats-value {
  white-space: nowrap;
  width: 50%;
  text-overflow: ellipsis;
  font-weight: bold;
}
.rostertool-statistics .stats-toolbuttons {
  height: 100%;
  align-items: center;
  display: flex;
  align-self: flex-end;
  flex-direction: row;
  flex-shrink: 1;
  gap: 10px;
}
.rostertool-statistics .stats-toolbuttons button {
  height: 60px;
}

.rostertool-twocol {
  display: flex;
  flex-direction: row;
  align-items: start;
}

.rostertool-users {
  width: 300px;
  height: 75vh;
  position: sticky;
  top: 100px;
  z-index: 10;
}
.rostertool-users .card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rostertool-users .rostertool-users-toolbar {
  height: 55px;
}
.rostertool-users .rostertool-users-list {
  position: absolute;
  top: 185px;
  left: 0;
  right: 0;
  bottom: 5px;
  overflow-y: scroll;
  border-top: 1px solid #ccc;
}
.rostertool-users .member-item {
  height: 60px;
  opacity: 1;
  transition: opacity ease-in-out 0.25s, transform ease-in-out 0.25s;
}
.rostertool-users .member-item.member-hidden-by-incompetence, .rostertool-users .member-item.member-hidden-by-unavailability {
  transform: scale(0);
  height: 0;
  opacity: 0;
  transition: opacity ease-in-out 0.25s, transform ease-in-out 0.25s, height linear 0.25s;
}
.rostertool-users .member-item.member-marked-as-unavailable .e-card, .rostertool-users .member-item.member-marked-as-incompetent .e-card {
  background-color: rgba(255, 0, 0, 0.1803921569) !important;
  background-size: 16px !important;
  background-position: 5px 50% !important;
  background-repeat: no-repeat !important;
}
.rostertool-users .member-item.member-marked-as-incompetent .e-card {
  background-image: url("/assets/images/license-red.svg") !important;
}
.rostertool-users .member-item.member-marked-as-unavailable .e-card {
  background-image: url("/assets/images/unavailable-date-red.svg") !important;
}
.rostertool-users .member-item .member-item-name {
  padding: 5px 5px 5px 25px !important;
}

.rostertool-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  table-layout: fixed;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.0745098039);
}
.rostertool-table tr.daystart {
  border-top: 2px solid #ccc;
}
.rostertool-table tr {
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
.rostertool-table th {
  padding: 5px 2px;
}
.rostertool-table th, .rostertool-table td {
  border: 1px solid #ccc;
  text-align: center;
}
.rostertool-table th.col-day,
.rostertool-table td.col-day {
  font-weight: bold;
  overflow: initial;
  text-overflow: initial;
  white-space: initial;
  width: 80px;
}
.rostertool-table th.col-daypart,
.rostertool-table td.col-daypart {
  font-weight: bold;
  overflow: initial;
  text-overflow: initial;
  white-space: initial;
  width: 100px;
  border-right: 2px solid #ccc;
}
.rostertool-table th {
  position: sticky;
  z-index: 10;
  top: 100px;
  border-bottom: 2px solid #ccc;
  box-shadow: 0 2px 2px -1px black;
  background-color: #efefef;
}
.rostertool-table td.duty-cell {
  height: 80px;
}
.rostertool-table td.duty-cell .member-item {
  height: 100%;
}
.rostertool-table td.duty-cell.no-plannedduty {
  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, #f0f0f0 5px, #f0f0f0 10px);
}
.rostertool-table td.duty-cell .dropzone-container {
  height: 100%;
}
.rostertool-table td.duty-cell .dropzone-container .mud-drop-zone {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background 0ms;
}
.rostertool-table td.duty-cell .dropzone-container .can-drop {
  background: rgba(10, 255, 0, 0.13) !important;
}
.rostertool-table td.duty-cell .dropzone-container .cannot-drop {
  background: rgba(255, 0, 0, 0.1803921569) !important;
}
.rostertool-table td.duty-cell .dropzone-container.plannedduty-selected {
  transition: none;
  border: 2px dashed #888;
  background-color: #ffedae;
}
.rostertool-table td.duty-cell .dropzone-container:hover:not(.plannedduty-selected) {
  border: 2px solid #ccc;
}
.rostertool-table td.duty-cell .dropzone-container:hover:not(.plannedduty-selected) .member-item-props, .rostertool-table td.duty-cell .dropzone-container:hover:not(.plannedduty-selected) .planned-duty-dropzone-header {
  padding: 0px;
}
.rostertool-table td.duty-cell .planned-duty-dropzone {
  height: 100%;
  box-shadow: inset 4px 4px 4px 0px rgba(0, 0, 0, 0.0745098039);
  border-right: 1px solid #eee;
  border-bottom: 1px solid #ccc;
}
.rostertool-table td.duty-cell .planned-duty-dropzone.highlight {
  box-shadow: inset 4px 4px 4px 0px rgba(0, 128, 0, 0.1215686275);
  background: rgba(10, 255, 0, 0.1294117647);
}
.rostertool-table td.duty-cell .planned-duty-dropzone .planned-duty-dropzone-header {
  display: flex;
  padding: 2px;
  flex-direction: row-reverse;
}
.rostertool-table td.duty-cell .planned-duty-dropzone .planned-duty-dropzone-header:has(+ *) {
  display: none; /* Hide if the <p> has a sibling */
}
.rostertool-table td.duty-cell .planned-duty-dropzone .mud-drop-item {
  height: 100%;
}

.can-drop-preview {
  background: rgba(10, 255, 0, 0.13) !important;
}

.cannot-drop-preview {
  background: rgba(255, 0, 0, 0.1803921569) !important;
}

.rostertool-users .member-with-preference-for-selected-duty .e-card,
.rostertool-users .member-with-preference-for-selected-daypart .e-card,
.rostertool-users .member-with-preference-for-selected-daypart-and-duty .e-card {
  background-size: auto 16px !important;
  background-position: 99% 50% !important;
  background-repeat: no-repeat !important;
  background-image: url("/assets/images/star-gold.svg") !important;
}
.rostertool-users .member-with-preference-for-selected-daypart-and-duty .e-card {
  background-image: url("/assets/images/star-double.svg") !important;
}

.is-daypart-and-plannedduty-being-preferred-by-selectedmember,
.is-daypart-being-preferred-by-selectedmember,
.is-plannedduty-being-preferred-by-selectedmember,
.is-plannedduty-with-incompetence-by-selectedmember,
.is-plannedduty-being-unavailable-by-selectedmember {
  background-size: auto 30px !important;
  background-position: 5px 5px !important;
  background-repeat: no-repeat !important;
}

.is-plannedduty-being-unavailable-by-selectedmember {
  cursor: no-drop;
  background-color: rgba(255, 0, 0, 0.1803921569) !important;
  background-image: url("/assets/images/unavailable-date-red.svg") !important;
}

.is-plannedduty-with-incompetence-by-selectedmember {
  cursor: no-drop;
  background-color: rgba(255, 0, 0, 0.1803921569) !important;
  background-image: url("/assets/images/license-red.svg") !important;
}

.is-daypart-and-plannedduty-being-preferred-by-selectedmember,
.is-daypart-being-preferred-by-selectedmember,
.is-plannedduty-being-preferred-by-selectedmember {
  background-color: rgba(10, 255, 0, 0.13) !important;
}
.is-daypart-and-plannedduty-being-preferred-by-selectedmember .member-item:not(.member-selected) .member-item-name,
.is-daypart-being-preferred-by-selectedmember .member-item:not(.member-selected) .member-item-name,
.is-plannedduty-being-preferred-by-selectedmember .member-item:not(.member-selected) .member-item-name {
  opacity: 0.25;
  font-style: italic;
}

.is-daypart-and-plannedduty-being-preferred-by-selectedmember {
  background-image: url("/assets/images/star-double.svg") !important;
}

.is-daypart-being-preferred-by-selectedmember,
.is-plannedduty-being-preferred-by-selectedmember {
  background-image: url("/assets/images/star-gold.svg") !important;
}

.tooltip-help {
  cursor: help;
}

@font-face {
  font-family: "ezacroster";
  src: url("../../assets/fonts/ezacroster.eot?hpp168");
  src: url("../../assets/fonts/ezacroster.eot?hpp168#iefix") format("embedded-opentype"), url("../../assets/fonts/ezacroster.ttf?hpp168") format("truetype"), url("../../assets/fonts/ezacroster.woff?hpp168") format("woff"), url("../../assets/fonts/ezacroster.svg?hpp168#ezacroster") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon-badge {
  line-height: 1.4;
  display: inline-block;
  width: auto;
  padding: 0 3px 0 1.75px;
  height: 16px;
  font-size: 12px;
}

.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ezacroster" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-gray {
  color: #aaaaaa;
}

.icon-gold {
  color: #ffcc14;
}

.icon-darkgold {
  color: #cfa301;
}

.icon-license:before {
  content: "\e900";
}

.icon-weight:before {
  content: "\e901";
}

.icon-lier:before {
  content: "\e902";
}

.icon-startleider:before {
  content: "\e903";
}

.icon-bar:before {
  content: "\e904";
}

.icon-star:before {
  content: "\e905";
}

.icon-star-filled:before {
  content: "\e906";
}

.icon-sort-up:before {
  content: "\e907";
}

.icon-sort-down:before {
  content: "\e908";
}

.icon-filter:before {
  content: "\e909";
}

.icon-home:before {
  content: "\e90a";
}

.icon-exclude:before {
  content: "\e90b";
}

.breadcrumbs-bar {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.breadcrumbs-bar .nav-link {
  display: inline;
  padding: 0;
}
.breadcrumbs-bar .nav-link .icon {
  color: #999;
  padding-right: 5px;
}

.member-statistics-grid .bar-container {
  display: flex;
  flex-direction: row;
  overflow: visible;
  position: relative;
  height: 30px;
}
.member-statistics-grid .bar-edge {
  position: relative;
  display: flex;
  margin: 5px 0;
  overflow: hidden;
  border: 1px solid #999;
  width: 100%;
  background-color: white;
}
.member-statistics-grid .bar-edge .bar-fill {
  align-self: stretch;
  background-color: #3853ce;
}
.member-statistics-grid .bar-edge span.bar-label {
  z-index: 2;
  display: block;
  position: absolute;
  overflow: hidden;
  text-overflow: clip;
  line-height: 1.08rem;
  padding: 0 10px;
  height: 100%;
  width: 50%;
}
.member-statistics-grid span.bar-mark {
  border-right: 1px solid black;
  display: block;
  position: absolute;
  height: 30px;
}

.load-color-danger {
  color: rgb(255, 13, 13);
}

.load-color-bad {
  color: rgb(255, 78, 17);
}

.load-color-good {
  color: rgb(255, 142, 21);
}

.load-color-better {
  color: rgb(250, 183, 51);
}

.load-color-perfect {
  color: rgb(25, 135, 84);
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
