html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  /*background: linear-gradient(-63deg, rgba(35, 60, 90, 0.7) 0%, rgb(216, 216, 216) 100%);*/
  background: #e9ecef;
}

body {
  overflow: hidden;
}

#layout-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#nav-main {
  z-index: 1030;
  background: #f8f9fa !important;
  color: #000;
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 8px 0;
  box-sizing: border-box;
}

#nav-main>#session-logo-container {
  width: 150px;
  height: 30px;
  border-radius: 5px;
  margin: 0;
  align-content: center;
  box-sizing: border-box;
  margin-left: .5rem;
}

#session-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#nav-main #nav-main-options {
  max-height: 100%;
  border-radius: 5px;
  margin: 0;
  display: flex;
  align-content: center;
  gap: 0.25rem;
  border: none;
}

#nav-main #nav-main-options .btn {
  border: none !important;
  outline: none !important;
}

#nav-main #nav-main-options .btn:active {
  border: none !important;
  outline: none !important;
}

#nav-secondary {
  /*position: fixed;*/
  /*top: 56px;*/
  left: 0;
  z-index: 1020;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#nav-secondary #titles {
  width: 100%;
  z-index: 20;
  /*background: linear-gradient(rgb(229, 229, 229) 0%, white);*/
  /* background-color: #f8f9fa !important; */
  background-color: transparent !important;
  color: #3f3f3f;
  /* box-shadow: 1px 1px 2px var(--bs-gray); */
  text-align: left !important;
  font-weight: bold;
  font-size: 20px;
  padding: 0.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.5rem;
  /*margin-bottom: 5px;*/
}

#content-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /*padding: 0.5rem;*/
  padding: 0 !important;
}

#content-inner {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  width: 100%;
  padding:0 0.5rem;
}