.file-explorer-window {
  display: flex;
  flex-direction: column;
  background-color: var(--grey-bg);
  padding: 3px;
  gap: 3px;

  position: absolute;
  top: 50px;
  left: 50px;

  width: 40vw;
  height: 50vh;
}

.file-explorer-window.maximised {
  border-radius: 0;
}

/* Navigation bar specific to FileExplorerWindow */

.navigation-bar {
  background-color: var(--grey-bg);
  padding: 3px 3px 3px 5px;

  display: flex;
  gap: 10px;
}

.back-img {
  width: 20px;
  transform: rotate(90deg);
}

.back-btn {
  background-color: var(--grey-bg);
  padding: 5px;
  cursor: pointer;

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

button.back-btn:active {
  border-top: 2px solid black;
  border-left: 2px solid black;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}

.back-btn span {
  font-family: "Microsoft Sans Serif";
}

/* Window content */

.file-explorer-window-content {
  background-color: white;
  padding: 5px;
  flex: 1;

  display: flex;
  flex-direction: row;
}

.file-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;

  min-width: 100px;
  max-width: 150px;
}

.file-icon img {
  width: 32px;
  height: 32px;
}

/* Bottom bar */

.bottom-bar {
  display: flex;
  flex-direction: row;
  background-color: var(--grey-bg);
}

.bottom-bar-child {
  flex: 1;
}
