/* ============================================
   КОРЗИНА
   ============================================ */

.trash-list {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.trash-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid #c0c0c0;
  border-bottom-color: #a0a0a0;
  background: #f8f8f8;
  margin-bottom: 2px;
}

.trash-item:hover {
  background: #e8e8f8;
  border-color: #000080;
}

.trash-item-icon {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
  flex-shrink: 0;
}

.trash-item-info {
  flex: 1;
  min-width: 0;
}

.trash-item-name {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trash-item-note {
  font-size: 10px;
  color: #808080;
  font-style: italic;
}

.trash-btn {
  flex-shrink: 0;
  padding: 4px 10px !important;
  font-size: 11px !important;
}

.trash-actions {
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed #c0c0c0;
}

.trash-actions .small-btn {
  background: #e0c0c0;
  border-color: #ffffff #808080 #808080 #ffffff;
}

.trash-actions .small-btn:hover {
  background: #d0a0a0;
}