.container {
  width: 100%;
  max-width: 100%;
}
.nav-item {
  margin-bottom: 5px;
}

.tab-wrapper {
  display: flex;
  width: 100%;
  padding: 0 20px;
}

#nav-tab {
  flex: 1;
}

#nav-tabContent {
  flex: 3;
  position: sticky;
  top: 0;
  overflow-y: auto;
  height: 100vh;
}

.nav-link.answered,
.nav-link.answered.active {
  background-color: green;
  color: #fff;
  border: 2px solid #000;
}


.nav-link.pending,
.nav-link.pending.active {
  background-color: yellow;
  color: #000;
  border: 2px solid #000;
}

.nav-link.reset,
.nav-link.reset.active {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.nav-link small {
  font-size: 70%;
}
