body, html {
  margin: 0;
  font-family: MS Gothic, Tahoma, Helvetica;
  font-size: 10pt;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  overscroll-behavior: none;
}
#explorerAppContent, .explorerAppContent {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #EEEFE1;
}
.explorerToolbar {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 25px;
}
.explorerToolbarOpt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 11px);
  padding: 5px;
  margin: 1px;
  cursor: default;
  user-select: none;
  font-size: 9pt;
}
.explorerToolbarOpt:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.explorerLocationToolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: 30pt;
  border: solid 1px #E0D7CA;
  box-shadow: 0 1px 1px #FFF, 0 1px 1px #FFF inset;
  border-left: none;
  border-right: none;
}
.explorerLocationToolbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px;
}
.vbr {
  display: inline-block;
  height: 100%;
  width: 1px;
  background-color: #E0D7CA;
}
.exptoolbarBtn {
  height: 16pt;
  min-width: 16pt;
}
.exptoolbarBtn img:hover {
  cursor: pointer;
}
.navButtonDesc {
  padding: 5px;
  margin-left: 5px;
  font-size: 9pt;
  cursor: pointer;
}
.explorerUrlBar {
  width: 50%;
  min-width: 200px;
  font-family: inherit;
}
#explorerBack {
  display: flex;
}
.explorerBack {
  transform: rotate(180deg);
}
.explorerForward {
  transform: rotate(360deg);
}
.expNavIco {
  width: 16pt;
  height: 16pt;
}
#explorerNav {
  width: 100%;
  height: 20%;
  margin: 0;
}
#explorerContent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80%;
  margin: 0;
}
#explorerContentLeft {
  background-color: #EEEFE1;
  width: 220px; /* 250px - 30px */
  height: calc(100% - 30px);
  color: #000;
  padding: 15px;
}
#explorerContentRight {
  width: calc(100% - 280px);
  height: calc(100% - 30px);
  background-color: #FFF;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
}
#explorerContentRight > .shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: #000 !important;
  width: 75px;
  overflow: visible;
  cursor: pointer;
}
#explorerContentRight > .shortcut:focus, #explorerContentRight > .shortcut:active {
  background-color: rgba(0, 85, 234, 0.3);
  outline: dotted 1px #000;
}
#explorerContentRight > .shortcut img {
  height: 50px;
  width: 50px;
  user-select: none;
}
#explorerContentRight > .shortcut p {
  font-size: 8pt;
  letter-spacing: -1px;
}
#addrNavigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#address, #go, #address_bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20pt;
  font-size: 10pt;
  width: fit-content;
  padding: 3px;
  box-sizing: border-box;
  color: #AAA;
}
#go {
  cursor: pointer;
}
#address_bar {
  width: 100%;
  color: #000;
  border: solid 1px #C6D4FB;
  border-radius: 1px;
}
details {
  margin: 5px;
  margin-left: 10px;
  padding-left: 20px;
  position: relative;

}
details p {
  margin: 5px;
  margin-left: 10px;
  padding-left: 20px;
}
details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

/* Custom icon - closed state */
details summary::before {
  content: "+";
  height: 10pt;
  width: 10pt;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(#CCC, #EEE);
  color: #001;
  border: solid 1px #777;
  border-radius: 2px;
  position: absolute;
  left: -20px;
  font-size: 10pt;
  transition: transform 0.2s ease;
}

/* Custom icon - open state */
details[open] > summary::before {
  content: "-";
  transform: rotate(0deg);
}
#whiteWrapper {
  padding: 5px;
  background-color: #FFF;
  height: calc(100% - 10px);
  overflow: auto;
  box-sizing: border-box;
}
#filetreeTitle {
  box-sizing: border-box;
  margin-left: 10px;
}