/* ===== Recycle Bin ===== */
.recycle-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.recycle-header {
  padding: 8px 10px;
  background: #f0f0f0;
  border-bottom: 1px solid #d4d0c8;
  font-size: 11px;
  color: #666;
}

.recycle-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px;
}

.recycle-list-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 3px 8px;
  background: #ece9d8;
  border-bottom: 1px solid #d4d0c8;
  font-size: 11px;
  font-weight: 700;
  color: #000;
}

.recycle-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  align-items: center;
}

.recycle-item:hover {
  background: #e8f0ff;
}

.recycle-item:nth-child(even) {
  background: #f8f8f8;
}

.recycle-item:nth-child(even):hover {
  background: #e8f0ff;
}

.recycle-item-name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.recycle-empty-btn {
  margin: 8px 10px;
  padding: 4px 16px;
  background: linear-gradient(180deg, #fff 0%, #ece9d8 100%);
  border: 1px solid #999;
  border-radius: 2px;
  font-size: 11px;
  font-family: var(--font-system);
  cursor: pointer;
}

.recycle-empty-btn:hover {
  background: linear-gradient(180deg, #fff 0%, #e0ddd0 100%);
}

.recycle-empty-msg {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 12px;
}
