body {
    overflow-x: clip;
}

.nav-item:not(.active) .navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1) !important;
}

.nav-item.active .navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1) !important;
}

.carousel_button {
    border: none;
    outline: grey 1px solid;
    background-color: #e0e1e4;
    color: grey;
    height: max(2.5vw, 2.5vh);
    width: max(2.5vw, 2.5vh);
    font-size: max(1.5vw, 1.5vh);
    border-radius: 50%;
    line-height: max(1.5vw, 1.5vh);
}

.carousel_button:hover {
    outline-color: blue;
    color: blue;
}

.toolbar {
    background-color: #e0e1e4;
    width: 249px !important;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    display:flex;
    overflow-y: scroll;
}

.toolbar::-webkit-scrollbar {
    width: 7px;
}
.toolbar::-webkit-scrollbar-track {
    background: transparent;
}
.toolbar::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 5px;
}

.toolbar .group-list-item > span {
    padding: 6px 10px;
    width: 100%;
    cursor: pointer;
    display: block;
    background-color: white;
    border: grey 1px solid;
    border-radius: 15px;
    margin-bottom: 5px;
    position: relative;
}

.toolbar .group-list-item > span::after {
    content: var(--toolbar_group_symbol);
    color: grey;
    position: absolute;
    right: 15px;
}

.toolbar-button > button{
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 100%;
    margin-bottom: 5px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 15px;
    text-align: left;
}

.toolbar-button > button:focus {
    outline: none;
}

.toolbar-button > button:hover{
    background-color: white;
    color: darkblue;
}

.workspace {
    background-color: #e0e1e4;
    width: calc(100vw - 251px) !important;
    left: 250px;
    top: 0px;
    position: absolute;
    display:flex;
}

.workspace > * {
    width: 100%;
}

.col-md-12 {
    padding: 15px 5px;
}

.slide-container {
    width: 100%;
    height: 100%;
}

/*
Source - https://stackoverflow.com/a/19207528
Posted by Arun Aravind, modified by community. See post 'Timeline' for change history
Retrieved 2026-02-28, License - CC BY-SA 4.0
*/

.dropdown-check-list {
  display: inline-block;
}

.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;
}

.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 20%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}

.dropdown-check-list ul.items {
  padding: 2px;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  z-index: 20;
  list-style-type: none;
  padding-left: 10px;
  padding-right: 20px;
  background-color: white;
}

.dropdown-check-list ul.items li {
  list-style: none;
}

.dropdown-check-list ul.items li label {
    width: calc(100% - 13px);
}