/* ==================== ПРОВОДНИК ==================== */

.explorer-toolbar {
  background: #c0c0c0;
  padding: 4px 6px;
  border-bottom: 2px solid #808080;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.explorer-nav-btn {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}
.explorer-nav-btn:hover { background: #d0d0ff; }
.explorer-nav-btn:active { border-color: #808080 #ffffff #ffffff #808080; }

.explorer-crumb {
  background: #fff;
  border-bottom: 1px solid #808080;
  padding: 5px 10px;
  font-size: 12px;
  overflow-x: auto;
  white-space: nowrap;
  color: #000;
}
.explorer-crumb::-webkit-scrollbar { height: 4px; }
.explorer-crumb::-webkit-scrollbar-thumb { background: #808080; }

.crumb-link { color: #000080; cursor: pointer; text-decoration: underline; }
.crumb-link:hover { color: #d00; }
.crumb-sep { color: #808080; margin: 0 4px; }
.crumb-current { font-weight: bold; }

.explorer-content {
  background: #fff;
  padding: 10px;
  flex: 1;
  overflow-y: auto;
  min-height: 200px;
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.explorer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border: 2px solid transparent;
  cursor: pointer;
  user-select: none;
  border-radius: 2px;
}

.explorer-item:hover {
  background: #e8e8ff;
  border-color: #a0c0ff;
}

.explorer-item.selected {
  background: #000080;
}
.explorer-item.selected .explorer-item-name { color: #fff; }

.explorer-item-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explorer-item-name {
  font-size: 11px;
  text-align: center;
  word-break: break-word;
  color: #000;
  max-width: 100%;
  line-height: 1.2;
}

.explorer-empty {
  text-align: center;
  color: #808080;
  font-size: 13px;
  padding: 40px 20px;
}

/* ==================== ПАПКИ РАБОЧЕГО СТОЛА ==================== */
.desktop-folder .icon-img {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  pointer-events: none;
  transition: transform 0.1s;
}
.desktop-folder:hover .icon-img { transform: translateY(-2px); }
.desktop-folder:active .icon-img { transform: translateY(1px) scale(0.9); }