/* =====================================================================
   📁 Finder App
   ===================================================================== */

.finder-content {
  display: flex;
  padding: 0;
  height: 100%;
}
.finder-sidebar {
  width: 150px;
  background: #e0e0e0;
  padding: 10px;
  border-right: 2px solid #000;
  flex-shrink: 0;
}
.sidebar-item {
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.sidebar-item.active,
.sidebar-item:hover { background: #000; color: #fff; }

.finder-main {
  flex-grow: 1;
  padding: 15px;
}
.finder-main-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
}
.finder-coming-soon-note {
  position: absolute;
  top: 12px;
  right: 10px;
  max-width: 180px;
  margin: 0;
  color: rgba(0, 0, 0, 0.38);
  font-size: 13px;
  line-height: 1.3;
  text-align: right;
  pointer-events: none;
}
.finder-icon {
  width: 80px;
  padding: 6px 4px;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  user-select: none;
}
.finder-icon.selected {
  background: #000;
  color: #fff;
}
.finder-icon span {
  display: block;
  font-size: 14px;
  margin-top: 6px;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.finder-icon.selected span {
  color: inherit;
}

.finder-socials-folder .android-folder-box {
  background: #e0e0e0;
  border: 2px solid #999;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
}

.finder-socials-folder .android-folder-grid img {
  width: 14px;
  height: 14px;
}

.finder-socials-folder.selected .android-folder-box {
  background: #bdbdbd;
  border-color: #fff;
}
