.sidebarContainer {
  width: 200px;
}
.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.sidebar > li {
  margin-right: 16px;
}
.sidebar > li > h4 {
  margin: 8px;
  text-align: end;
}
.contentContainer {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}
.content {
  flex: 1;
  max-width: 600px;
  overflow-y: auto;
}
.titleContainer {
  display: flex;
  justify-content: center;
}
.titleContainer > div {
  width: max-content;
}
.titleContainer > div > h1 {
  margin-bottom: 0px;
}
.titleContainer > div > h4 {
  margin: 0px 8px;
}
.reactDialogFullPageWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reactCard {
  background-color: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  color: #343a40;
  padding: 4px;
  margin: 4px;
  box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
  .reactCard {
    background-color: #212529;
    border: 1px solid #495057;
    color: #e9ecef;
  }
}
.reactStatusTokenComplete {
  fill: #228822;
}
.reactStatusTokenIncompleteBackground {
  fill: #adb5bd;
}
.reactStatusTokenIncompleteForeground {
  fill: #4290fe;
}
