body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

main {
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.dropdown-toggle { outline: 0; }

.btn-toggle {
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  background-color: transparent;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  
/* ARNE MAde another change here! From e8e8e8 to Light Steel Blue */
/* background-color: #E8E8E8; */ /* WAS WEIRD GREEN COLOR: d2f4ea, now E8E8E8*/
background-color: #B0C4DE;
/* There's a couple more styles relevant to the list hover buttons in the about page, but they are in styles.css. */

    outline: none; /* I added this to get rid of that light-blue outline you see when you click a BS button */
    box-shadow: none; /* I added this to get rid of that light-blue outline you see when you click a BS button */  
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea; /* WAS WEIRD GREEN COLOR: d2f4ea */
}

.scrollarea {
  overflow-y: auto;
}


	#wrapper {
	  overflow-x: hidden;
	}

	#sidebar-wrapper {
	  min-height: 40vh;
	  margin-left: -15rem;
	  transition: margin 0.25s ease-out;
	}

	/* This is just above the sidebar menu options.  There was heading text here, but now it's just a space. */
	#sidebar-wrapper .sidebar-heading {
	  padding: 0.875rem 1.25rem;
	  font-size: 1.1rem;
	}

	#sidebar-wrapper .list-group {
	  width: 14rem; /* overall sidebar width, was: 15rem */
	}

	#page-content-wrapper {
	  min-width: 100vw;
	}

	body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
	  margin-left: 0;
	}

	@media (min-width: 768px) {
	  #sidebar-wrapper {
		margin-left: 0;
	  }
	  #page-content-wrapper {
		min-width: 0;
		width: 100%;
	  }
	  body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
		margin-left: -15rem;
	  }
	}


/* for the "Menu" #sidebarToggle button (small on everything, larger below for medium screens on up. */
@media (min-width: 576px) { /* Bootstrap's breakpoint for small devices and up */
    .btn-md-custom {
        padding: .375rem .75rem; /* Default padding for normal-sized Bootstrap buttons */
        font-size: 1rem; /* Default font size for normal-sized Bootstrap buttons */
        line-height: 1.5; /* Default line height for normal-sized Bootstrap buttons */
    }
}	
