/* File Selection Styles for Edit Panel */

.file-item {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  position: relative;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Selected state - Very visible */
.file-item.selected {
  background: linear-gradient(135deg, rgba(0, 195, 122, 0.25), rgba(0, 195, 122, 0.15)) !important;
  border-left: 4px solid var(--accent) !important;
  padding-left: calc(12px - 4px);
  box-shadow: 0 0 0 1px rgba(0, 195, 122, 0.3) inset;
}

.file-item.selected .file-item__name {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

.file-item.selected .file-item__icon {
  color: var(--accent) !important;
}

.file-item.selected::before {
  content: '✓';
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
}

.file-list__count {
  transition: color 0.2s ease;
  font-weight: 600;
}

