/* ══════════════════════════════════════════════════════════════
   Notespark — Trash page
   Isolated file. Load after the other nota-*.css files.
   ══════════════════════════════════════════════════════════════ */
.trash-page {
    flex: 1;
    overflow-y: auto;
    background: #fffdf9;
    padding: 26px 30px 40px;
}

.trash-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.trash-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--n-text);
    margin: 0 0 4px;
}

.trash-sub {
    font-size: 13px;
    color: var(--n-text-3);
    margin: 0;
}

.trash-group-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--n-text-3);
    margin: 20px 0 8px;
}

.trash-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid var(--n-border-light);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(70,55,30,0.05);
}

.trash-row-body { flex: 1; min-width: 0; }

.trash-row-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--n-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trash-row-meta {
    font-size: 12px;
    color: var(--n-text-3);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trash-btn {
    flex-shrink: 0;
    padding: 7px 13px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    color: var(--n-text-2);
    background: var(--n-surface);
    border: 1px solid var(--n-border-light);
    border-radius: 9px;
    cursor: pointer;
    transition: background var(--n-transition), color var(--n-transition);
}
.trash-btn:hover { background: var(--n-surface-hover); color: var(--n-text); }
.trash-btn.danger { color: var(--n-danger); }
.trash-btn.danger:hover { background: var(--n-danger-bg); }

.trash-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 70px 0;
    color: var(--n-text-4);
}
.trash-empty p { margin: 0; font-size: 14px; }
