/* Light theme adjustments for js-fileexplorer inside Noticing — inherit the
   app font, soften the chrome toward a mac-like neutral. */
.fe_fileexplorer_wrap {
  font-family: inherit;
  border: 1px solid #000;
  border-radius: 0.5rem;
  overflow: hidden;
}

.fe_fileexplorer_wrap .fe_fileexplorer_toolbar,
.fe_fileexplorer_wrap .fe_fileexplorer_path_wrap {
  background: #f7f7f7;
}

.fe_fileexplorer_wrap .fe_fileexplorer_body_wrap {
  background: #ffffff;
}

/* Files that can't become documents (video, archives, ...) — visibly inert
   but still clickable to download. */
.fe_fileexplorer_item_wrap_inner.noticing_unsupported,
.noticing_unsupported {
  opacity: 0.45;
  filter: grayscale(1);
}


/* Mounted drives (unit documents, connected sources) — visually distinct
   from personal folders: blue-shifted icon. */
.noticing_drive .fe_fileexplorer_item_icon_folder {
  filter: hue-rotate(165deg) saturate(0.9);
}

/* Badge marking mounted drives as external/cloud locations. */
.noticing_drive .fe_fileexplorer_item_icon_folder::after {
  content: '\2601';
  position: absolute;
  right: -4px;
  bottom: -2px;
  font-size: 15px;
  line-height: 1;
  color: #1d4ed8;
  background: #ffffff;
  border-radius: 9999px;
  padding: 1px 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}
