/*
Source - https://stackoverflow.com/a/51617657
Posted by Vignesh Raja
Retrieved 2026-08-22, License - CC BY-SA 4.0
*/

.crt-overlay
{
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 999999999999999999999999999;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

#hierarchy
{
    position: fixed;
    font-family: 'Courier New', Courier, monospace;
    width: 50vw;
    display: none;
    margin: 10vh 10vh 20vw 20vw;
}

.foldercontainer, .file, .noitems
{
    display: block;
    padding: 5px 5px 5px 50px;
}

.folder
{
    color: red;
}

.file
{
    color: chartreuse;
}

.folder, .file
{
    cursor: pointer;
}

.noitems
{
    display: none;
    pointer-events: none;
}

.folder:hover,.file:hover
{
    background: rgb(19, 20, 24);
}


.folder:before, .file:before
{
    padding-right: 10px;
}

html, body{
    background-color: rgb(2, 2, 19);
    font-size: 1.5rem;
}

/* The overlay (background) */
.modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Show the modal */
.modal-overlay.show {
  display: block;
}

/* The modal box */
.modal-box {
  background: rgb(19, 20, 24);
  width: 90%;
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

img{
  width: 400px;
  height: 400px;
}