body {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 240px;
}

.sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0.25rem;
  margin: 0 0.5rem 0.25rem;
}

.sidebar .nav-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
  color: #fff;
  background-color: #0d6efd;
}

.sidebar h4 {
  color: #fff;
}

.main-content {
  margin-left: 240px;
  padding: 20px;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.main-content {
  flex: 1;
}

.footer {
  font-size: 0.7rem;
  border-top: 1px solid #dee2e6;
  background-color: #212529;
  text-align: center;
  color: #dee2e69c;
}

.choices__inner {
  min-height: auto;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
  padding-left: 0.75rem;
  padding-right: 0.75rem;

  height: calc(1.5em + 0.75rem + 2px);
  display: flex;
  align-items: center;
}

.choices__list--single .choices__item {
  padding: 0;
}

.choices.is-disabled .choices__inner {
  background-color: #e9ecef;
  opacity: 1;
}

.choices.is-disabled .choices__button {
  display: none;
}

.json-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  background-color: #f8f9fa;
  padding: 5px;
  border-radius: 4px;
  max-height: 100px;
  overflow-y: auto;
  white-space: pre-wrap;
}
