/* ===== RECYCLE BIN ===== */
.recycle-btn { background: #C0C0C0; border: 2px solid; border-color: #FFF #808080 #808080 #FFF; padding: 2px 8px; font-size: 11px; cursor: default; color: #000; font-family: "Tahoma","Geneva",sans-serif; height: 22px; display: flex; align-items: center; }
.recycle-btn:active { border-color: #808080 #FFF #FFF #808080; }
.recycle-bin-list { flex-grow: 1; overflow-y: auto; background: #FFF; padding: 4px; }
.trash-item { display: flex; align-items: center; padding: 4px 6px; cursor: default; border: 1px solid transparent; user-select: none; }
.trash-item:hover { background: rgba(0,0,128,0.05); }
.trash-item.selected { background: #000080; color: #FFF; border: 1px dotted #000080; }
.trash-item img { width: 24px; height: 24px; margin-right: 8px; pointer-events: none; }
.trash-item-name { font-size: 12px; color: #000; }
.trash-item.selected .trash-item-name { color: #FFF; }
.trash-item-meta { font-size: 10px; color: #808080; }
.trash-item.selected .trash-item-meta { color: #C0C0C0; }
.recycle-bin-status { border-top: 2px solid #FFF; padding: 2px 6px; background: #C0C0C0; font-size: 11px; color: #000; font-family: "Tahoma","Geneva",sans-serif; display: flex; justify-content: space-between; }
