@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");
html, body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  background-color: #32333d;
  color: white;
}

app {
  position: relative;
  display: flex;
  flex-direction: column;
}

#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;
}

/* to be used on the parent class of the loader component */
.loaderwrapper {
  position: relative;
}

/* color of the rotating spinner */
.e-spinner-pane .e-spinner-inner .e-spin-bootstrap5 {
  stroke: #ea7f13;
}

/* color of the text of the rotating spinner */
.e-spinner-pane .e-spinner-inner .e-spin-label {
  color: #ea7f13;
}

/* z-index of the loader */
.e-spinner-pane .e-spinner-inner {
  z-index: 99999 !important;
}

/* settings for the panel of the loader */
.e-spinner-pane.e-spin-show {
  cursor: wait;
  background-color: rgba(0, 0, 0, 0.5);
}

.validation-message {
  color: #e4606d;
  font-size: 13px;
}

.validation-message::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: '\f071';
  padding-right: 5px;
  color: #ea7f13;
}

.open-detail-url {
  color: rgba(234, 127, 19, 0.8);
  text-decoration: none;
  text-decoration-style: dotted;
  font-size: 12px;
}

.open-detail-url::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: '\f08e';
  padding-right: 5px;
}

.open-detail-url:hover {
  color: #ea7f13;
}

.grid-hyperlink {
  color: white !important;
  text-decoration-line: none;
}

.grid-hyperlink:hover {
  color: #ea7f13 !important;
  text-decoration-line: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(234, 127, 19, 0.4);
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.no-expand-rowfields {
  height: inherit;
}

/* Hide expand/collapse arrows for row fields */
.no-expand-rowfields .dx-pivotgrid .dx-pivotgrid-vertical-headers .dx-expand-icon-container {
  display: none;
}

.e-removeDeletecommand .e-unboundcell .e-unboundcelldiv button.e-Deletebutton {
  display: none;
}

.e-diagram {
  background-color: #2a2a2a !important;
}
