/* account-recyclebin.css：回收站 tab 样式（配合 account.html #tab-recyclebin） */
.rb-hint {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 14px;
}

.rb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.rb-main { min-width: 0; flex: 1; }

.rb-title {
    font-weight: 600;
    color: #2d3748;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rb-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #a0aec0;
    margin-top: 4px;
}

.rb-days { color: #48bb78; font-weight: 600; }
.rb-days-urgent { color: #e53e3e; }

.rb-actions { display: flex; gap: 8px; flex-shrink: 0; }

.rb-actions .btn {
    padding: 6px 14px;
    font-size: 13px;
}

.rb-btn-danger {
    background: #e53e3e;
}

.rb-btn-danger:hover {
    background: #c53030;
}

/* ===== 批量管理：勾选框平时隐藏，#tab-recyclebin.rb-batch-on 才显示 ===== */
.rb-check {
    display: none;
    width: 18px;
    height: 18px;
    margin: 0 4px 0 0;
    flex-shrink: 0;
    cursor: pointer;
}
#tab-recyclebin.rb-batch-on .rb-check { display: block; }
/* 批量模式下隐藏单项操作按钮，操作统一走底部条（防误点） */
#tab-recyclebin.rb-batch-on .rb-actions { visibility: hidden; }
/* 彻底删除按钮禁用态 */
.batch-bar .btn-danger:disabled { opacity: .5; cursor: not-allowed; }
