    .breadcrumb { margin-bottom: 15px; }
    .breadcrumb span { cursor: pointer; color: #0073e6; }
    .breadcrumb span:hover { text-decoration: underline; }
    .breadcrumb .divider { margin: 0 5px; color: #666; }

    .actions { margin-bottom: 15px; }
    .actions button {
      margin-right: 10px;
      padding: 6px 12px;
      border: none;
      border-radius: 5px;
      background: #0073e6;
      color: white;
      cursor: pointer;
      font-size: 14px;
    }
    .actions button:hover { background: #005bb5; }

/*
 * This is the correct CSS for a responsive grid layout.
 * It makes the #explorer container a grid and its children (.item)
 * will automatically wrap into new rows as needed.
 */
#explorer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

/*
 * This styles the individual file/folder items.
 * The display property here is not for the container, but for the
 * item's internal content layout.
 */
.item {
    display: flex; /* This makes the icon, name, and buttons flex items within the item box */
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.15s ease;
}

.item .buttons {
  display: flex;
  gap: 4px;
  margin-top: 5px;
}

.item .icon { font-size: 40px; margin-bottom: 8px; }
.item:hover { transform: scale(1.05); }

/*
    .item {
      background: white;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.15s ease;
    }
    .item .icon { font-size: 40px; margin-bottom: 8px; }*/
    .folder { color: #f4b400; }
    .file { color: #4285f4; }
