* {
  box-sizing: border-box;
  font-family: "Sinkin Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
}
body {
  margin: 0;
  box-sizing: border-box;
  --color-light-blue-100: #e0f2fe;
  --color-light-blue-200: #bae6fd;
  --color-light-blue-600: #0284c7;
  --color-light-blue-900: #0c4a6e;
  --color-cool-grey-100: #f3f4f6;

  --color-cool-grey-400: #9ca3af;
  --color-cool-grey-900: #111827;
  --sb-track-color: white;
  --sb-thumb-color: #7dd3fc;
  --sb-size: 10px;
}

.app {
  width: 100%;
  height: 100vh;
  display: flex;
}

aside {
  min-width: 400px;
  flex: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--color-light-blue-100);
}

.action {
  background-color: var(--color-light-blue-100);
}

.action:has(.logonForm) {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20vh;
}

div#NextButton {
  width: 100%;
  display: flex;
}

.a_options {
  width: 100%;
  overflow-y: scroll;
  padding: 20px 10px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  scrollbar-width: 0px;
}

footer {
  width: 100%;
  padding: 5px 10px;
  background-color: white;
  border-top: 3px solid black;
  font-size: 10px;
}

main {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.1);
}

.sa {
  /* this makes it take up rest of available vertical space */
  flex: 1;
  overflow-y: scroll;
  scrollbar-width: 0px;
  border-top: 10px solid white;
}

.saDivider {
  height: 21px;
  border-left: 15px solid white;
  border-right: 15px solid white;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
  background-color: var(--color-light-blue-200);
}

.details {
  height: 30%;
  /* overflow-y: scroll; */
  overflow-y: scroll;
  padding: 0px 5px 0px 15px;
}


