/* V18 Tree — navigation arborescente */

#v18-tree-breadcrumb {
  display: none;
}

.v18-tree-bc-item {
  cursor: pointer;
  color: #1a1a1a;
  font-weight: 700;
}

.v18-tree-bc-item:hover { color: #c0392b; }

.v18-tree-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  padding: 6px 0 10px;
}

.v18-tree-back:hover { color: #1a1a1a; }

.v18-tree-folders {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.v18-tree-folder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f5f4f0;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1a1a1a;
  transition: background .15s;
}

.v18-tree-folder:hover { background: #e8e4de; }

.v18-tree-folder svg { flex-shrink: 0; color: #888; }

.v18-tree-mkdir-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.v18-tree-mkdir-wrap input {
  padding: 6px 10px;
  border: 1px solid #e0ddd8;
  border-radius: 6px;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
}

.v18-tree-mkdir-wrap input:focus { border-color: #1a1a1a; }

.v18-tree-mkdir-wrap button {
  padding: 6px 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.v18-tree-mkdir-wrap button:hover { background: #333; }

.v18-tree-loading, .v18-tree-error {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  padding: 20px 0;
}

.v18-tree-error { color: #c0392b; }
