    /* Reset or normalize if desired */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Make html/body fill the browser window */
    html, body {
      height: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    /* The main "Finder" container filling the whole screen */
    .finder-window {
      display: flex;
      flex-direction: column; 
      width: 100%;
      height: 100%;
      background-color: #f8f8f8;
    }

    /* Top toolbar */
    .finder-toolbar {
      display: flex;
      align-items: center;
      height: 40px;
      background-color: #ececec;
      border-bottom: 1px solid #ccc;
      padding: 0 1rem;
    }

    /* Traffic lights container */
    .traffic-lights {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Traffic light styling */
    .traffic-light {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 6px;
      border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .traffic-light.close    { background-color: #ff5f57; }
    .traffic-light.minimize { background-color: #ffbd2e; }
    .traffic-light.maximize { background-color: #28c840; }

    .finder-title {
      margin-left: 1rem;
      font-weight: 500;
    }

    /* NEW DIV (Image Area) - spans full width under the toolbar */
    .finder-image-area {
      /* You can set this to auto height or a fixed min-height */
      min-height: 200px;
      background-color: #f2f2f2; /* Light background */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      border-bottom: 1px solid #ccc;
      padding: 1rem;
    }

    /* Style images in the image area */
    .finder-image-area img {
      max-height: 150px;
      max-width: 200px;
      object-fit: contain;
      border: 1px solid #ddd;
      border-radius: 4px;
    }

    /*
      We'll have a container that wraps sidebar and content
      to sit below the image area. 
    */
    .main-area {
      flex: 1;
      display: flex;  /* Sidebar on the left, content on right */
    }

    /* The sidebar */
    .finder-sidebar {
      width: 200px;
      border-right: 1px solid #ccc;
      background-color: #fafafa;
      padding: 1rem;
    }

    /* Sidebar items */
    .finder-sidebar ul {
      list-style-type: none;
    }

    .finder-sidebar li {
      padding: 0.5rem 0;
      color: #333;
      cursor: default;
    }

    .finder-sidebar li:hover {
      background-color: #eaeaea;
    }

    /* Content area on the right */
    .finder-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1rem;
    }

    /* Path bar near top */
    .finder-path-bar {
      background-color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      color: #555;
      border: 1px solid #ddd;
    }

    .path-item.active {
      color: #000;
      font-weight: bold;
    }

    /* Container for files/folders */
    .files-container {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    /* Individual file item */
    .file-item {
      text-align: center;
      width: 80px;
      cursor: default;
    }

    .file-item img {
      width: 64px;
      height: 64px;
    }

    .file-item p {
      margin-top: 0.5rem;
      font-size: 0.8rem;
      white-space: nowrap;
    }

       /* large Individual file item */
       .file-itemlarge {
        text-align: center;
        width: 800px;
        cursor: default;
      }
  
      .file-itemlarge img {
        width: 800px;
        height: auto; 
      }
  
      .file-itemlarge p {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
      }